- Questo topic ha 26 risposte, 6 partecipanti ed è stato aggiornato l'ultima volta 16 anni, 6 mesi fa da Silvan.
-
AutoreArticoli
-
-
3 Maggio, 2008 alle 20:20 #17700BergoglioMembro
Ciao,
sto provando l’openmamba su un vecchio notebook Acer Travelmate C300XMi (un tablet PC) ed il primo problema con cui mi scontro sono i tastini multimediali.
Su di un’altra distro avevo risolto buttando su il modulo acerhk che esiste pacchettizzato in RPM per Fedora Core 3, 5 e 6. Ho installato quello per Fedora Core 3 perché gli altri due forse erano pacchettizzati “in via esclusiva” (Kpackage mi dava come errore dipendenze non soddisfatte > manca Fedora Core!).
Adesso però non so come verificarne bene il funzionamento in quanto nella precedente distro avevo un tool chiamato xev che non sono riuscito a trovare in openmamba; si tratta di una semplice finestra che restituisce il keysim del pulsante premuto (se non vi è keysim abbinato restituisce 0, se manca il keycode non restituisce nulla); magari in openmamba c’è qualcosa di simile ed io non so qual’è, qualcuno mi aiuta?
Per inciso, è inutile procedere a pacchettizzare gli acerhk per openmamba perché sui nuovi acer bisogna usare gli acer – acpi (trovabili su Google Code).
Grazie
-
3 Maggio, 2008 alle 21:08 #23452fabiogPartecipante
Se vuoi verificare la presenza di un’applicazione fra i pacchetti disponibili (nel caso specifico xev):
apt-file find xev
Leggendo fra le righe di output troviamo:
xorg-apps-extra: usr/bin/xev
Quindi per avere xev dobbiamo installare xorg-apps-extra (apt-get install xorg-apps-extra)
Fabio
-
3 Maggio, 2008 alle 21:39 #23453BergoglioMembro
Ottimo!
Grazie mille!
Vi scriverò qui il risultato delle prove.
-
3 Maggio, 2008 alle 22:09 #23457fabiogPartecipante
Se riesci a usare i tasti speciali fammi sapere come, così faccio funzionare quelli della mia tastiera logitech!!
Fabio
-
4 Maggio, 2008 alle 00:03 #23459BergoglioMembro
Per mappare i tasti è molto semplice; seguimi passo passo così diventa chiaro per tutti.
Apri un terminale, digita xev, vai con il puntatore del mouse dentro la finestra che si è aperta, premi un pulsante di quelli che vuoi mappare (i tasti speciali) e dimmi se nel terminale ti appare qualcosa. Postami qui le ultime 5 / 6 righe che ti dovrebbero apparire quando premi il pulsante incriminato.
-
4 Maggio, 2008 alle 07:19 #23462asta79Membro
Io ho un portatile acer aspire 1642WLMi, i tasti speciali purtroppo vengono riconosciuti solo da ubuntu.. Come faccio a mappare questi tasti speciali? ho avviato xev nel terminale ho premuto il tasto delle email, e l’output è questo:
KeyRelease event, serial 31, synthetic NO, window 0x3800001,
root 0x66, subw 0x3800002, time 2999529452, (47,60), root:(51,84),
state 0x0, keycode 236 (keysym 0x1008ff19, XF86Mail), same_screen YES,
XLookupString gives 0 bytes:
Sembra che il tasto sia riconosciuto (keycode: XF86Mail), però non funziona.. come faccio ad avviare il comando alla pressione del tasto?
aggiornamento:
in effetti molti tasti speciali non hanno un keycode:
KeyPress event, serial 31, synthetic NO, window 0x3000001,
root 0x66, subw 0x0, time 3000096437, (74,87), root:(78,111),
state 0x0, keycode 164 (keysym 0x0, NoSymbol), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
quindi è un macello, cmq gnome aveva tra le varie mappature proprio quella adatta al mio portatile, abilitandola mi funzionavano tutti i tasti e combinazioni varie..
-
4 Maggio, 2008 alle 07:31 #23463fabiogPartecipante
Fino a qui ci ero arrivato già da solo in ogni caso questo è il mio output:
KeyPress event, serial 31, synthetic NO, window 0x3000001,
root 0x4d, subw 0x3000002, time 3000345128, (43,42), root:(1141,584),
state 0x0, keycode 178 (keysym 0x0, NoSymbol), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyRelease event, serial 31, synthetic NO, window 0x3000001,
root 0x4d, subw 0x3000002, time 3000345287, (43,42), root:(1141,584),
state 0x0, keycode 178 (keysym 0x0, NoSymbol), same_screen YES,
XLookupString gives 0 bytes:
-
4 Maggio, 2008 alle 08:31 #23467BergoglioMembro
Quando manca il Keysym come in questi casi la procedura più semplice è :
aprite un terminale
date kate ~/.Xmodmap
in questo nuovo file scrivete una linea per ogni keycode senza keysym tipo
keycode 164 = F13
keycode 178 = F14
(i keycode li prendete dall’output di xev)
salvate il file
create una nuova directory con mkdir ~/.kde/env
create un nuovo file con kate ~/.kde/env/xmodmap.sh
scrivete nel file queste righe
#!/bin/bash (-)
xmodmap ~/.Xmodmap
salvate il file
rendete il file eseguibile con chmod +x ~/.kde/env/xmodmap.sh
eseguite il file con sh ~/.kde/env/xmodmap.sh
Adesso i tasti sono mappati
Questa è la soluzione al volo, tempo addietro mi ero preoccupato di renderla stabile per tutti gli utenti compresi quelli di nuova creazione post procedura, ma devo ritrovare gli appunti (avete presente Pollicino? )
Se i tasti presentano già un keysym come nel caso di asta79 (e comunque sempre dopo aver proceduto a mappare i tasti sconosciuti) basta andare nel kcontrol (o centro di controllo), cliccare su Regional & Accessibility e da lì si assegnano le azioni ai tasti.
-
4 Maggio, 2008 alle 21:27 #23493fabiogPartecipante
wowww
funzionano!!
Onestamente non mi era mai fregato molto dei tasti speciali ma solo per il fatto di averli funzionanti con linux senza installare driver ecc. vale la pena di usarli 😀 😀
-
4 Maggio, 2008 alle 22:32 #23494gilMembro
Ciao
per abilitare/rilevare il lancio di applicazioni in base al sw predefinito (ad esempio thunderbird piuttosto che kmail o evolution) sempre da kcontrol? o se hai qualche link di howto/wiki?
grazie
-
5 Maggio, 2008 alle 07:15 #23495BergoglioMembro
Ciao Gil,
non ho capito la tua domanda : intendi settare il software predefinito per determinate funzioni oppure il lancio di un software abbinato ad un tasto specifico?
-
5 Maggio, 2008 alle 16:32 #23504gilMembro
Ciao
abbinare ad un tasto specifico il sw che scelgo la prima volta che lo avvio come predefinito
grazie
-
6 Maggio, 2008 alle 15:36 #23534gilMembro
Ciao
quando non trovo con xev il keycode (almeno 5 tasti speciali) e per la mancanza dei dirvers?
-
6 Maggio, 2008 alle 18:34 #23536BergoglioMembro
@ gil :
1) per abbinare un tasto specifico ad un programma vai nel kcontrol > shortcut da tastiera > e lì abbini il programma ad un tasto specifico. Poi salvi e la modifica rimarrà permanente.
-
6 Maggio, 2008 alle 18:59 #23537BergoglioMembro
@ gil :
2) non è detto che manchino i driver. Fai questa prova : apri konsole > digita dmesg > dai invio ; poi premi uno dei tasti incriminati > ridai dmesg in konsole > l’output (se ci sono i driver o moduli che servono) dovrebbe essere alle ultime righe di questo tipo
atkbd.c: Unknown key pressed (translated set 2, code 0x9e on isa0060/serio0).
atkbd.c: Use ‘setkeycodes e01e <keycode>’ to make it known.
Postami qui se è così oppure no.
-
6 Maggio, 2008 alle 19:36 #23542gilMembro
Ciao
ecco l’output che ho ripetuto per i tasti “incriminati ” magari non serviva…
alcune volte l’ouput é sempre lo stesso (primo ultimo)
atkbd.c: Unknown key released (translated set 2, code 0x86 on isa0060/serio0).
atkbd.c: Use ‘setkeycodes e006 <keycode>’ to make it known.
atkbd.c: Unknown key released (translated set 2, code 0x94 on isa0060/serio0).
atkbd.c: Use ‘setkeycodes e014 <keycode>’ to make it known.
.
atkbd.c: Unknown key released (translated set 2, code 0xa3 on isa0060/serio0).
atkbd.c: Use ‘setkeycodes e023 <keycode>’ to make it known.
atkbd.c: Unknown key released (translated set 2, code 0xa6 on isa0060/serio0).
atkbd.c: Use ‘setkeycodes e026 <keycode>’ to make it known.
atkbd.c: Unknown key released (translated set 2, code 0x98 on isa0060/serio0).
atkbd.c: Use ‘setkeycodes e018 <keycode>’ to make it known.
atkbd.c: Unknown key released (translated set 2, code 0x83 on isa0060/serio0).
atkbd.c: Use ‘setkeycodes e003 <keycode>’ to make it known.
atkbd.c: Unknown key released (translated set 2, code 0x86 on isa0060/serio0).
atkbd.c: Use ‘setkeycodes e006 <keycode>’ to make it known.
-
6 Maggio, 2008 alle 20:33 #23545BergoglioMembro
Ok, non c’è bisogno di alcun “driver”, funzionano, bisogna solo mapparli per X.
Domani ti scrivo la guida.
Ciao e buonanotte
-
7 Maggio, 2008 alle 07:08 #23549gggabMembro
Bel tread, anche se io non uso i tasti funzioni sono felice che si possano usare anche su open mamba.
Vorrei chiedere a chi ha trovato la soluzione se può inserirla nel wiki. Credo sia più facile da trovare per chi vuole risolvere un problema simile (magari basta un copia incolla).
Ciao
-
7 Maggio, 2008 alle 10:58 #23553BergoglioMembro
@ gggab : un pezzo per volta, nel wiki ho incominciato a scrivere di queste guide, ma il tempo è tiranno…..
-
7 Maggio, 2008 alle 11:14 #23555BergoglioMembro
@ gil :
per far funzionare subito apri Konsole e digita per il primo tuo tasto
sudo setkeycodes e006 120
per il secondo
sudo setkeycodes e014 121
etc.
per l’ultimo tasto prova a dare un dmesg dopo che hai mappato tutti gli altri e posta cosa ti restituisce.
Per rendere permanenti questi comandi ad ogni avvio bisogna editare un file, da Konsole dai
sudo kate /etc/init.d/bootmisc.sh
ed aggiungi al fondo le singole righe setkeycodes e006 120 etc. che hai dato a terminale senza il sudo.
Dopo dovrai seguire la mappatura con l’ausilio di xev ( guarda qualche post più in su ).
Posta qui eventuali problemi…..
-
7 Maggio, 2008 alle 11:39 #23556gilMembro
Ciao
il file bootmisc.sh non esiste… devo crearlo piu che editarlo…?
$ sudo kate /etc/init.d/bootmisc.sh
sudo: parse error in /etc/sudoers near line -1
gil ~]$ postdrop: warning: unable to look up public/pickup: No such file or directory
gil ~]$ kate /etc/init.d/bootmisc.sh
dopo la mappatura con dmesg
$ dmesg
Linux version 2.6.24mamba (silvan@tao) (gcc version 4.2.2) #1 SMP PREEMPT Thu Apr 24 15:17:50 CEST 2008
BIOS-provided physical RAM map:
BIOS-e820: 0000000000000000 – 000000000009f000 (usable)
BIOS-e820: 000000000009f000 – 00000000000a0000 (reserved)
BIOS-e820: 00000000000f0000 – 0000000000100000 (reserved)
BIOS-e820: 0000000000100000 – 000000003fef0000 (usable)
BIOS-e820: 000000003fef0000 – 000000003fef3000 (ACPI NVS)
BIOS-e820: 000000003fef3000 – 000000003ff00000 (ACPI data)
BIOS-e820: 00000000f0000000 – 00000000f4000000 (reserved)
BIOS-e820: 00000000fec00000 – 0000000100000000 (reserved)
126MB HIGHMEM available.
896MB LOWMEM available.
found SMP MP-table at 000f5b80
Entering add_active_range(0, 0, 261872) 0 entries of 256 used
Zone PFN ranges:
DMA 0 -> 4096
Normal 4096 -> 229376
HighMem 229376 -> 261872
Movable zone start PFN for each node
early_node_map[1] active PFN ranges
0: 0 -> 261872
On node 0 totalpages: 261872
DMA zone: 32 pages used for memmap
DMA zone: 0 pages reserved
DMA zone: 4064 pages, LIFO batch:0
Normal zone: 1760 pages used for memmap
Normal zone: 223520 pages, LIFO batch:31
HighMem zone: 253 pages used for memmap
HighMem zone: 32243 pages, LIFO batch:7
Movable zone: 0 pages used for memmap
DMI present.
ACPI: RSDP 000F7760, 0024 (r2 HPQOEM)
ACPI: XSDT 3FEF30C0, 0054 (r1 HPQOEM SLIC-CPC 42302E31 AWRD 0)
ACPI: FACP 3FEFA3C0, 00F4 (r3 HPQOEM SLIC-CPC 42302E31 AWRD 0)
ACPI: DSDT 3FEF3280, 70EB (r1 HPQOEM SLIC-CPC 1000 MSFT 3000000)
ACPI: FACS 3FEF0000, 0040
ACPI: SLIC 3FEFA5C0, 0176 (r1 HPQOEM SLIC-CPC 42302E31 AWRD 0)
ACPI: SSDT 3FEFA780, 0248 (r1 HPQOEM SLIC-CPC 1 LTP 1)
ACPI: HPET 3FEFAA40, 0038 (r1 HPQOEM SLIC-CPC 42302E31 AWRD 98)
ACPI: MCFG 3FEFAAC0, 003C (r1 HPQOEM SLIC-CPC 42302E31 AWRD 0)
ACPI: APIC 3FEFA500, 007C (r1 HPQOEM SLIC-CPC 42302E31 AWRD 0)
ACPI: PM-Timer IO Port: 0x4008
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Processor #0 15:11 APIC version 16
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Processor #1 15:11 APIC version 16
ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
ACPI: IRQ14 used by override.
ACPI: IRQ15 used by override.
Enabling APIC mode: Flat. Using 1 I/O APICs
ACPI: HPET id: 0x10de8201 base: 0xfefff000
Using ACPI (MADT) for SMP configuration information
Allocating PCI resources starting at 40000000 (gap: 3ff00000:b0100000)
swsusp: Registered nosave memory region: 000000000009f000 – 00000000000a0000
swsusp: Registered nosave memory region: 00000000000a0000 – 00000000000f0000
swsusp: Registered nosave memory region: 00000000000f0000 – 0000000000100000
Built 1 zonelists in Zone order, mobility grouping on. Total pages: 259827
Kernel command line: BOOT_IMAGE=(hd0,4)/boot/vmlinuz-2.6.24mamba root=/dev/sda4 ro resume2= video=uvesafb:1024×768-32,ywrap,mtrr:3 quiet splash=silent,fadein console=tty1
mapped APIC to ffffb000 (fee00000)
mapped IOAPIC to ffffa000 (fec00000)
Enabling fast FPU save and restore… done.
Enabling unmasked SIMD FPU exception support… done.
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 16384 bytes)
Detected 2405.054 MHz processor.
spurious 8259A interrupt: IRQ7.
Console: colour VGA+ 80×25
console [tty1] enabled
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Memory: 1031632k/1047488k available (2496k kernel code, 15188k reserved, 976k data, 348k init, 129984k highmem)
virtual kernel memory layout:
fixmap : 0xfff4c000 – 0xfffff000 ( 716 kB)
pkmap : 0xff800000 – 0xffc00000 (4096 kB)
vmalloc : 0xf8800000 – 0xff7fe000 ( 111 MB)
lowmem : 0xc0000000 – 0xf8000000 ( 896 MB)
.init : 0xc046c000 – 0xc04c3000 ( 348 kB)
.data : 0xc037004d – 0xc0464444 ( 976 kB)
.text : 0xc0100000 – 0xc037004d (2496 kB)
Checking if this processor honours the WP bit even in supervisor mode… Ok.
SLUB: Genslabs=11, HWalign=64, Order=0-1, MinObjects=4, CPUs=2, Nodes=1
hpet clockevent registered
Calibrating delay using timer specific routine.. 4813.05 BogoMIPS (lpj=2406529)
Security Framework initialized
Capability LSM initialized
Failure registering Root Plug module with the kernel
Failure registering Root Plug module with primary security module.
Mount-cache hash table entries: 512
CPU: After generic identify, caps: 178bfbff ebd3fbff 00000000 00000000 00002001 00000000 0000001f 00000000
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 512K (64 bytes/line)
CPU 0(2) -> Core 0
CPU: After all inits, caps: 178bfbff ebd3fbff 00000000 00000410 00002001 00000000 0000001f 00000000
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
Compat vDSO mapped to ffffe000.
Checking ‘hlt’ instruction… OK.
SMP alternatives: switching to UP code
ACPI: Core revision 20070126
CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 4600+ stepping 02
SMP alternatives: switching to SMP code
Booting processor 1/1 eip 3000
Initializing CPU#1
Calibrating delay using timer specific routine.. 4809.90 BogoMIPS (lpj=2404954)
CPU: After generic identify, caps: 178bfbff ebd3fbff 00000000 00000000 00002001 00000000 0000001f 00000000
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 512K (64 bytes/line)
CPU 1(2) -> Core 1
CPU: After all inits, caps: 178bfbff ebd3fbff 00000000 00000410 00002001 00000000 0000001f 00000000
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#1.
CPU1: AMD Athlon(tm) 64 X2 Dual Core Processor 4600+ stepping 02
Total of 2 processors activated (9622.96 BogoMIPS).
ENABLING IO-APIC IRQs
..TIMER: vector=0x31 apic1=0 pin1=2 apic2=-1 pin2=-1
Brought up 2 CPUs
net_namespace: 64 bytes
Booting paravirtualized kernel on bare hardware
NET: Registered protocol family 16
EISA bus registered
ACPI: bus type pci registered
PCI: Using MMCONFIG
Setting up standard PCI resources
ACPI: EC: Look up EC in DSDT
ACPI: Interpreter enabled
ACPI: (supports S0 S1 S3 S4 S5)
ACPI: Using IOAPIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (0000:00)
PCI: Transparent bridge – 0000:00:10.0
ACPI: PCI Interrupt Routing Table [_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [_SB_.PCI0.HUB0._PRT]
ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK2] (IRQs 5 *7 9 10 11 14 15)
ACPI: PCI Interrupt Link [LNK3] (IRQs 5 *7 9 10 11 14 15)
ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 *10 11 14 15)
ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LUBA] (IRQs 5 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LUBB] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LMAC] (IRQs *5 7 9 10 11 14 15)
ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 *10 11 14 15)
ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
ACPI: PCI Interrupt Link [LUB2] (IRQs 5 *7 9 10 11 14 15)
ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSID] (IRQs 5 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LFID] (IRQs 5 7 9 *10 11 14 15)
ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0
ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0
ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0
ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0
ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0, disabled.
ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0, disabled.
ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnpacpi: exceeded the max number of mem resources: 12
pnp: PnP ACPI: found 12 devices
ACPI: ACPI bus type pnp unregistered
PnPBIOS: Disabled by ACPI PNP
SCSI subsystem initialized
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
PCI: Using ACPI for IRQ routing
PCI: If a device doesn’t work, try “pci=routeirq”. If it helps, post a report
hpet0: at MMIO 0xfefff000, IRQs 2, 8, 31
hpet0: 3 32-bit timers, 25000000 Hz
ACPI: RTC can wake from S4
Time: hpet clocksource has been installed.
Switched to high resolution mode on CPU 0
Switched to high resolution mode on CPU 1
system 00:01: ioport range 0x4000-0x407f has been reserved
system 00:01: ioport range 0x4080-0x40ff has been reserved
system 00:01: ioport range 0x4400-0x447f has been reserved
system 00:01: ioport range 0x4480-0x44ff has been reserved
system 00:01: ioport range 0x4800-0x487f has been reserved
system 00:01: ioport range 0x4880-0x48ff has been reserved
system 00:01: ioport range 0x2000-0x207f has been reserved
system 00:01: ioport range 0x2080-0x20ff has been reserved
system 00:01: iomem range 0x0-0x0 could not be reserved
system 00:02: ioport range 0x4d0-0x4d1 has been reserved
system 00:02: ioport range 0x800-0x87f has been reserved
system 00:0a: iomem range 0xf0000000-0xf3ffffff could not be reserved
system 00:0b: iomem range 0xf0000-0xf3fff could not be reserved
system 00:0b: iomem range 0xf4000-0xf7fff could not be reserved
system 00:0b: iomem range 0xf8000-0xfbfff could not be reserved
system 00:0b: iomem range 0xfc000-0xfffff could not be reserved
system 00:0b: iomem range 0xfefff000-0xfefff0ff could not be reserved
system 00:0b: iomem range 0x3fef0000-0x3fefffff could not be reserved
system 00:0b: iomem range 0xffff0000-0xffffffff could not be reserved
system 00:0b: iomem range 0x0-0x9ffff could not be reserved
system 00:0b: iomem range 0x100000-0x3feeffff could not be reserved
system 00:0b: iomem range 0x0-0x0 could not be reserved
system 00:0b: iomem range 0xfec00000-0xfec00fff could not be reserved
system 00:0b: iomem range 0xfee00000-0xfeefffff could not be reserved
PCI: Bridge: 0000:00:02.0
IO window: b000-bfff
MEM window: fda00000-fdafffff
PREFETCH window: fde00000-fdefffff
PCI: Bridge: 0000:00:04.0
IO window: 9000-9fff
MEM window: fdb00000-fdbfffff
PREFETCH window: e0000000-efffffff
PCI: Bridge: 0000:00:10.0
IO window: a000-afff
MEM window: fdd00000-fddfffff
PREFETCH window: fdc00000-fdcfffff
PCI: Setting latency timer of device 0000:00:02.0 to 64
PCI: Setting latency timer of device 0000:00:04.0 to 64
PCI: Setting latency timer of device 0000:00:10.0 to 64
NET: Registered protocol family 2
IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
TCP bind hash table entries: 65536 (order: 7, 786432 bytes)
TCP: Hash tables configured (established 131072 bind 65536)
TCP reno registered
checking if image is initramfs… it is
Freeing initrd memory: 1914k freed
Machine check exception polling timer started.
apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
apm: disabled – APM is not SMP safe.
scx200: NatSemi SCx200 Driver
highmem bounce pool size: 64 pages
Total HugeTLB memory allocated, 0
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
io scheduler noop registered
io scheduler cfq registered (default)
Boot video device is 0000:02:00.0
PCI: Setting latency timer of device 0000:00:02.0 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:02.0:pcie00]
Allocate Port Service[0000:00:02.0:pcie03]
PCI: Setting latency timer of device 0000:00:04.0 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:04.0:pcie00]
Allocate Port Service[0000:00:04.0:pcie03]
Real Time Clock Driver v1.12ac
hpet_resources: 0xfefff000 is busy
Non-volatile memory driver v1.2
uvesafb: (C) 1988-2005, ATI Technologies Inc. RV51601.00, RV51601.00, 01.00, OEM: ATI ATOMBIOS(C) 1988-2005, ATI Technologies Inc. RV51601.00, VBE v3.0
uvesafb: protected mode interface info at c000:a196
uvesafb: pmi: set display start = c00ca224, set palette = c00ca2e6
uvesafb: VBIOS/hardware supports DDC2 transfers
uvesafb: monitor limits: vf = 75 Hz, hf = 81 kHz, clk = 140 MHz
uvesafb: scrolling: ywrap using protected mode interface, yres_virtual=4096
uvesafb: mode switch failed (eax=0x34f, err=0). Trying again with default timings.
uvesafb: mode switch failed (eax=0x34f, err=0). Trying again with default timings.
Console: switching to colour frame buffer device 128×48
uvesafb: mode switch failed (eax=0x34f, err=0). Trying again with default timings.
fbcondecor: console 0 using theme ‘default’
fbcondecor: switched decor state to ‘on’ on console 0
uvesafb: framebuffer at 0xe0000000, mapped to 0xf8880000, using 16384k, total 16384k
fb0: VESA VGA frame buffer device
isapnp: Scanning for PnP cards…
isapnp: No Plug & Play device found
Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
floppy0: no floppy controllers found
RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize
loop: module loaded
MM: desc_per_page = 128
input: Macintosh mouse button emulation as /devices/virtual/input/input0
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
NFORCE-MCP51: IDE controller (0x10de:0x0265 rev 0xa1) at PCI slot 0000:00:0d.0
NFORCE-MCP51: not 100% native mode: will probe irqs later
NFORCE-MCP51: 0000:00:0d.0 (rev a1) UDMA133 controller
ide0: BM-DMA at 0xf400-0xf407, BIOS settings: hda:DMA, hdb:DMA
ide1: BM-DMA at 0xf408-0xf40f, BIOS settings: hdc:DMA, hdd:DMA
Probing IDE interface ide0…
Probing IDE interface ide1…
Probing IDE interface ide0…
Probing IDE interface ide1…
Driver ‘sd’ needs updating – please use bus_type methods
usbcore: registered new interface driver libusual
PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mice: PS/2 mouse device common for all mice
input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
EISA: Probing bus 0 at eisa.0
Cannot allocate resource for EISA slot 2
Cannot allocate resource for EISA slot 4
EISA: Detected 0 cards.
cpuidle: using governor ladder
cpuidle: using governor menu
Advanced Linux Sound Architecture Driver Version 1.0.15 (Tue Nov 20 19:16:42 2007 UTC).
ALSA device list:
No soundcards found.
Initializing XFRM netlink socket
NET: Registered protocol family 1
NET: Registered protocol family 17
NET: Registered protocol family 15
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
Starting balanced_irq
Using IPI No-Shortcut mode
Freeing unused kernel memory: 348k freed
libata version 3.00 loaded.
sata_nv 0000:00:0e.0: version 3.5
ACPI: PCI Interrupt Link [APSI] enabled at IRQ 23
ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 16
PCI: Setting latency timer of device 0000:00:0e.0 to 64
scsi0 : sata_nv
scsi1 : sata_nv
ata1: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xe000 irq 16
ata2: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xe008 irq 16
ata1: SATA link down (SStatus 0 SControl 310)
ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 310)
ata2.00: ATA-7: MAXTOR STM3160215AS, 3.AAD, max UDMA/133
ata2.00: 312581808 sectors, multi 1: LBA48 NCQ (depth 0/32)
ata2.00: configured for UDMA/133
scsi 1:0:0:0: Direct-Access ATA MAXTOR STM316021 3.AA PQ: 0 ANSI: 5
sd 1:0:0:0: [sda] 312581808 512-byte hardware sectors (160042 MB)
sd 1:0:0:0: [sda] Write Protect is off
sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn’t support DPO or FUA
sd 1:0:0:0: [sda] 312581808 512-byte hardware sectors (160042 MB)
sd 1:0:0:0: [sda] Write Protect is off
sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn’t support DPO or FUA
sda:<6>input: ImPS/2 Logitech Wheel Mouse as /devices/platform/i8042/serio1/input/input2
sda1 sda2 sda3 sda4
sd 1:0:0:0: [sda] Attached SCSI disk
ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 22
ACPI: PCI Interrupt 0000:00:0f.0[A] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 17
PCI: Setting latency timer of device 0000:00:0f.0 to 64
scsi2 : sata_nv
scsi3 : sata_nv
ata3: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xcc00 irq 17
ata4: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xcc08 irq 17
ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 310)
ata3.00: ATAPI: TSSTcorpCD/DVDW TS-H653L, 0414, max UDMA/33
ata3.00: applying bridge limits
ata3.00: configured for UDMA/33
ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 310)
ata4.00: ATA-7: ST3320820AS, 3.AHG, max UDMA/100
ata4.00: 625142448 sectors, multi 1: LBA48 NCQ (depth 0/32)
ata4.00: configured for UDMA/100
scsi 2:0:0:0: CD-ROM TSSTcorp CD/DVDW TS-H653L 0414 PQ: 0 ANSI: 5
scsi 3:0:0:0: Direct-Access ATA ST3320820AS 3.AH PQ: 0 ANSI: 5
sd 3:0:0:0: [sdb] 625142448 512-byte hardware sectors (320073 MB)
sd 3:0:0:0: [sdb] Write Protect is off
sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn’t support DPO or FUA
sd 3:0:0:0: [sdb] 625142448 512-byte hardware sectors (320073 MB)
sd 3:0:0:0: [sdb] Write Protect is off
sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn’t support DPO or FUA
sdb: sdb1 sdb2
sd 3:0:0:0: [sdb] Attached SCSI disk
swsusp: Marking nosave pages: 000000000009f000 – 0000000000100000
swsusp: Basic memory bitmaps created
swsusp: Basic memory bitmaps freed
md: Autodetecting RAID arrays.
md: Scanned 0 and added 0 devices.
md: autorun …
md: … autorun DONE.
EXT3-fs: INFO: recovery required on readonly filesystem.
EXT3-fs: write access will be enabled during recovery.
kjournald starting. Commit interval 5 seconds
EXT3-fs: recovery complete.
EXT3-fs: mounted filesystem with ordered data mode.
sd 1:0:0:0: Attached scsi generic sg0 type 0
scsi 2:0:0:0: Attached scsi generic sg1 type 5
sd 3:0:0:0: Attached scsi generic sg2 type 0
i2c-adapter i2c-0: nForce2 SMBus adapter at 0x4c00
i2c-adapter i2c-1: nForce2 SMBus adapter at 0x4c40
rtc_cmos: probe of 00:05 failed with error -16
input: PC Speaker as /devices/platform/pcspkr/input/input3
forcedeth: Reverse Engineered nForce ethernet driver. Version 0.61.
ACPI: PCI Interrupt Link [APCH] enabled at IRQ 21
ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [APCH] -> GSI 21 (level, low) -> IRQ 18
PCI: Setting latency timer of device 0000:00:14.0 to 64
ACPI: Thermal Zone [THRM] (40 C)
Linux video capture interface: v2.00
ath_hal: module license ‘Proprietary’ taints kernel.
ath_hal: 0.9.30.13 (AR5210, AR5211, AR5212, AR5416, RF5111, RF5112, RF2413, RF5413, RF2133)
Linux agpgart interface v0.102
input: Power Button (FF) as /devices/virtual/input/input4
ACPI: Power Button (FF) [PWRF]
input: Power Button (CM) as /devices/virtual/input/input5
ACPI: Power Button (CM) [PWRB]
ACPI: Fan [FAN] (on)
wlan: svn r3367
ath_pci: svn r3367
Driver ‘sr’ needs updating – please use bus_type methods
sr0: scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
Uniform CD-ROM driver Revision: 3.20
sr 2:0:0:0: Attached scsi CD-ROM sr0
[fglrx] Maximum main memory to use for locked dma buffers: 927 MBytes.
[fglrx] ASYNCIO init succeed!
[fglrx] PAT is enabled successfully!
[fglrx] module loaded – fglrx 8.47.3 [Mar 29 2008] on minor 0
saa7130/34: v4l2 driver version 0.2.14 loaded
forcedeth 0000:00:14.0: ifname eth0, PHY OUI 0x5043 @ 1, addr 00:1a:92:10:be:1e
forcedeth 0000:00:14.0: highdma pwrctl timirq lnktim desc-v3
ACPI: PCI Interrupt Link [APCL] enabled at IRQ 20
ACPI: PCI Interrupt 0000:00:0b.1 -> Link [APCL] -> GSI 20 (level, low) -> IRQ 19
PCI: Setting latency timer of device 0000:00:0b.1 to 64
ehci_hcd 0000:00:0b.1: EHCI Host Controller
ehci_hcd 0000:00:0b.1: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:0b.1: debug port 1
PCI: cache line size of 64 is not supported by device 0000:00:0b.1
ehci_hcd 0000:00:0b.1: irq 19, io mem 0xfe02e000
ehci_hcd 0000:00:0b.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 8 ports detected
ACPI: PCI Interrupt Link [AAZA] enabled at IRQ 23
ACPI: PCI Interrupt 0000:00:10.1 -> Link [AAZA] -> GSI 23 (level, low) -> IRQ 16
PCI: Setting latency timer of device 0000:00:10.1 to 64
hda_codec: Unknown model for ALC883, trying auto-probe from BIOS…
ACPI: PCI Interrupt Link [APC4] enabled at IRQ 19
ACPI: PCI Interrupt 0000:03:05.0[A] -> Link [APC4] -> GSI 19 (level, low) -> IRQ 20
ohci1394: fw-host0: OHCI-1394 1.0 (PCI): IRQ=[20] MMIO=[fddff000-fddff7ff] Max Packet=[1024] IR/IT contexts=[8/8]
ACPI: PCI Interrupt Link [APC2] enabled at IRQ 17
ACPI: PCI Interrupt 0000:03:09.0[A] -> Link [APC2] -> GSI 17 (level, low) -> IRQ 21
saa7133[0]: found at 0000:03:09.0, rev: 209, irq: 21, latency: 32, mmio: 0xfddfe000
saa7133[0]: subsystem: 1043:4871, board: ASUS P7131 4871 [card=111,autodetected]
saa7133[0]: board init: gpio is 0
ohci_hcd: 2006 August 04 USB 1.1 ‘Open’ Host Controller (OHCI) Driver
usb 1-8: new high speed USB device using ehci_hcd and address 2
saa7133[0]: i2c eeprom 00: 43 10 71 48 54 20 1c 00 43 43 a9 1c 55 d2 b2 92
saa7133[0]: i2c eeprom 10: ff ff ff 0f ff 20 ff ff ff ff ff ff ff ff ff ff
saa7133[0]: i2c eeprom 20: 01 40 01 02 03 00 01 03 08 ff 00 cf ff ff ff ff
saa7133[0]: i2c eeprom 30: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
saa7133[0]: i2c eeprom 40: ff 21 00 c2 96 10 03 22 15 50 ff ff ff ff ff ff
saa7133[0]: i2c eeprom 50: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
saa7133[0]: i2c eeprom 60: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
saa7133[0]: i2c eeprom 70: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
tuner 2-004b: chip found @ 0x96 (saa7133[0])
usb 1-8: configuration #1 chosen from 1 choice
tda8290 2-004b: setting tuner address to 61
Initializing USB Mass Storage driver…
scsi4 : SCSI emulation for USB Mass Storage devices
usb-storage: device found at 2
usbcore: registered new interface driver usb-storage
USB Mass Storage support registered.
scsi 4:0:0:0: Direct-Access Generic- Compact Flash 1.00 PQ: 0 ANSI: 0 CCS
sd 4:0:0:0: [sdc] Attached SCSI removable disk
sd 4:0:0:0: Attached scsi generic sg3 type 0
scsi 4:0:0:1: Direct-Access Generic- SM/xD-Picture 1.00 PQ: 0 ANSI: 0 CCS
sd 4:0:0:1: [sdd] Attached SCSI removable disk
sd 4:0:0:1: Attached scsi generic sg4 type 0
tuner 2-004b: type set to tda8290+75a
scsi 4:0:0:2: Direct-Access Generic- SD/MMC 1.00 PQ: 0 ANSI: 0 CCS
sd 4:0:0:2: [sde] Attached SCSI removable disk
sd 4:0:0:2: Attached scsi generic sg5 type 0
scsi 4:0:0:3: Direct-Access Generic- MS/MS-Pro 1.00 PQ: 0 ANSI: 0 CCS
sd 4:0:0:3: [sdf] Attached SCSI removable disk
sd 4:0:0:3: Attached scsi generic sg6 type 0
usb-storage: device scan complete
tda8290 2-004b: setting tuner address to 61
tuner 2-004b: type set to tda8290+75a
saa7133[0]: registered device video0 [v4l2]
saa7133[0]: registered device vbi0
ACPI: PCI Interrupt Link [APC3] enabled at IRQ 18
ACPI: PCI Interrupt 0000:03:0a.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 22
MadWifi: unable to attach hardware: ‘Hardware self-test failed’ (HAL status 14)
ACPI: PCI interrupt for device 0000:03:0a.0 disabled
ACPI: PCI Interrupt Link [APCF] enabled at IRQ 22
ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [APCF] -> GSI 22 (level, low) -> IRQ 17
PCI: Setting latency timer of device 0000:00:0b.0 to 64
ohci_hcd 0000:00:0b.0: OHCI Host Controller
ohci_hcd 0000:00:0b.0: new USB bus registered, assigned bus number 2
ohci_hcd 0000:00:0b.0: irq 17, io mem 0xfe02f000
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 8 ports detected
DVB: registering new adapter (saa7133[0])
DVB: registering frontend 0 (Philips TDA10046H DVB-T)…
tda1004x: setting up plls for 48MHz sampling clock
fbcondecor: switched decor state to ‘off’ on console 0
tda1004x: timeout waiting for DSP ready
tda1004x: found firmware revision 0 — invalid
tda1004x: trying to boot from eeprom
tda1004x: timeout waiting for DSP ready
tda1004x: found firmware revision 0 — invalid
tda1004x: waiting for firmware upload…
tda1004x: no firmware upload (timeout or file not found?)
tda1004x: firmware upload failed
ieee1394: Host added: ID:BUS[0-00:1023] GUID[0011d80001116b71]
EXT3 FS on sda4, internal journal
kjournald starting. Commit interval 5 seconds
EXT3 FS on sda1, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
fuse init (API version 7.9)
Adding 2104504k swap on /dev/sda2. Priority:1 extents:1 across:2104504k
Bluetooth: Core ver 2.11
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
ip_tables: (C) 2000-2006 Netfilter Core Team
Bluetooth: L2CAP ver 2.9
Bluetooth: L2CAP socket layer initialized
nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
ACPI: PCI Interrupt Link [APC5] enabled at IRQ 16
ACPI: PCI Interrupt 0000:02:00.0[A] -> Link [APC5] -> GSI 16 (level, low) -> IRQ 23
[fglrx] Reserve Block – 0 offset = 0X1fffb000 length = 0X5000
[fglrx] Reserve Block – 1 offset = 0X0 length = 0X1000000
[fglrx] Reserve Block – 2 offset = 0Xffc0000 length = 0X40000
[fglrx] interrupt source 20008000 successfully enabled
[fglrx] enable ID = 0x00000008
[fglrx] Receive enable interrupt message with irqEnableMask: 20008000
[fglrx] interrupt source 10000000 successfully enabled
[fglrx] enable ID = 0x00000009
[fglrx] Receive enable interrupt message with irqEnableMask: 10000000
fusd: starting, $Revision: 1.97-kor-hacked-11 $, $Date: 2003/07/11 22:29:39 $, debuglevel=2
cdev control id: 261095424
fusd: registration successful
NET: Registered protocol family 10
lo: Disabled Privacy Extensions
DROPPED IN=eth0 OUT= MAC= SRC=xxxxxx DST=xxxxxx LEN=28 TOS=0x00 PREC=0x00 TTL=64 ID=0 DF PROTO=ICMP TYPE=8 CODE=0 ID=1296 SEQ=0
eth0: no IPv6 routers present
DROPPED IN=eth0 OUT= MAC= SRC=xxxxxx DST=xxxxx LEN=28 TOS=0x00 PREC=0x00 TTL=64 ID=0 DF PROTO=ICMP TYPE=8 CODE=0 ID=57108 SEQ=0
DROPPED IN=eth0 OUT= MAC=xxxx SRC=xxxx DST=xxxx LEN=48 TOS=0x00 PREC=0x00 TTL=111 ID=506 DF PROTO=TCP SPT=1075 DPT=54281 SEQ=1995518856 ACK=0 WINDOW=60984 RES=0x00 SYN URGP=0 OPT (020405AC01010402)
DROPPED IN=eth0 OUT= MAC=xxx SRC=62.241.93.161 DST=192.168.1.5 LEN=48 TOS=0x00 PREC=0x00 TTL=111 ID=634 DF PROTO=TCP SPT=1075 DPT=54281 SEQ=1995518856 ACK=0 WINDOW=60984 RES=0x00 SYN URGP=0 OPT (020405AC01010402)
DROPPED IN=eth0 OUT= MAC=xxx SRC=xxxxx DST=xxxxx LEN=48 TOS=0x00 PREC=0x00 TTL=111 ID=1112 DF PROTO=TCP SPT=1075 DPT=54281 SEQ=1995518856 ACK=0 WINDOW=60984 RES=0x00 SYN URGP=0 OPT (020405AC01010402)
DROPPED IN=eth0 OUT= MAC=xxxxxx SRC=xxxx DST=xxxx LEN=52 TOS=0x00 PREC=0x00 TTL=52 ID=65260 DF PROTO=TCP SPT=4658 DPT=54281 SEQ=654501494 ACK=0 WINDOW=64240 RES=0x00 SYN URGP=0 OPT (020405B40103030001010402)
DROPPED IN=eth0 OUT= MAC=xxxxx SRC=xxxx DST=xxxxx LEN=52 TOS=0x00 PREC=0x00 TTL=52 ID=65456 DF PROTO=TCP SPT=4658 DPT=54281 SEQ=654501494 ACK=0 WINDOW=64240 RES=0x00 SYN URGP=0 OPT (020405B40103030001010402)
DROPPED IN=eth0 OUT= MAC=xxxx SRC=xxxxx DST=xxxxx LEN=52 TOS=0x00 PREC=0x00 TTL=52 ID=323 DF PROTO=TCP SPT=4658 DPT=54281 SEQ=654501494 ACK=0 WINDOW=64240 RES=0x00 SYN URGP=0 OPT (020405B40103030001010402)
DROPPED IN=eth0 OUT= MAC= SRC=xxxx DST=xxxxx LEN=28 TOS=0x00 PREC=0x00 TTL=64 ID=0 DF PROTO=ICMP TYPE=8 CODE=0 ID=39964 SEQ=0
gil ~]$
-
7 Maggio, 2008 alle 17:08 #23571BergoglioMembro
@ gil :
Fermo! Fermo!
La cartella init.d ed il file bootmisc.sh esiste per forza, può darsi che non si trovi in /etc .
Quindi se hai creato da zero /etc/init.d/bootmisc.sh toglilo! Cerca dove si trova questo file bootmisc.sh che è contenuto in una cartella init.d od init e sicuramente non nella /home.
Adesso non sono su Openmamba quindi non posso esserti d’aiuto, cercalo e fammi sapere dove si trova.
-
7 Maggio, 2008 alle 17:31 #23573gilMembro
Ciao
non ho ancora fatto nulla
pero /etc/init.d esiste mentre bootmisc.sh mi metto a cercarlo adesso…
-
7 Maggio, 2008 alle 17:48 #23574gilMembro
bootmisc.sh … non esiste… ############################################################o
mentre /etc/rc.d/init.d
ciao
-
8 Maggio, 2008 alle 00:15 #23586SilvanAmministratore del forum
In openmamba il file che fa la funzione di questo bootmisc.sh, se ho capito bene, è
/etc/init.d/rc.local
-
8 Maggio, 2008 alle 12:20 #23590gilMembro
foglio bianco….
ciao
-
8 Maggio, 2008 alle 12:49 #23591SilvanAmministratore del forum
Questo è il contenuto predefinito:
$ more /etc/init.d/rc.local
#!/bin/bash
#
# rc.local - This script will be executed at the end of the init process as the
# last service and may be modified by the system administrator for it
s
# own purposes. This is a startup script only.
-
-
AutoreArticoli
- Devi aver eseguito l’accesso per poter rispondere a questa discussione.