Wlan Karte beim Start laden

Einrichten des lokalen Netzes, Verbindung zu anderen Computern und Diensten.
trinity
Beiträge: 44
Registriert: 22.11.2005 16:11:23
Wohnort: /dev/null

Wlan Karte beim Start laden

Beitrag von trinity » 02.12.2005 21:31:59

Hi

Habe meine Karte nun eingerichtet bekommen, wie bekomme ich es hin das ich nicht jedesmal ifup wlan0 eingeben muss?

Benutzeravatar
benebeck
Beiträge: 431
Registriert: 14.10.2003 15:37:48
Wohnort: Giessen

Beitrag von benebeck » 02.12.2005 21:37:09

Hallo,

du musst den Treiber der Wlan-Karte in /etc/modules eintragen.

mfg benebeck
The Flying Spaghetti Monster - Touched by His noodly appendage

trinity
Beiträge: 44
Registriert: 22.11.2005 16:11:23
Wohnort: /dev/null

Beitrag von trinity » 02.12.2005 21:45:31

öhm, aber woher weis ich wie genau der heißt?

Benutzeravatar
benebeck
Beiträge: 431
Registriert: 14.10.2003 15:37:48
Wohnort: Giessen

Beitrag von benebeck » 02.12.2005 21:51:43

tja, wie Dein Treiber heisst, weiss ich auch nicht !

Benutzt du ndiswrapper? dann musst du ndiswrapper in die /etc/modules schreiben. Eigentlich musst du nen Treiber für die Karte haben, wenn du sie mit ifup starten kannst.

mfg benebeck
The Flying Spaghetti Monster - Touched by His noodly appendage

trinity
Beiträge: 44
Registriert: 22.11.2005 16:11:23
Wohnort: /dev/null

Beitrag von trinity » 02.12.2005 21:54:54

Ja dann ist es linux-wlan-ng


Gut dann teste ich das mal

trinity
Beiträge: 44
Registriert: 22.11.2005 16:11:23
Wohnort: /dev/null

Beitrag von trinity » 02.12.2005 22:13:56

klappt nicht, es sind alle module geladen die auch nach ifup wlan0 geladen sind, klappt nicht

Benutzeravatar
benebeck
Beiträge: 431
Registriert: 14.10.2003 15:37:48
Wohnort: Giessen

Beitrag von benebeck » 02.12.2005 22:18:20

Kannst Du denn mit ifup wlan0 sonst die Karte zum laufen bringen?
The Flying Spaghetti Monster - Touched by His noodly appendage

trinity
Beiträge: 44
Registriert: 22.11.2005 16:11:23
Wohnort: /dev/null

Beitrag von trinity » 02.12.2005 22:19:51

wie sonnst? nur damit

Benutzeravatar
Baer
Beiträge: 373
Registriert: 08.09.2004 17:09:13
Wohnort: Zürich

Beitrag von Baer » 02.12.2005 22:26:07

hallo
ist in /etc/network/interfaces auto wlan0 eingetragen? Müsste in der ersten Zeile, noch vor iface wlan0 inet dhcp stehen.Gruss urs

trinity
Beiträge: 44
Registriert: 22.11.2005 16:11:23
Wohnort: /dev/null

Beitrag von trinity » 02.12.2005 22:29:37

Jup

Code: Alles auswählen

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet dhcp

auto wlan0
iface wlan0 inet dhcp
wireless_mode managed
wireless_essid flolo
wireless_channel 11

Benutzeravatar
benebeck
Beiträge: 431
Registriert: 14.10.2003 15:37:48
Wohnort: Giessen

Beitrag von benebeck » 02.12.2005 23:17:06

hmm, ich kann keinen Fehler entdecken. Eigentlich dürfte es nach meinem Wissen keinen Unterschied geben, ob du ifup wlan0 per Hand machst oder es beim booten geschieht.
Wenn Du den Befehl per Hand eingibst klappt auch alles? Internet / Verbindung zum Router / etc?
The Flying Spaghetti Monster - Touched by His noodly appendage

Benutzeravatar
benebeck
Beiträge: 431
Registriert: 14.10.2003 15:37:48
Wohnort: Giessen

Beitrag von benebeck » 02.12.2005 23:18:21

Edit: Ach ja: versucht sich die Karte denn beim booten einzuwählen oder passiert da gar nix?
The Flying Spaghetti Monster - Touched by His noodly appendage

trinity
Beiträge: 44
Registriert: 22.11.2005 16:11:23
Wohnort: /dev/null

Beitrag von trinity » 02.12.2005 23:23:45

hmm, ich kann keinen Fehler entdecken. Eigentlich dürfte es nach meinem Wissen keinen Unterschied geben, ob du ifup wlan0 per Hand machst oder es beim booten geschieht.
Wenn Du den Befehl per Hand eingibst klappt auch alles? Internet / Verbindung zum Router / etc?
Ja klappt alles wenn ich es per hand mache
Edit: Ach ja: versucht sich die Karte denn beim booten einzuwählen oder passiert da gar nix?
soweit ich das sehe gar nix

Benutzeravatar
benebeck
Beiträge: 431
Registriert: 14.10.2003 15:37:48
Wohnort: Giessen

Beitrag von benebeck » 02.12.2005 23:29:58

vielleicht liefert ja dmesg was

Code: Alles auswählen

dmesg |less
oder

Code: Alles auswählen

dmesg |grep linux-wlan-ng
Edit: Während ich so surfe sehe ich was nettes:
http://www.debianforum.de/forum/viewtop ... fdb6a7d485
Ist zwar nur ein Schuss ins Blaue, aber ergänze doch Deine /etc/network/interfaces mal um ein:

Code: Alles auswählen

pre-up /sbin/modprobe Dein_Treiber
mfg benebeck
The Flying Spaghetti Monster - Touched by His noodly appendage

trinity
Beiträge: 44
Registriert: 22.11.2005 16:11:23
Wohnort: /dev/null

Beitrag von trinity » 02.12.2005 23:35:16

Code: Alles auswählen

debian:/home/flo# dmesg |grep linux-wlan-ng
debian:/home/flo# demsg
bash: demsg: command not found
debian:/home/flo# dmesg
Linux version 2.6.14-2-686 (Debian 2.6.14-4) (fs@debian.org) (gcc version 4.0.3 20051111 (prerelease) (Debian 4.0.2-4)) #1 Sat Nov 26 13:10:11 UTC 2005
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
 BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000d8000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000001bf70000 (usable)
 BIOS-e820: 000000001bf70000 - 000000001bf7a000 (ACPI data)
 BIOS-e820: 000000001bf7a000 - 000000001bf80000 (ACPI NVS)
 BIOS-e820: 000000001bf80000 - 0000000020000000 (reserved)
 BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved)
0MB HIGHMEM available.
447MB LOWMEM available.
found SMP MP-table at 000f6910
On node 0 totalpages: 114544
  DMA zone: 4096 pages, LIFO batch:1
  Normal zone: 110448 pages, LIFO batch:31
  HighMem zone: 0 pages, LIFO batch:1
DMI 2.3 present.
ACPI: RSDP (v000 PTLTD                                 ) @ 0x000f6a60
ACPI: RSDT (v001 PTLTD    RSDT   0x06040000  LTP 0x00000000) @ 0x1bf73fff
ACPI: FADT (v002 AMDK8  PTLTW    0x06040000 PTL_ 0x000f4240) @ 0x1bf79e77
ACPI: SSDT (v001 PTLTD  POWERNOW 0x06040000  LTP 0x00000001) @ 0x1bf79efb
ACPI: MADT (v001 PTLTD           APIC   0x06040000  LTP 0x00000000) @ 0x1bf79fb0ACPI: DSDT (v001  VIA   PTL_ACPI 0x06040000 MSFT 0x0100000e) @ 0x00000000
ACPI: PM-Timer IO Port: 0x4008
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Processor #0 15:8 APIC version 16
ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 1, version 3, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Enabling APIC mode:  Flat.  Using 1 I/O APICs
Using ACPI (MADT) for SMP configuration information
Allocating PCI resources starting at 30000000 (gap: 20000000:dffe0000)
Built 1 zonelists
Kernel command line: root=/dev/hda6 ro
mapped APIC to ffffd000 (fee00000)
mapped IOAPIC to ffffc000 (fec00000)
Initializing CPU#0
PID hash table entries: 2048 (order: 11, 32768 bytes)
Detected 1601.053 MHz processor.
Using pmtmr for high-res timesource
Console: colour VGA+ 80x25
Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
Memory: 449460k/458176k available (1875k kernel code, 8076k reserved, 536k data, 180k init, 0k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Calibrating delay using timer specific routine.. 3204.09 BogoMIPS (lpj=1602047)
Security Framework v1.0.0 initialized
SELinux:  Disabled at boot.
Capability LSM initialized
Mount-cache hash table entries: 512
CPU: After generic identify, caps: 078bfbff c1d3fbff 00000000 00000000 00000000 00000000 00000000
CPU: After vendor identify, caps: 078bfbff c1d3fbff 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: 078bfbff c1d3fbff 00000000 00000010 00000000 00000000 00000000
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
mtrr: v2.0 (20020519)
CPU: AMD Mobile AMD Sempron(tm) Processor 2800+ stepping 02
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
ENABLING IO-APIC IRQs
..TIMER: vector=0x31 pin1=2 pin2=-1
checking if image is initramfs... it is
Freeing initrd memory: 1198k freed
softlockup thread 0 started up.
NET: Registered protocol family 16
ACPI: bus type pci registered
PCI: PCI BIOS revision 2.10 entry at 0xfd557, last bus=1
PCI: Using configuration type 1
ACPI: Subsystem revision 20050902
ACPI: Interpreter enabled
ACPI: Using IOAPIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (0000:00)
PCI: Probing PCI hardware (bus 00)
PCI quirk: region 4000-407f claimed by vt8235 PM
PCI quirk: region 8100-810f claimed by vt8235 SMB
Boot video device is 0000:01:00.0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Link [ALKA] (IRQs 16 17 18 19 20 21 22 23) *10, disabled.
ACPI: PCI Interrupt Link [ALKB] (IRQs 16 17 18 19 20 21 22 23) *10, disabled.
ACPI: PCI Interrupt Link [ALKC] (IRQs 22) *11, disabled.
ACPI: PCI Interrupt Link [ALKD] (IRQs 21) *11, disabled.
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 12 14 15) *10
ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 *10 12 14 15)
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12 14 15)
ACPI: Embedded Controller [EC] (gpe 11)
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
pnp: PnP ACPI: found 8 devices
PnPBIOS: Disabled by ACPI PNP
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try "pci=routeirq".  If it helps, post a report
pnp: 00:05: ioport range 0x600-0x60f has been reserved
pnp: 00:05: ioport range 0x1c0-0x1cf has been reserved
pnp: 00:05: ioport range 0x4d0-0x4d1 has been reserved
pnp: 00:05: ioport range 0xfe10-0xfe11 could not be reserved
PCI: Failed to allocate mem resource #6:10000@f4000000 for 0000:01:00.0
PCI: Bridge: 0000:00:01.0
  IO window: disabled.
  MEM window: d1000000-d1ffffff
  PREFETCH window: f0000000-f3ffffff
PCI: Bus 2, cardbus bridge: 0000:00:0b.0
  IO window: 00002000-000020ff
  IO window: 00002400-000024ff
  PREFETCH window: 30000000-31ffffff
  MEM window: 32000000-33ffffff
PCI: Bus 6, cardbus bridge: 0000:00:0b.1
  IO window: 00002800-000028ff
  IO window: 00002c00-00002cff
  PREFETCH window: 34000000-35ffffff
  MEM window: 36000000-37ffffff
PCI: Setting latency timer of device 0000:00:01.0 to 64
ACPI: PCI Interrupt 0000:00:0b.0[A] -> GSI 17 (level, low) -> IRQ 169
PCI: Setting latency timer of device 0000:00:0b.0 to 64
PCI: Enabling device 0000:00:0b.1 (0000 -> 0003)
ACPI: PCI Interrupt 0000:00:0b.1[B] -> GSI 18 (level, low) -> IRQ 177
PCI: Setting latency timer of device 0000:00:0b.1 to 64
audit: initializing netlink socket (disabled)
audit(1133561134.568:1): initialized
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Initializing Cryptographic API
isapnp: Scanning for PnP cards...
isapnp: No Plug & Play device found
PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
i8042.c: Detected active multiplexing controller, rev 1.1.
serio: i8042 AUX0 port at 0x60,0x64 irq 12
serio: i8042 AUX1 port at 0x60,0x64 irq 12
serio: i8042 AUX2 port at 0x60,0x64 irq 12
serio: i8042 AUX3 port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered
RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize
NET: Registered protocol family 2
IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
TCP established hash table entries: 16384 (order: 4, 65536 bytes)
TCP bind hash table entries: 16384 (order: 4, 65536 bytes)
TCP: Hash tables configured (established 16384 bind 16384)
TCP reno registered
TCP bic registered
NET: Registered protocol family 1
NET: Registered protocol family 17
NET: Registered protocol family 8
NET: Registered protocol family 20
Using IPI Shortcut mode
ACPI wakeup devices:
PCI0 Z007 ILAN  LID SLPB
ACPI: (supports S0 S3 S4 S5)
Freeing unused kernel memory: 180k freed
mice: PS/2 mouse device common for all mice
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:11.1
ACPI: PCI Interrupt 0000:00:11.1[A]: no GSI
VP_IDE: chipset revision 6
VP_IDE: not 100% native mode: will probe irqs later
VP_IDE: VIA vt8235 (rev 00) IDE UDMA133 controller on pci0000:00:11.1
    ide0: BM-DMA at 0x1c60-0x1c67, BIOS settings: hda:DMA, hdb:pio
    ide1: BM-DMA at 0x1c68-0x1c6f, BIOS settings: hdc:DMA, hdd:pio
Probing IDE interface ide0...
input: AT Translated Set 2 keyboard on isa0060/serio0
hda: HTS424040M9AT00, ATA DISK drive
Synaptics Touchpad, model: 1, fw: 5.8, id: 0x9248b1, caps: 0x904713/0x4000
input: SynPS/2 Synaptics TouchPad on isa0060/serio4
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Probing IDE interface ide1...
hdc: UJDA760 DVD/CDRW, ATAPI CD/DVD-ROM drive
ide1 at 0x170-0x177,0x376 on irq 15
hda: max request size: 1024KiB
hda: 78140160 sectors (40007 MB) w/1739KiB Cache, CHS=16383/255/63, UDMA(100)
hda: cache flushes supported
 hda: hda1 hda2 hda3 < hda5 hda6 >
SGI XFS with ACLs, security attributes, realtime, large block numbers, no debug enabled
SGI XFS Quota Management subsystem
XFS mounting filesystem hda6
Ending clean XFS mount for filesystem: hda6
input: PC Speaker
Real Time Clock Driver v1.12
ieee1394: Initialized config rom entry `ip1394'
ohci1394: $Rev: 1313 $ Ben Collins <bcollins@debian.org>
ACPI: PCI Interrupt 0000:00:0b.2[C] -> GSI 19 (level, low) -> IRQ 185
ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[185]  MMIO=[d0005000-d00057ff]  Max Packet=[2048]
ACPI: PCI Interrupt 0000:00:0b.0[A] -> GSI 17 (level, low) -> IRQ 169
Yenta: CardBus bridge found at 0000:00:0b.0 [1025:006e]
Yenta: Using CSCINT to route CSC interrupts to PCI
Yenta: Routing CardBus interrupts to PCI
Yenta TI: socket 0000:00:0b.0, mfunc 0x010a1b22, devctl 0x64
Linux agpgart interface v0.101 (c) Dave Jones
agpgart: Detected AGP bridge 0
agpgart: AGP aperture is 256M @ 0xe0000000
irda_init()
NET: Registered protocol family 23
usbcore: registered new driver usbfs
usbcore: registered new driver hub
Yenta: ISA IRQ mask 0x0cf8, PCI irq 169
Socket status: 30000410
ACPI: PCI Interrupt 0000:00:0b.1[B] -> GSI 18 (level, low) -> IRQ 177
Yenta: CardBus bridge found at 0000:00:0b.1 [1025:006e]
Yenta: Using CSCINT to route CSC interrupts to PCI
Yenta: Routing CardBus interrupts to PCI
Yenta TI: socket 0000:00:0b.1, mfunc 0x010a1b22, devctl 0x64
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
hdc: ATAPI 24X DVD-ROM CD-R/RW drive, 2048kB Cache, UDMA(33)
Uniform CD-ROM driver Revision: 3.20
via-rhine.c:v1.10-LK1.2.0-2.6 June-10-2004 Written by Donald Becker
USB Universal Host Controller Interface driver v2.3
Yenta: ISA IRQ mask 0x0cf8, PCI irq 177
Socket status: 30000086
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
ACPI: PCI Interrupt 0000:00:12.0[A] -> GSI 23 (level, low) -> IRQ 193
PCI: Via IRQ fixup for 0000:00:12.0, from 10 to 1
ACPI: PCI Interrupt 0000:00:10.0[A] -> GSI 21 (level, low) -> IRQ 201
PCI: Via IRQ fixup for 0000:00:10.0, from 0 to 9
uhci_hcd 0000:00:10.0: UHCI Host Controller
eth0: VIA Rhine II at 0x11800, 00:0a:e4:5f:9c:20, IRQ 193.
eth0: MII PHY found at address 1, status 0x7849 advertising 05e1 Link 0000.
uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 1
uhci_hcd 0000:00:10.0: irq 201, io base 0x00001c00
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 2 ports detected
ACPI: PCI Interrupt 0000:00:10.1[B] -> GSI 21 (level, low) -> IRQ 201
PCI: Via IRQ fixup for 0000:00:10.1, from 0 to 9
uhci_hcd 0000:00:10.1: UHCI Host Controller
uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 2
uhci_hcd 0000:00:10.1: irq 201, io base 0x00001c20
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
ACPI: PCI Interrupt 0000:00:10.2[C] -> GSI 21 (level, low) -> IRQ 201
PCI: Via IRQ fixup for 0000:00:10.2, from 0 to 9
uhci_hcd 0000:00:10.2: UHCI Host Controller
uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 3
uhci_hcd 0000:00:10.2: irq 201, io base 0x00001c40
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
usb 1-1: new low speed USB device using uhci_hcd and address 2
ACPI: PCI Interrupt 0000:00:10.3[D] -> GSI 21 (level, low) -> IRQ 201
PCI: Via IRQ fixup for 0000:00:10.3, from 0 to 9
ehci_hcd 0000:00:10.3: EHCI Host Controller
ehci_hcd 0000:00:10.3: new USB bus registered, assigned bus number 4
ehci_hcd 0000:00:10.3: irq 201, io mem 0xd0005800
ehci_hcd 0000:00:10.3: USB 2.0 initialized, EHCI 1.00, driver 10 Dec 2004
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 6 ports detected
ACPI: PCI Interrupt 0000:00:11.6[C] -> GSI 22 (level, low) -> IRQ 209
PCI: Via IRQ fixup for 0000:00:11.6, from 11 to 1
ACPI: PCI Interrupt 0000:00:11.5[C] -> GSI 22 (level, low) -> IRQ 209
PCI: Via IRQ fixup for 0000:00:11.5, from 11 to 1
PCI: Setting latency timer of device 0000:00:11.5 to 64
PCI: Setting latency timer of device 0000:00:11.6 to 64
ieee1394: Host added: ID:BUS[0-00:1023]  GUID[000ae404451004db]
eth1394: $Rev: 1312 $ Ben Collins <bcollins@debian.org>
eth1394: eth1: IEEE-1394 IPv4 over 1394 Ethernet (fw-host0)
usb 1-1: new low speed USB device using uhci_hcd and address 3
usbcore: registered new driver hiddev
input: USB HID v1.10 Mouse [Logitech Optical USB Mouse] on usb-0000:00:10.0-1
usbcore: registered new driver usbhid
drivers/usb/input/hid-core.c: v2.6:USB HID core driver
Adding 674688k swap on /dev/hda5.  Priority:-1 extents:1 across:674688k
ieee80211_crypt: registered algorithm 'NULL'
prism2cs_init: prism2_cs.o: 0.2.2 Loaded
prism2cs_init: dev_info is: prism2_cs
pcmcia: Detected deprecated PCMCIA ioctl usage.
pcmcia: This interface will soon be removed from the kernel; please expect breakage unless you upgrade to new tools.
pcmcia: see http://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html for details.
cs: warning: no high memory space available!
cs: unable to map card memory!
cs: unable to map card memory!
eth0: link down
cs: IO port probe 0x100-0x4ff: clean.
cs: IO port probe 0x100-0x4ff: clean.
cs: IO port probe 0x800-0x8ff: clean.
cs: IO port probe 0x800-0x8ff: clean.
cs: IO port probe 0xc00-0xcff: clean.
cs: IO port probe 0xc00-0xcff: clean.
cs: IO port probe 0xa00-0xaff: clean.
cs: IO port probe 0xa00-0xaff: clean.
prism2_cs: index 0x01: Vcc 5.0, irq 3, io 0x0100-0x013f
hostap_cs: 0.4.4-kernel (Jouni Malinen <jkmaline@cc.hut.fi>)
ident: nic h/w: id=0x800c 1.0.0
ident: pri f/w: id=0x15 1.0.7
ident: sta f/w: id=0x1f 1.3.5
MFI:SUP:role=0x00:id=0x01:var=0x01:b/t=1/1
CFI:SUP:role=0x00:id=0x02:var=0x02:b/t=1/1
PRI:SUP:role=0x00:id=0x03:var=0x01:b/t=4/4
STA:SUP:role=0x00:id=0x04:var=0x01:b/t=1/9
PRI-CFI:ACT:role=0x01:id=0x02:var=0x02:b/t=1/1
STA-CFI:ACT:role=0x01:id=0x02:var=0x02:b/t=1/1
STA-MFI:ACT:role=0x01:id=0x01:var=0x01:b/t=1/1
Prism2 card SN: 99SA01000000
linkstatus=CONNECTED
ACPI: Battery Slot [BAT0] (battery present)
ACPI: AC Adapter [AC] (on-line)
ACPI: CPU0 (power states: C1[C1])
ACPI: Power Button (FF) [PWRF]
ACPI: Lid Switch [LID]
ACPI: Sleep Button (CM) [SLPB]
ACPI: Thermal Zone [THRS] (50 C)
ACPI: Thermal Zone [THRC] (58 C)
NET: Registered protocol family 10
Disabled Privacy Extensions on device c0328b40(lo)
IPv6 over IPv4 tunneling driver
eth0: no IPv6 routers present
linkstatus=DISCONNECTED (unhandled)
linkstatus=CONNECTED
wlan0: no IPv6 routers present

Benutzeravatar
benebeck
Beiträge: 431
Registriert: 14.10.2003 15:37:48
Wohnort: Giessen

Beitrag von benebeck » 02.12.2005 23:42:46

Also ich habe den ndiswrapper als Treiber und der wird beim booten geladen, d.h. ich sehe in bei "dmesg". Bist Du Dir sicher mit der Bezeichnung "linux-wlan-ng"? Der Treiber müsste bei einem

Code: Alles auswählen

lsmod
zu sehen sein


Bei so langen Auszügen aus ner Datei, benutze in Zukunft bitte die nopaste-Sektion des Forums, sonst meckern die Admins :wink:

mfg benebeck
The Flying Spaghetti Monster - Touched by His noodly appendage

trinity
Beiträge: 44
Registriert: 22.11.2005 16:11:23
Wohnort: /dev/null

Beitrag von trinity » 02.12.2005 23:45:06

Code: Alles auswählen

ipv6                  267488  6
thermal                13352  0
fan                     4580  0
button                  6448  0
processor              22684  1 thermal
ac                      4676  0
battery                 9412  0
hostap_cs              66136  0
hostap                124068  1 hostap_cs
ext2                   71720  1
mbcache                 9316  1 ext2
prism2_cs            84424  1
p80211               33200  2 prism2_cs
pcmcia                 40732  6 hostap_cs,prism2_cs
firmware_class         10528  1 pcmcia
ieee80211_crypt        5252  1 hostap
usbhid                 38880  0
via82cxxx_audio        29608  0
uart401                11332  1 via82cxxx_audio
sound                  80332  2 via82cxxx_audio,uart401
ac97_codec             20108  1 via82cxxx_audio
eth1394                20488  0
i2c_viapro              8112  0
joydev                  9920  0
i2c_core               22128  1 i2c_viapro
snd_via82xx            29952  1
gameport               15048  1 snd_via82xx
snd_mpu401_uart         7328  1 snd_via82xx
snd_via82xx_modem      16228  0
ehci_hcd               35816  0
uhci_hcd               33296  0
via_ircc               31348  0
via_rhine              23620  0
snd_ac97_codec         98684  2 snd_via82xx,snd_via82xx_modem
snd_ac97_bus            2144  1 snd_ac97_codec
ide_cd                 43588  0
cdrom                  40928  1 ide_cd
shpchp                 99492  0
pci_hotplug            28628  1 shpchp
snd_rawmidi            24896  1 snd_mpu401_uart
snd_seq_device          8748  1 snd_rawmidi
usbcore               127680  4 usbhid,ehci_hcd,uhci_hcd
irda                  200700  1 via_ircc
mii                     5568  1 via_rhine
amd64_agp              12840  1
agpgart                35720  1 amd64_agp
yenta_socket           28332  6
rsrc_nonstatic         14208  1 yenta_socket
pcmcia_core            43120  3 pcmcia,yenta_socket,rsrc_nonstatic
ohci1394               35892  0
ieee1394              102648  2 eth1394,ohci1394
snd_pcm                92392  3 snd_via82xx,snd_via82xx_modem,snd_ac97_codec
snd_timer              24708  1 snd_pcm
snd_page_alloc         10952  3 snd_via82xx,snd_via82xx_modem,snd_pcm
serio_raw               7172  0
snd                    55940  10 snd_via82xx,snd_mpu401_uart,snd_via82xx_modem,snd_ac97_codec,snd_rawmidi,snd_seq_device,snd_pcm,snd_timer
soundcore               9792  3 via82cxxx_audio,sound,snd
crc_ccitt               1984  1 irda
rtc                    12600  0
pcspkr                  3392  0
xfs                   631512  1
exportfs                5760  1 xfs
ide_disk               18784  4
ide_generic             1216  0 [permanent]
generic                 4356  0 [permanent]
via82cxxx              13980  0 [permanent]
ide_core              131740  5 ide_cd,ide_disk,ide_generic,generic,via82cxxx
evdev                   9600  0
mousedev               11584  1
psmouse   

prism2 ist der treiber, aber den hab ich auch in /etc/modules drin

Benutzeravatar
benebeck
Beiträge: 431
Registriert: 14.10.2003 15:37:48
Wohnort: Giessen

Beitrag von benebeck » 02.12.2005 23:46:47

Junge, Junge, das ist aber auch ne schwere Geburt.

Code: Alles auswählen

modprobe linux-wlan-ng
klappt das?
The Flying Spaghetti Monster - Touched by His noodly appendage

Benutzeravatar
benebeck
Beiträge: 431
Registriert: 14.10.2003 15:37:48
Wohnort: Giessen

Beitrag von benebeck » 02.12.2005 23:47:48

ok, also prism2

Code: Alles auswählen

dmesg |grep prism*
The Flying Spaghetti Monster - Touched by His noodly appendage

trinity
Beiträge: 44
Registriert: 22.11.2005 16:11:23
Wohnort: /dev/null

Beitrag von trinity » 02.12.2005 23:48:57

nein das modul wird nicht gefunden


die treiber habe ich mit apt-get install linux wlan-ng-installiert da stand auch noch irgentwas mit kernelmodulen, kann es seindas ich die extra installieren muss


EDIT: Sind installiert
Zuletzt geändert von trinity am 02.12.2005 23:51:28, insgesamt 1-mal geändert.

Benutzeravatar
benebeck
Beiträge: 431
Registriert: 14.10.2003 15:37:48
Wohnort: Giessen

Beitrag von benebeck » 02.12.2005 23:50:59

Sieht so aus.
Du kannst mit

Code: Alles auswählen

modconf
recht bequem Treiber einbinden.
Ansonsten ist der Befehl

Code: Alles auswählen

modprobe Treibername
mfg benebeck
The Flying Spaghetti Monster - Touched by His noodly appendage

trinity
Beiträge: 44
Registriert: 22.11.2005 16:11:23
Wohnort: /dev/null

Beitrag von trinity » 02.12.2005 23:52:37

die sind schon installiert, dran kann es nicht liegen


Ja aber dazu müsste ich den Treibernahmen kennen

Benutzeravatar
benebeck
Beiträge: 431
Registriert: 14.10.2003 15:37:48
Wohnort: Giessen

Beitrag von benebeck » 02.12.2005 23:57:49

Hast Du mal die Zeile in Deine /etc/network/interfaces eingetragen?
Ich muss zugeben, mir gehen langsam die Ideen aus :?
The Flying Spaghetti Monster - Touched by His noodly appendage

Benutzeravatar
benebeck
Beiträge: 431
Registriert: 14.10.2003 15:37:48
Wohnort: Giessen

Beitrag von benebeck » 03.12.2005 00:02:33

:oops: Mir fällt auch gerade mal auf, dass die Sache mit dem Treiber eh quatsch ist, da Du ja ins Internet kannst und laut Deiner dmesg wird er ja auch geladen. Es kann also nur daran liegen, dass der "ifup"-Befehl während des bootens nicht ausgeführt wird, oder ähnliches.
Da bleibt dir wohl nur manpages lesen und rumprobieren. Es sei denn, irgendjemand hat noch nen Einfall. Ich wünsche auf jeden Fall viel Erfolg!

mfg benebeck
The Flying Spaghetti Monster - Touched by His noodly appendage

trinity
Beiträge: 44
Registriert: 22.11.2005 16:11:23
Wohnort: /dev/null

Beitrag von trinity » 03.12.2005 00:09:41

Ja Danke für deine bemühungen, mal schauen, irgentwan klappt das schon, war bei gentoo am anfang auch so, da hat auch nix funktioniert.

Nur ist bei Debian, ja alles wo anders konfiguriert, und das init system ist auch anders.

Antworten