• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

USB und Linux...eine Katastrophe

cd ins neue Verzeichnis, dort "KERNEL_SOURCE=/usr/src/linux make modules" und anschließend "KERNEL_SOURCE=/usr/src/linux make modules_install"?

Fehlermeldung:

linux:/usr/src/kernel-modules/usbvision # KERNEL_SOURCE=/usr/src/linux make modules
make -C /usr/src/linux SUBDIRS=/usr/src/kernel-modules/usbvision modules
make: *** /usr/src/linux: Datei oder Verzeichnis nicht gefunden. Schluss.
make: *** [default] Fehler 2
linux:/usr/src/kernel-modules/usbvision #
 
Kaimasutra schrieb:
cd ins neue Verzeichnis, dort "KERNEL_SOURCE=/usr/src/linux make modules" und anschließend "KERNEL_SOURCE=/usr/src/linux make modules_install"?

Fehlermeldung:

linux:/usr/src/kernel-modules/usbvision # KERNEL_SOURCE=/usr/src/linux make modules
make -C /usr/src/linux SUBDIRS=/usr/src/kernel-modules/usbvision modules
make: *** /usr/src/linux: Datei oder Verzeichnis nicht gefunden. Schluss.
make: *** [default] Fehler 2
linux:/usr/src/kernel-modules/usbvision #

Wo sind die Kernelsourcen? Hast Du die nicht installiert? Wie hast Du dann die Kernelsourcen vorbereitet? Oder fehlt nur der Softlink von /usr/src/linux nach /usr/src/linux-2.6.irgendwas? Dann erstellst Du entweder den Softlink oder gibst beim Erstellen des Treibers "KERNEL_SOURCE=/usr/src/linux-2.6.irgendwas make modules" etc. vor.

Die Kernelsourcen solltest Du mit YaST installieren. YaST müsste dann die erforderlichen weiteren Pakete mit ziehen (z.B. gcc, make). Ohne die Kernelsourcen kannst Du keinen Treiber übersetzen.
 
linux:/ # cd
linux:~ # linux:/usr/src/kernel-modules/usbvision
bash: linux:/usr/src/kernel-modules/usbvision: Datei oder Verzeichnis nicht gefunden
linux:~ # cd
linux:~ # cd linux:/usr/src/kernel-modules/usbvision
bash: cd: linux:/usr/src/kernel-modules/usbvision: Datei oder Verzeichnis nicht gefunden
linux:~ # cd /usr/src/kernel-modules/usbvision
linux:/usr/src/kernel-modules/usbvision # KERNEL_SOURCE=/usr/src/linux-2.6.11.4-20a-obj make modules
Makefile:20: /lib/modules/2.6.11.4-20a-default/build/.config: Datei oder Verzeichnis nicht gefunden
make: *** Keine Regel, um »/lib/modules/2.6.11.4-20a-default/build/.config« zu erstellen. Schluss.
linux:/usr/src/kernel-modules/usbvision # KERNEL_SOURCE=/usr/src/linux-2.6.11.4-20a-obj/i386 make modules
Makefile:20: /lib/modules/2.6.11.4-20a-default/build/.config: Datei oder Verzeichnis nicht gefunden
make: *** Keine Regel, um »/lib/modules/2.6.11.4-20a-default/build/.config« zu erstellen. Schluss.
linux:/usr/src/kernel-modules/usbvision # KERNEL_SOURCE=/usr/src/linux-2.6.11.4-20a-obj/i386/default make modules
Makefile:20: /lib/modules/2.6.11.4-20a-default/build/.config: Datei oder Verzeichnis nicht gefunden
make: *** Keine Regel, um »/lib/modules/2.6.11.4-20a-default/build/.config« zu erstellen. Schluss.
linux:/usr/src/kernel-modules/usbvision # make
Makefile:20: /lib/modules/2.6.11.4-20a-default/build/.config: Datei oder
Gcc und Make ist beides laut Yast schon installiert. Hab ein rpm packet gefunden für usbvision. Die Dateien werden also definitiv richtig abgelegt. Allerding funktioniert das immer noch nicht, egal was ich versuche ich bekomme immer Fehler.



Hier das was ich versucht habe... Ich glaube ich muss mir mal jemanden suchen der sich damit auskennt

Verzeichnis nicht gefunden
make: *** Keine Regel, um »/lib/modules/2.6.11.4-20a-default/build/.config« zu erstellen. Schluss.
linux:/usr/src/kernel-modules/usbvision # Make
bash: Make: command not found
linux:/usr/src/kernel-modules/usbvision # Makefile
bash: Makefile: command not found
linux:/usr/src/kernel-modules/usbvision # cd src
linux:/usr/src/kernel-modules/usbvision/src # make
make: *** Keine Targets angegeben und keine »make«-Steuerdatei gefunden. Schluss.
linux:/usr/src/kernel-modules/usbvision/src # Make
bash: Make: command not found
linux:/usr/src/kernel-modules/usbvision/src # Makefile
bash: Makefile: command not found
linux:/usr/src/kernel-modules/usbvision/src #
 
Kaimasutra schrieb:
linux:/ # cd
linux:~ # linux:/usr/src/kernel-modules/usbvision
bash: linux:/usr/src/kernel-modules/usbvision: Datei oder Verzeichnis nicht gefunden
was treibst du da eigentlich ??
was soll "linux:" da in der EIngabe ??
die Fehlermeldung sagt es doch ganz klar ...

Kaimasutra schrieb:
linux:~ # cd /usr/src/kernel-modules/usbvision
linux:/usr/src/kernel-modules/usbvision # KERNEL_SOURCE=/usr/src/linux-2.6.11.4-20a-obj make modules
Makefile:20: /lib/modules/2.6.11.4-20a-default/build/.config: Datei oder Verzeichnis nicht gefunden
OHNE ".config" geht nichts .. die wird erstellt durch den Befehl "make prepare_all" im Verzeichnis /usr/src/linux ...

alles andere sind dann Folgefehler ..

poste mal die Ausgabe der folgenden Befehle:
rpm -q kernel-source
rpm -q kernel-default
uname -r
 
linux:/home/Kaimasutra # rpm -q kernel-source
package kernel-source is not installed
linux:/home/Kaimasutra # rpm -q kernel-default
kernel-default-2.6.11.4-20a
linux:/home/Kaimasutra # uname -r
2.6.11.4-20a-default
linux:/home/Kaimasutra #
 
Kaimasutra schrieb:
linux:/home/Kaimasutra # rpm -q kernel-source
package kernel-source is not installed
linux:/home/Kaimasutra # rpm -q kernel-default
kernel-default-2.6.11.4-20a
linux:/home/Kaimasutra # uname -r
2.6.11.4-20a-default
linux:/home/Kaimasutra #

Sag mal, willst du uns hier eigentlich verkaspern ??
In alle vorherigen Postings haben wir dich gefragt ob die kernel-source installiert ist ... ohne die geht es NICHT.

Auf soviel Unverschämtheit und Nicht-Lesen wollen gibt es nur eine Reaktion von mir: EOS. (EndOfSupport) Da ist mir die Zeit zu schade ;)
 
Versteh ich jetzt nicht ganz, laut Yast sind Gcc und Make (übersetzer oder irgendwei sowas stand da bei) installiert
 
Aber die SOURCEN nicht!

Ohne Kernelsource ist keine Modulübersetzung möglich.

Also noch einmal ganz langsam:

Installiere mit YaST das Paket Kernel-source mit der gleichen Versionsnummer wie der laufende Kernel, also kernel-source-2.6.11.4-20a.

Mache im nun entstandenen Verzeichnis /usr/src/linux "make prepare_all".

Jetzt kannst Du nach Oben blättern und weiter machen.
 
Gefunden, sorry ;) Dachte das Ding hätte er auch mit installiert. Installier ich dann, wenn ich daheim bin (hab meine CD´s gerade nicht dabei). Nene, ich schähm mich ja shcon fast für so viel Dummheit
 
Nächster versuch, diesmal mit Kernel Sources

linux:~ # cd ..
linux:/ # cd usr
linux:/usr # cd src
linux:/usr/src # cd linux
linux:/usr/src/linux # make prepare-all
CHK include/linux/version.h
make[1]: `arch/i386/kernel/asm-offsets.s' is up to date.
linux:/usr/src/linux # cd ..
linux:/usr/src # cd kernel-modules
linux:/usr/src/kernel-modules # cd usbvision
linux:/usr/src/kernel-modules/usbvision # KERNEL_SOURCE=/usr/src/linux-2.6.11.4-20a make modules
make: *** No rule to make target `modules'. Stop.
linux:/usr/src/kernel-modules/usbvision # KERNEL_SOURCE=/usr/src/linux-2.6.11.4-20a make modules_install
make: *** No rule to make target `modules_install'. Stop.
 
Ich schrieb gerade: "Mach mal nur "make module" (ohne "s" am Ende) und berichte."

Das vergiss mal lieber. "...make modules" ist schon richtig. Muss einen anderen Grund haben. Gibt es eine Datei mit Namen configure in dem Verzeichnis? Ansonsten sag ich lieber erst mal nichts mehr. Ich werde nacher mal in das Paket "usbvision" reinschauen, wenn ich zuhause bin.
 
taki@rivendell:~> su
Password:
rivendell:/home/taki # yast -i km_usbvision
rivendell:/home/taki # cd /usr/src/kernel-modules/usbvision/
rivendell:/home/taki # ls
bt819-new.c i2c-algo-usb.c Makefile saa7113.c usbvision.c usbvision_ioctl.h
Do_not_copy_Makefile_to_kernel_tree i2c-algo-usb.h saa7111-new.c saa7113.h usbvision.h
rivendell:/usr/src/kernel-modules/usbvision # KERNEL_SOURCE=/usr/src/linux make modules
make -C /usr/src/linux SUBDIRS=/usr/src/kernel-modules/usbvision modules
make[1]: Entering directory `/usr/src/linux-2.6.11.4-20a'

WARNING: Symbol version dump /usr/src/linux-2.6.11.4-20a/Module.symvers is missing; modules will have no modversions.

CC [M] /usr/src/kernel-modules/usbvision/i2c-algo-usb.o
CC [M] /usr/src/kernel-modules/usbvision/usbvision.o
/usr/src/kernel-modules/usbvision/usbvision.c: In function `debug_memcpy':
/usr/src/kernel-modules/usbvision/usbvision.c:927: warning: long int format, size_t arg (arg 4)
/usr/src/kernel-modules/usbvision/usbvision.c: In function `usbvision_v4l_mmap':
/usr/src/kernel-modules/usbvision/usbvision.c:4737: warning: `remap_page_range' is deprecated (declared at include/linux/mm.h:839)
CC [M] /usr/src/kernel-modules/usbvision/saa7113.o
Building modules, stage 2.
MODPOST
CC /usr/src/kernel-modules/usbvision/i2c-algo-usb.mod.o
LD [M] /usr/src/kernel-modules/usbvision/i2c-algo-usb.ko
CC /usr/src/kernel-modules/usbvision/saa7113.mod.o
LD [M] /usr/src/kernel-modules/usbvision/saa7113.ko
CC /usr/src/kernel-modules/usbvision/usbvision.mod.o
LD [M] /usr/src/kernel-modules/usbvision/usbvision.ko
make[1]: Leaving directory `/usr/src/linux-2.6.11.4-20a'
rivendell:/usr/src/kernel-modules/usbvision #

:?:
 
linux:/home/kaimasutra # rpm -q kernel-source
kernel-source-2.6.11.4-20a
linux:/home/kaimasutra # rpm -q kernel-default
kernel-default-2.6.11.4-20a
linux:/home/kaimasutra # uname -r
2.6.11.4-20a-default
linux:/home/kaimasutra # cd /usr/src/linux
linux:/usr/src/linux # make prepare-all
CHK include/linux/version.h
SPLIT include/linux/autoconf.h -> include/config/*
HOSTCC scripts/genksyms/genksyms.o
SHIPPED scripts/genksyms/lex.c
SHIPPED scripts/genksyms/parse.h
SHIPPED scripts/genksyms/keywords.c
HOSTCC scripts/genksyms/lex.o
SHIPPED scripts/genksyms/parse.c
HOSTCC scripts/genksyms/parse.o
HOSTLD scripts/genksyms/genksyms
CC scripts/mod/empty.o
HOSTCC scripts/mod/mk_elfconfig
MKELF scripts/mod/elfconfig.h
HOSTCC scripts/mod/file2alias.o
HOSTCC scripts/mod/modpost.o
HOSTCC scripts/mod/sumversion.o
HOSTLD scripts/mod/modpost
HOSTCC scripts/kallsyms
HOSTCC scripts/conmakehash
HOSTCC scripts/bin2c
CC arch/i386/kernel/asm-offsets.s
CHK include/asm-i386/asm_offsets.h
UPD include/asm-i386/asm_offsets.h
linux:/usr/src/linux # cd /usr/src/kernel-modules/usbvision/
linux:/usr/src/kernel-modules/usbvision # ls
. .i2c-algo-usb.o.d .tmp_i2c-algo-usb.ver
.. .i2c-algo-usb.o.tmp .tmp_versions
bt819-new.c Makefile usbvision.c
Do_not_copy_Makefile_to_kernel_tree saa7111-new.c usbvision.h
i2c-algo-usb.c saa7113.c usbvision_ioctl.h
i2c-algo-usb.h saa7113.h
i2c-algo-usb.o .tmp_i2c-algo-usb.o
linux:/usr/src/kernel-modules/usbvision # KERNEL_SOURCE=/usr/src/linux-2.6.11.4-20a make modules
make -C /usr/src/linux-2.6.11.4-20a SUBDIRS=/usr/src/kernel-modules/usbvision modules
make[1]: Entering directory `/usr/src/linux-2.6.11.4-20a'

WARNING: Symbol version dump /usr/src/linux-2.6.11.4-20a/Module.symvers is missing; modules will have no modversions.

CC [M] /usr/src/kernel-modules/usbvision/i2c-algo-usb.o
CC [M] /usr/src/kernel-modules/usbvision/usbvision.o
/usr/src/kernel-modules/usbvision/usbvision.c: In function `debug_memcpy':
/usr/src/kernel-modules/usbvision/usbvision.c:927: warning: long int format, size_t arg (arg 4)
/usr/src/kernel-modules/usbvision/usbvision.c: In function `usbvision_v4l_mmap':
/usr/src/kernel-modules/usbvision/usbvision.c:4737: warning: `remap_page_range' is deprecated (declared at include/linux/mm.h:839)
CC [M] /usr/src/kernel-modules/usbvision/saa7113.o
Building modules, stage 2.
MODPOST
CC /usr/src/kernel-modules/usbvision/i2c-algo-usb.mod.o
LD [M] /usr/src/kernel-modules/usbvision/i2c-algo-usb.ko
CC /usr/src/kernel-modules/usbvision/saa7113.mod.o
LD [M] /usr/src/kernel-modules/usbvision/saa7113.ko
CC /usr/src/kernel-modules/usbvision/usbvision.mod.o
LD [M] /usr/src/kernel-modules/usbvision/usbvision.ko
make[1]: Leaving directory `/usr/src/linux-2.6.11.4-20a'
linux:/usr/src/kernel-modules/usbvision #



und was nun ??
 
Jetzt hast Du ein binäres Kernelmodul gebacken. Installiere es mit

Code:
KERNEL_SOURCE=/usr/src/linux-2.6.11.4-20a make modules-install

Das frisch gebackene und installierte Kernelmodul kannst Du jetzt mit "modprobe usbvision" laden. Laut README sollst Du vorher noch ein par weitere Module laden. Um Dir das Scrollen zu ersparen zitiere ich noch mal, also:

b) If the USB Support and the Video4Linux was compiled as modules.

Code:
modprobe usbcore.o 
modprobe usb-uhci.o
modprobe videodev.o

oder

Code:
modprobe usbcore.o 
modprobe ohci-hcd.o 
modprobe videodev.o

b) Install the modules:

Code:
modprobe usbvision

Wenn beim Laden Fehler angezeigt werden, ist die Ausgabe von "dmesg" evtl. auch hilfreich. Wenn das Modul fehlerfrei geladen wurde, kannst Du versuchen, ob die Karte funktioniert. Den mplayer-Aufruf kopier ich jetzt nicht nochmal. Der steht auch weiter oben. mplayer ist sehr zuverlässig. Ansonsten nutze ich mit meiner Medion-Karte (PCI) tvtime und gelegentlich kdetv. Zu beiden Programmen kann die Suchfunktion weiterhelfen.



Epilog
Die folgenden Zeilen muss ich schreiben, um die Erwartungen nicht zu hoch zu setzen, denn nun geht das Bangen los, ob der Treiber Deine Karte wirklich unterstützt. Eine Garantie dafür kann es nicht geben.

Die Hersteller neigen dazu, Chipsätze kurzfristig ohne Ankündigung und Änderung am Typbezeichner auszutauschen, je nachdem, wo es gerade die günstigsten Chips gibt. Ein unter anderem durch mühsames deassemblieren erstellter Linuxtreiber wird möglicherweise eine Karte der neuesten Revision nicht bedienen können, falls die Hardware gar nicht mehr die ist, mit der der Treiber entwickelt wurde.

Sei also nicht zu enttäuscht, wenn die ganze Mühe letzten endes doch nicht zum Ziel führt. Meine Erfahrung ist, dass die OSS-Gemeinde letztenendes doch siegt, wenn es auch bei soviel hardnäckigem Widerstand durch die Hersteller oft etwas länger dauert.

Sollte das ganze nicht funktionieren, hast Du schon einiges über Linux gelernt. Das ganze könnte Dich abschrecken und zur Windowsplatform zurückbringen. Oder es löst früher oder später einen Funken aus, der dazu führt, dass Du mehr verstehen möchtest. Denn die wichtigste Erfahrung mit Linux ist (jedenfalls für mich) immer wieder, dass die Grenzen dieses Systems in den eigenen Fähigkeiten liegen. Das ist keine Blackbox, die man nicht verstehen soll und die genau so viel leistet wie der Hersteller vorsieht, was viel ist, aber eben begrenzt.

Es ist ein offenes System, was sich in jede Richtung verbiegen läßt, die man sich nur vorstellen kann. Das ist etwas, was nicht jedem liegt und man ja auch nicht von jedem erwarten kann. Ich finde es nicht schlimm, wenn jemand von sich sagt, das liegt mir nicht, ich will, das alles einfach läuft. Wenn derjenige dann schon Hardware besitzt und auch behalten möchte, die leider unter Linux (noch) nicht läuft, ist es keine Schande, nicht umzusteigen.

Wenn Du den Plattenplatz dafür frei hast, kannst Du auch beide Systeme parallel nutzen und eben den entgültigen Umstieg verschieben bis wirklich alles läuft. Dann nutzt Du eben das Beste aus beiden Welten, je nachdem, was Du gerade machen möchtest. So hab ich das einige Jahre gehalten, allerdings hatte ich mit meiner Aldi-Hardware offenbar wirklich glück, obwohl diese Hardware damals unter Linuxern verpönt war. Medion hatte aber glücklicherweise doch bewährte Bauteile verwendet, die keine Probleme machten... Das ist nicht immer selbstverständlich.[/code]
 
Folgende Fehlermeldung bekomme ich :
linux:/usr/src/kernel-modules/usbvision # KERNEL_SOURCE=/usr/src/linux-2.6.11.4-20a make modules-install
make: *** Keine Regel, um »modules-install« zu erstellen. Schluss.
linux:/usr/src/kernel-modules/usbvision #
 
Ich glaub es heist "modules_install" (Unterstrich statt Bindestrich). Das kommt raus, wenn man ohne Zugriff aufs heimische Linux postet :oops:
 
gleicher Fehler:
linux:/usr/src/kernel-modules/usbvision # KERNEL_SOURCE=/usr/src/linux-2.6.11.4-20a make modules_install
make: *** Keine Regel, um »modules_install« zu erstellen. Schluss.
linux:/usr/src/kernel-modules/usbvision #
 
modprobe usbcore.o
modprobe ohci-hcd.o
modprobe videodev.o
Die 3 hat er nicht gefunden:

linux:/usr/src/kernel-modules/usbvision # modprobe usbcore.o
FATAL: Module usbcore.o not found.
linux:/usr/src/kernel-modules/usbvision # modprobe usb-uhci.o
FATAL: Module usb_uhci.o not found.
linux:/usr/src/kernel-modules/usbvision # modprobe videodev.o
FATAL: Module videodev.o not found.


modprobe usbvision

Hier hat er angezeigt:

linux:/usr/src/kernel-modules/usbvision # modprobe usbvision



Und unter dmesg:

linux:/usr/src/kernel-modules/usbvision # dmesg
Linux version 2.6.11.4-20a-default (geeko@buildhost) (gcc version 3.3.5 20050117 (prerelease) (SUSE Linux)) #1 Wed Mar 23 21:52:37 UTC 2005
BIOS-provided physical RAM map:
BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
BIOS-e820: 00000000000c0000 - 00000000000d4000 (reserved)
BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved)
BIOS-e820: 0000000000100000 - 000000001fef0000 (usable)
BIOS-e820: 000000001fef0000 - 000000001feff000 (ACPI data)
BIOS-e820: 000000001feff000 - 000000001ff00000 (ACPI NVS)
BIOS-e820: 000000001ff00000 - 0000000020000000 (usable)
BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved)
0MB HIGHMEM available.
512MB LOWMEM available.
On node 0 totalpages: 131072
DMA zone: 4096 pages, LIFO batch:1
Normal zone: 126976 pages, LIFO batch:16
HighMem zone: 0 pages, LIFO batch:1
DMI 2.3 present.
ACPI: RSDP (v000 PTLTD ) @ 0x000f7700
ACPI: RSDT (v001 SONY K5 0x06040000 LTP 0x00000000) @ 0x1fef9d89
ACPI: FADT (v001 SONY K5 0x06040000 PTL_ 0x000f4240) @ 0x1fefee4c
ACPI: BOOT (v001 PTLTD $SBFTBL$ 0x06040000 LTP 0x00000001) @ 0x1fefeec0
ACPI: SSDT (v001 PTLTD POWERNOW 0x06040000 LTP 0x00000001) @ 0x1fefeee8
ACPI: DSDT (v001 SONY K5 0x06040000 MSFT 0x0100000d) @ 0x00000000
ACPI: PM-Timer IO Port: 0x8008
ACPI: local apic disabled
Allocating PCI resources starting at 20000000 (gap: 20000000:dffe0000)
Built 1 zonelists
Kernel command line: root=/dev/hda4 vga=0x314 selinux=0 splash=silent resume=/dev/hda3
bootsplash: silent mode.
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 65536 bytes)
Detected 1300.052 MHz processor.
Using pmtmr for high-res timesource
Console: colour dummy device 80x25
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Memory: 514228k/524288k available (1865k kernel code, 9376k reserved, 659k data, 204k init, 0k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Calibrating delay loop... 2572.28 BogoMIPS (lpj=1286144)
Security Framework v1.0.0 initialized
SELinux: Disabled at boot.
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: After generic identify, caps: 0383f9ff c1cbf9ff 00000000 00000000 00000000 00000000 00000000
CPU: After vendor identify, caps: 0383f9ff c1cbf9ff 00000000 00000000 00000000 00000000 00000000
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 256K (64 bytes/line)
CPU: After all inits, caps: 0383f9ff c1cbf9ff 00000000 00000020 00000000 00000000 00000000
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU: AMD mobile AMD Athlon(tm) XP 1500+ stepping 00
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
checking if image is initramfs... it is
Freeing initrd memory: 1307k freed
ACPI: Looking for DSDT in initrd... not found!
not found!
ACPI: setting ELCR to 0200 (from 0620)
NET: Registered protocol family 16
PCI: PCI BIOS revision 2.10 entry at 0xfd7cd, last bus=1
PCI: Using configuration type 1
mtrr: v2.0 (20020519)
ACPI: Subsystem revision 20050211
ACPI: Interpreter enabled
ACPI: Using PIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (00:00)
PCI: Probing PCI hardware (bus 00)
PCI: Via IRQ fixup
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 *9 10 11 12)
ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 *10 11 12)
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 7 9 10 11 12)
ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 *9 10 11 12)
ACPI: Embedded Controller [EC0] (gpe 1)
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PPB_._PRT]
ACPI: Power Resource [PCR0] (off)
ACPI: Power Resource [PCR1] (off)
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
pnp: PnP ACPI: found 11 devices
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
TC classifier action (bugs to netdev@oss.sgi.com cc hadi@cyberus.ca)
pnp: 00:05: ioport range 0x4d0-0x4d1 has been reserved
pnp: 00:05: ioport range 0x8000-0x807f could not be reserved
pnp: 00:05: ioport range 0x8080-0x80ff has been reserved
pnp: 00:05: ioport range 0x8100-0x811f could not be reserved
pnp: 00:05: ioport range 0x6800-0x687f has been reserved
Simple Boot Flag at 0x37 set to 0x1
apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
apm: overridden by ACPI.
audit: initializing netlink socket (disabled)
audit(1116935658.213:0): initialized
Total HugeTLB memory allocated, 0
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Initializing Cryptographic API
Applying VIA southbridge workaround.
PCI: Disabling Via external APIC routing
vesafb: framebuffer at 0xe9000000, mapped to 0xe0880000, using 3750k, total 8128k
vesafb: mode is 800x600x16, linelength=1600, pages=7
vesafb: protected mode interface info at c000:50ae
vesafb: scrolling: redraw
vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0
bootsplash 3.1.6-2004/03/31: looking for picture...<6> silentjpeg size 39926 bytes,<6>...found (800x600, 25182 bytes, v3).
Console: switching to colour frame buffer device 99x34
fb0: VESA VGA frame buffer device
isapnp: Scanning for PnP cards...
isapnp: No Plug & Play device found
Real Time Clock Driver v1.12
PNP: PS/2 Controller [PNP0303:pS2K,PNP0f13:pS2M] at 0x60,0x64 irq 1,12
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
Serial: 8250/16550 driver $Revision: 1.90 $ 48 ports, IRQ sharing enabled
ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered
Floppy drive(s): fd0 is 1.44M
FDC 0 is a post-1991 82077
RAMDISK driver initialized: 16 RAM disks of 64000K size 1024 blocksize
loop: loaded (max 8 devices)
mice: PS/2 mouse device common for all mice
input: PC Speaker
md: md driver 0.90.1 MAX_MD_DEVS=256, MD_SB_DISKS=27
NET: Registered protocol family 2
IP: routing cache hash table of 4096 buckets, 32Kbytes
TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
TCP bind hash table entries: 65536 (order: 6, 262144 bytes)
TCP: Hash tables configured (established 131072 bind 65536)
NET: Registered protocol family 1
PM: Checking swsusp image.
PM: Resume from disk failed.
ACPI wakeup devices:
MODM LAN
ACPI: (supports S0 S3 S4 S5)
Freeing unused kernel memory: 204k freed
input: AT Translated Set 2 keyboard on isa0060/serio0
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
VP_IDE: IDE controller at PCI slot 0000:00:07.1
VP_IDE: chipset revision 6
VP_IDE: not 100% native mode: will probe irqs later
VP_IDE: VIA vt82c686b (rev 40) IDE UDMA100 controller on pci0000:00:07.1
ide0: BM-DMA at 0x1c40-0x1c47, BIOS settings: hda:DMA, hdb:pio
ide1: BM-DMA at 0x1c48-0x1c4f, BIOS settings: hdc:DMA, hdd:pio
Probing IDE interface ide0...
Enabling hardware tapping
hda: FUJITSU MHS2060AT, ATA DISK drive
input: PS/2 Mouse on isa0060/serio1
input: AlpsPS/2 ALPS GlidePoint on isa0060/serio1
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Probing IDE interface ide1...
hdc: HL-DT-ST CD-RW/DVD DRIVE GCC-4080N, ATAPI CD/DVD-ROM drive
ide1 at 0x170-0x177,0x376 on irq 15
hda: max request size: 128KiB
hda: 117210240 sectors (60011 MB) w/2048KiB Cache, CHS=65535/16/63, UDMA(100)
hda: cache flushes supported
hda: hda1 hda2 < hda5 hda6 hda7 > hda3 hda4
hdc: ATAPI 24X DVD-ROM CD-R/RW drive, 2048kB Cache, UDMA(33)
Uniform CD-ROM driver Revision: 3.20
Attempting manual resume
PM: Checking swsusp image.
swsusp: Suspend partition has wrong signature?
PM: Resume from disk failed.
ReiserFS: hda4: found reiserfs format "3.6" with standard journal
ReiserFS: hda4: using ordered data mode
reiserfs: using flush barriers
ReiserFS: hda4: journal params: device hda4, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
ReiserFS: hda4: checking transaction log (hda4)
ReiserFS: hda4: Using r5 hash to sort names
bootsplash: status on console 0 changed to on
md: Autodetecting RAID arrays.
md: autorun ...
md: ... autorun DONE.
device-mapper: 4.4.0-ioctl (2005-01-12) initialised: dm-devel@redhat.com
cdrom: open failed.
NTFS driver 2.1.22 [Flags: R/W MODULE].
NTFS volume version 3.1.
NTFS-fs error (device hda1): ntfs_check_logfile(): The two restart pages in $LogFile do not match.
NTFS-fs warning (device hda1): load_system_files(): Failed to load $LogFile. Will not be able to remount read-write. Mount in Windows.
NTFS volume version 3.1.
NTFS-fs error (device hda5): ntfs_check_logfile(): The two restart pages in $LogFile do not match.
NTFS-fs warning (device hda5): load_system_files(): Failed to load $LogFile. Will not be able to remount read-write. Mount in Windows.
NTFS volume version 3.1.
NTFS-fs error (device hda7): ntfs_check_logfile(): The two restart pages in $LogFile do not match.
NTFS-fs warning (device hda7): load_system_files(): Failed to load $LogFile. Will not be able to remount read-write. Mount in Windows.
Capability LSM initialized
NET: Registered protocol family 10
IPv6 over IPv4 tunneling driver
ieee1394: Initialized config rom entry `ip1394'
ieee1394: raw1394: /dev/raw1394 device initialized
ohci1394: $Rev: 1250 $ Ben Collins <bcollins@debian.org>
ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 9
PCI: setting IRQ 9 as level-triggered
ACPI: PCI interrupt 0000:00:0e.0[A] -> GSI 9 (level, low) -> IRQ 9
PCI: Setting latency timer of device 0000:00:0e.0 to 64
ohci1394: fw-host0: OHCI-1394 1.0 (PCI): IRQ=[9] MMIO=[e8004000-e80047ff] Max Packet=[2048]
video1394: Installed video1394 module
parport_pc: VIA 686A/8231 detected
parport_pc: probing current configuration
parport_pc: Current parallel port base: 0x378
parport0: PC-style at 0x378 (0x778), irq 7, using FIFO [PCSPP,TRISTATE,COMPAT,ECP]
parport_pc: VIA parallel port: io=0x378, irq=7
lp0: using parport0 (interrupt-driven).
Disabled Privacy Extensions on device ddf1d800(sit0)
ieee1394: Host added: ID:BUS[0-00:1023] GUID[080046030114be22]
Disabled Privacy Extensions on device c033d600(lo)
Adding 1028152k swap on /dev/hda3. Priority:42 extents:1
ip6_tables: (C) 2000-2002 Netfilter core team
Linux agpgart interface v0.100 (c) Dave Jones
Linux Kernel Card Services
options: [pci] [cardbus] [pm]
load_module: err 0xffffffef (dont worry)
usbcore: registered new driver usbfs
usbcore: registered new driver hub
load_module: err 0xffffffef (dont worry)
USB Universal Host Controller Interface driver v2.2
ACPI: PCI interrupt 0000:00:07.2[D] -> GSI 9 (level, low) -> IRQ 9
uhci_hcd 0000:00:07.2: UHCI Host Controller
load_module: err 0xffffffef (dont worry)
PCI: Setting latency timer of device 0000:00:07.2 to 64
uhci_hcd 0000:00:07.2: irq 9, io base 0x1c00
uhci_hcd 0000:00:07.2: new USB bus registered, assigned bus number 1
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 2 ports detected
ACPI: PCI interrupt 0000:00:07.3[D] -> GSI 9 (level, low) -> IRQ 9
uhci_hcd 0000:00:07.3: UHCI Host Controller
PCI: Setting latency timer of device 0000:00:07.3 to 64
uhci_hcd 0000:00:07.3: irq 9, io base 0x1c20
uhci_hcd 0000:00:07.3: new USB bus registered, assigned bus number 2
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
load_module: err 0xffffffef (dont worry)
agpgart: Detected VIA Twister-K/KT133x/KM133 chipset
agpgart: Maximum main memory to use for agp memory: 440M
agpgart: AGP aperture is 128M @ 0xf0000000
ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 9
ACPI: PCI interrupt 0000:00:0a.0[A] -> GSI 9 (level, low) -> IRQ 9
Yenta: CardBus bridge found at 0000:00:0a.0 [104d:80f6]
Yenta: Using CSCINT to route CSC interrupts to PCI
Yenta: Routing CardBus interrupts to PCI
Yenta TI: socket 0000:00:0a.0, mfunc 0x012c1222, devctl 0x66
8139too Fast Ethernet driver 0.9.27
Yenta: ISA IRQ mask 0x0c08, PCI irq 9
Socket status: 30000020
ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 10
PCI: setting IRQ 10 as level-triggered
ACPI: PCI interrupt 0000:00:0a.1 -> GSI 10 (level, low) -> IRQ 10
Yenta: CardBus bridge found at 0000:00:0a.1 [104d:80f6]
Yenta: Using CSCINT to route CSC interrupts to PCI
Yenta: Routing CardBus interrupts to PCI
Yenta TI: socket 0000:00:0a.1, mfunc 0x012c1222, devctl 0x66
Yenta: ISA IRQ mask 0x0808, PCI irq 10
Socket status: 30000020
load_module: err 0xffffffef (dont worry)
ACPI: PCI interrupt 0000:00:10.0[A] -> GSI 10 (level, low) -> IRQ 10
eth0: RealTek RTL8139 at 0xe1002800, 08:00:46:5a:d4:78, IRQ 10
eth0: Identified 8139 chip type 'RTL-8139C'
ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 5
PCI: setting IRQ 5 as level-triggered
ACPI: PCI interrupt 0000:00:07.5[C] -> GSI 5 (level, low) -> IRQ 5
PCI: Setting latency timer of device 0000:00:07.5 to 64
ip_tables: (C) 2000-2002 Netfilter core team
ip_conntrack version 2.1 (4096 buckets, 32768 max) - 248 bytes per conntrack
BIOS EDD facility v0.16 2004-Jun-25, 1 devices found
cs: IO port probe 0xc00-0xcff: clean.
cs: IO port probe 0xc00-0xcff: clean.
cs: IO port probe 0x820-0x8ff: clean.
cs: IO port probe 0x820-0x8ff: clean.
cs: IO port probe 0x800-0x80f: clean.
cs: IO port probe 0x800-0x80f: clean.
cs: IO port probe 0x3e0-0x4ff: clean.
cs: IO port probe 0x3e0-0x4ff: clean.
cs: IO port probe 0x100-0x3af: clean.
cs: IO port probe 0x100-0x3af: clean.
cs: IO port probe 0xa00-0xaff: clean.
cs: IO port probe 0xa00-0xaff: clean.
cdrom: open failed.
eth0: link up, 100Mbps, full-duplex, lpa 0x45E1
acx_pci: unsupported module, tainting kernel.
acx100: It looks like you've been coaxed into buying a wireless network card
acx100: that uses the mysterious ACX100/ACX111 chip from Texas Instruments.
acx100: You should better have bought e.g. a PRISM(R) chipset based card,
acx100: since that would mean REAL vendor Linux support.
acx100: Given this info, it's evident that this driver is still EXPERIMENTAL,
acx100: thus your mileage may vary. Reading README file and/or Craig's HOWTO is
recommended, visit http://acx100.sf.net in case of further questions/discussion.
acx100: Compiled to use 32bit I/O access (faster, however I/O timing issues might occur, such as firmware upload failure!) instead of 16bit access
acx_init_module: dev_info is: TI acx_pci
acx_init_module: TI acx_pci.o: Ver 0.2.0pre8 Driver initialized, waiting for cards to probe...
PCI: Enabling device 0000:06:00.0 (0000 -> 0003)
ACPI: PCI interrupt 0000:06:00.0[A] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:06:00.0 to 64
Found ACX100-based wireless network card at 0000:06:00.0, irq:10, phymem1:0xfcefc000, phymem2:0xfcf00000, mem1:0xe1156000, mem1_size:4096, mem2:0xe1180000, mem2_size:65536
initial debug setting is 0x001b
acx_select_io_register_set: using ACX100 io resource addresses (size: 56)
hw_unavailable = 1
acx_probe_pci: TI acx_pci: Using IRQ 10
reset hw_unavailable++
acx_reset_mac: enable soft reset...
acx_reset_mac: disable soft reset and go to init mode...
Attention: no custom firmware directory specified (via module parameter firmware_dir), thus using our default firmware directory /lib/firmware
Trying to load firmware: '/lib/firmware/WLANGEN.BIN'
ERROR 2 trying to open firmware image file '/lib/firmware/WLANGEN.BIN': file not found - make sure this EXACT filename is in eXaCtLy this directory!
acx_read_fw FAILED
acx_reset_dev: Failed to upload firmware to the ACX1xx
acx_probe_pci: TI acx_pci: MAC initialize failure!
acx_probe_pci: TI acx_pci.o: Ver 0.2.0pre8 Loading FAILED
acx_pci: probe of 0000:06:00.0 failed with error -5
ohci_hcd: 2004 Nov 08 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI)
PCI: Enabling device 0000:02:00.0 (0000 -> 0002)
ACPI: PCI interrupt 0000:02:00.0[A] -> GSI 9 (level, low) -> IRQ 9
ohci_hcd 0000:02:00.0: OHCI Host Controller
PCI: Setting latency timer of device 0000:02:00.0 to 64
ohci_hcd 0000:02:00.0: irq 9, pci mem 0xfdefe000
ohci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 3
NET: Registered protocol family 17
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 3 ports detected
PCI: Enabling device 0000:02:00.1 (0000 -> 0002)
ACPI: PCI interrupt 0000:02:00.1 -> GSI 9 (level, low) -> IRQ 9
ohci_hcd 0000:02:00.1: OHCI Host Controller
PCI: Setting latency timer of device 0000:02:00.1 to 64
ohci_hcd 0000:02:00.1: irq 9, pci mem 0xfdeff000
ohci_hcd 0000:02:00.1: new USB bus registered, assigned bus number 4
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
PCI: Enabling device 0000:02:00.2 (0000 -> 0002)
ACPI: PCI interrupt 0000:02:00.2[C] -> GSI 9 (level, low) -> IRQ 9
ehci_hcd 0000:02:00.2: EHCI Host Controller
ehci_hcd 0000:02:00.2: irq 9, pci mem 0xfdf00000
ehci_hcd 0000:02:00.2: new USB bus registered, assigned bus number 5
ehci_hcd 0000:02:00.2: park 0
ehci_hcd 0000:02:00.2: USB 2.0 initialized, EHCI 1.00, driver 10 Dec 2004
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 5 ports detected
SCSI subsystem initialized
st: Version 20041025, fixed bufsize 32768, s/g segs 256
eth0: no IPv6 routers present
mtrr: 0xe9000000,0x800000 overlaps existing 0xe9000000,0x400000
mtrr: 0xe9000000,0x800000 overlaps existing 0xe9000000,0x400000
drivers/usb/serial/usb-serial.c: USB Serial support registered for Generic
usbcore: registered new driver usbserial_generic
usbcore: registered new driver usbserial
drivers/usb/serial/usb-serial.c: USB Serial Driver core v2.0
Non-volatile memory driver v1.2
ACPI: AC Adapter [ACAD] (on-line)
ACPI: Battery Slot [BAT1] (battery absent)
ACPI: Battery Slot [BAT2] (battery present)
ACPI: Power Button (FF) [PWRF]
ACPI: Sleep Button (CM) [SBTN]
ACPI: Lid Switch [LID]
ACPI: CPU0 (power states: C1[C1] C2[C2])
ACPI: Processor [CPU0] (supports 16 throttling states)
ACPI: Thermal Zone [THRM] (55 C)
powernow-k8: Processor cpuid 680 not supported
powernow: PowerNOW! Technology present. Can scale: frequency and voltage.
powernow: SGTC: 10000
powernow: Minimum speed 500 MHz. Maximum speed 1300 MHz.
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC= SRC=192.168.2.105 DST=224.0.0.251 LEN=107 TOS=0x00 PREC=0x00 TTL=255 ID=7 DF PROTO=UDP SPT=5353 DPT=5353 LEN=87
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC= SRC=192.168.2.105 DST=224.0.0.251 LEN=107 TOS=0x00 PREC=0x00 TTL=255 ID=8 DF PROTO=UDP SPT=5353 DPT=5353 LEN=87
end_request: I/O error, dev fd0, sector 0
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC= SRC=192.168.2.105 DST=224.0.0.251 LEN=107 TOS=0x00 PREC=0x00 TTL=255 ID=9 DF PROTO=UDP SPT=5353 DPT=5353 LEN=87
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=213.209.108.155 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=24849 DF PROTO=TCP SPT=24680 DPT=80 WINDOW=11596 RES=0x00 ACK FIN URGP=0 OPT (0101080A00135CF20B120DC2)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=213.209.108.155 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=24851 DF PROTO=TCP SPT=24680 DPT=80 WINDOW=11596 RES=0x00 ACK FIN URGP=0 OPT (0101080A001362230B120DC2)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=213.209.108.155 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=24853 DF PROTO=TCP SPT=24680 DPT=80 WINDOW=11596 RES=0x00 ACK FIN URGP=0 OPT (0101080A00136C850B120DC2)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=213.209.108.155 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=24855 DF PROTO=TCP SPT=24680 DPT=80 WINDOW=11596 RES=0x00 ACK FIN URGP=0 OPT (0101080A001381490B120DC2)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=213.209.108.155 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=24857 DF PROTO=TCP SPT=24680 DPT=80 WINDOW=11596 RES=0x00 ACK FIN URGP=0 OPT (0101080A0013AAD10B120DC2)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=213.209.108.155 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=24859 DF PROTO=TCP SPT=24680 DPT=80 WINDOW=11596 RES=0x00 ACK FIN URGP=0 OPT (0101080A0013FDE10B120DC2)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=213.209.108.155 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=24861 DF PROTO=TCP SPT=24680 DPT=80 WINDOW=11596 RES=0x00 ACK FIN URGP=0 OPT (0101080A0014A4010B120DC2)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=213.209.108.155 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=24863 DF PROTO=TCP SPT=24680 DPT=80 WINDOW=11596 RES=0x00 ACK FIN URGP=0 OPT (0101080A0015F0410B120DC2)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=195.42.253.165 LEN=75 TOS=0x00 PREC=0x00 TTL=64 ID=4429 DF PROTO=TCP SPT=16471 DPT=443 WINDOW=1728 RES=0x00 ACK PSH FIN URGP=0 OPT (0101080A0043D11205FA1FA1)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=195.42.253.165 LEN=75 TOS=0x00 PREC=0x00 TTL=64 ID=40907 DF PROTO=TCP SPT=16459 DPT=443 WINDOW=1799 RES=0x00 ACK PSH FIN URGP=0 OPT (0101080A0043FBF205FA1F9E)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=195.42.253.165 LEN=75 TOS=0x00 PREC=0x00 TTL=64 ID=63006 DF PROTO=TCP SPT=16461 DPT=443 WINDOW=1781 RES=0x00 ACK PSH FIN URGP=0 OPT (0101080A0044038B05FA1F9E)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=195.42.253.165 LEN=75 TOS=0x00 PREC=0x00 TTL=64 ID=56558 DF PROTO=TCP SPT=16468 DPT=443 WINDOW=1728 RES=0x00 ACK PSH FIN URGP=0 OPT (0101080A0044088705FA1FA0)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=195.42.253.165 LEN=75 TOS=0x00 PREC=0x00 TTL=64 ID=4431 DF PROTO=TCP SPT=16471 DPT=443 WINDOW=1728 RES=0x00 ACK PSH FIN URGP=0 OPT (0101080A0044251205FA1FA1)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=195.42.253.165 LEN=75 TOS=0x00 PREC=0x00 TTL=64 ID=4755 DF PROTO=TCP SPT=16488 DPT=443 WINDOW=1996 RES=0x00 ACK PSH FIN URGP=0 OPT (0101080A0044370005FA1FB6)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=195.42.253.165 LEN=75 TOS=0x00 PREC=0x00 TTL=64 ID=40909 DF PROTO=TCP SPT=16459 DPT=443 WINDOW=1799 RES=0x00 ACK PSH FIN URGP=0 OPT (0101080A0044817205FA1F9E)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=195.42.253.165 LEN=75 TOS=0x00 PREC=0x00 TTL=64 ID=12194 DF PROTO=TCP SPT=16497 DPT=443 WINDOW=1728 RES=0x00 ACK PSH FIN URGP=0 OPT (0101080A0044C58F05FA1FB9)
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=08:00:46:5a:d4:78:00:40:d0:19:6a:d0:08:00 SRC=192.168.2.102 DST=192.168.2.105 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=6171 DF PROTO=TCP SPT=2281 DPT=445 WINDOW=65535 RES=0x00 SYN URGP=0 OPT (020405B401010402)
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=08:00:46:5a:d4:78:00:40:d0:19:6a:d0:08:00 SRC=192.168.2.102 DST=192.168.2.105 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=6172 DF PROTO=TCP SPT=2282 DPT=139 WINDOW=65535 RES=0x00 SYN URGP=0 OPT (020405B401010402)
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=08:00:46:5a:d4:78:00:40:d0:19:6a:d0:08:00 SRC=192.168.2.102 DST=192.168.2.105 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=6195 DF PROTO=TCP SPT=2281 DPT=445 WINDOW=65535 RES=0x00 SYN URGP=0 OPT (020405B401010402)
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=08:00:46:5a:d4:78:00:40:d0:19:6a:d0:08:00 SRC=192.168.2.102 DST=192.168.2.105 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=6196 DF PROTO=TCP SPT=2282 DPT=139 WINDOW=65535 RES=0x00 SYN URGP=0 OPT (020405B401010402)
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=08:00:46:5a:d4:78:00:40:d0:19:6a:d0:08:00 SRC=192.168.2.102 DST=192.168.2.105 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=6247 DF PROTO=TCP SPT=2281 DPT=445 WINDOW=65535 RES=0x00 SYN URGP=0 OPT (020405B401010402)
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=08:00:46:5a:d4:78:00:40:d0:19:6a:d0:08:00 SRC=192.168.2.102 DST=192.168.2.105 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=6345 DF PROTO=TCP SPT=2283 DPT=80 WINDOW=65535 RES=0x00 SYN URGP=0 OPT (020405B401010402)
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=08:00:46:5a:d4:78:00:40:d0:19:6a:d0:08:00 SRC=192.168.2.102 DST=192.168.2.105 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=6518 DF PROTO=TCP SPT=2284 DPT=445 WINDOW=65535 RES=0x00 SYN URGP=0 OPT (020405B401010402)
SFW2-INext-DROP-DEFLT-INV IN=eth0 OUT= MAC=08:00:46:5a:d4:78:00:30:f1:bb:f9:18:08:00 SRC=212.172.60.154 DST=192.168.2.105 LEN=1454 TOS=0x00 PREC=0x00 TTL=119 ID=10578 DF PROTO=TCP SPT=80 DPT=3384 WINDOW=16051 RES=0x00 ACK URGP=0 OPT (0101080A0006DE62008BCC3C)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=213.209.108.155 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=20174 DF PROTO=TCP SPT=25140 DPT=80 WINDOW=12320 RES=0x00 ACK FIN URGP=0 OPT (0101080A008D27410B1342FC)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=213.209.108.155 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=20176 DF PROTO=TCP SPT=25140 DPT=80 WINDOW=12320 RES=0x00 ACK FIN URGP=0 OPT (0101080A008D28650B1342FC)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=213.209.108.155 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=20178 DF PROTO=TCP SPT=25140 DPT=80 WINDOW=12320 RES=0x00 ACK FIN URGP=0 OPT (0101080A008D2AAD0B1342FC)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=213.209.108.155 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=20180 DF PROTO=TCP SPT=25140 DPT=80 WINDOW=12320 RES=0x00 ACK FIN URGP=0 OPT (0101080A008D2F3D0B1342FC)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=213.209.108.155 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=20182 DF PROTO=TCP SPT=25140 DPT=80 WINDOW=12320 RES=0x00 ACK FIN URGP=0 OPT (0101080A008D385D0B1342FC)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=213.209.108.155 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=20188 DF PROTO=TCP SPT=25140 DPT=80 WINDOW=12320 RES=0x00 ACK FIN URGP=0 OPT (0101080A008DB81D0B1342FC)
SFW2-OUT-ERROR IN= OUT=eth0 SRC=192.168.2.105 DST=213.209.108.155 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=20190 DF PROTO=TCP SPT=25140 DPT=80 WINDOW=12320 RES=0x00 ACK FIN URGP=0 OPT (0101080A008E4A1D0B1342FC)
Linux video capture interface: v1.00
i2c_algo_usb: no version for "struct_module" found: kernel tainted.
i2c_algo_usb: unsupported module, tainting kernel.
usbvision: unsupported module, tainting kernel.
usbcore: registered new driver USBVision Video Grabber
/usr/src/kernel-modules/usbvision/usbvision.c: USBVISION USB Video Device Driver for Linux : 0.9.8 for Linux kernels 2.4.19-2.4.27 + 2.6.0-2.6.9, compiled at May 24 2005, 13:07:08
 
Oben