Ich habe ein Thinkpad X31 mit eingebauter WLAN Karte, Debian/Sarge und einen angepassten, konfigurierten Kernel 2.6.8. Die WLAN Karte wird folgendermassen soweit erkannt:
Code: Alles auswählen
lspci -v
(...)
0000:02:02.0 Network controller: Intersil Corporation Prism 2.5 Wavelan chipset (rev 01)
Subsystem: Intel Corp. Wireless 802.11b MiniPCI Adapter
Flags: bus master, medium devsel, latency 64, IRQ 11
Memory at f0000000 (32-bit, prefetchable) [size=4K]
Capabilities: [dc] Power Management version 2
(...)
http://jrblevin.freeshell.org/linux/ipw2100/
http://dev.gentoo.org/~brix/papers/X31/X31.html
http://ipw2100.sourceforge.net/README.ipw2100
http://www.debianforum.de/wiki/?page=Wl ... DISWRAPPER
http://www.linuxforen.de/forums/showthread.php?t=172691
http://www.debianforum.de/wiki/?page=ip ... mode+++wpa
Sowie die man ifconfig und man iwconfig ueberflogen und ich bin dann folgendermassen vorgegangen:
Mit apt-get hab ich die ipw2100-sources, hotplug und die wireless-tools gezogen. Ausserdem hab ich die Firmware heruntergeladen von http://ipw2100.sourceforge.net/firmware.php. Diese hab ich entpackt und nach /usr/lib/hotplug/firmware kopiert, wie im ersten Tuto.
Dann hab ich mit...
Code: Alles auswählen
make-kpkg --append-to-version "-x31v6" --revision "001"
--added_modules ipw2100 kernel_image modules_image kernel_headers
...einen neuen Kernel mit Modul ipw2100 gebaut und konnte dieses (ipw2100) dann auch laden.
Danach hab ich meine /etc/network/interfaces folgendermassen editiert:
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
# Version: ethernetcard - router (dynamic)
auto lo inet eth0 wlan0
iface lo inet loopback
iface eth0 inet dhcp
name Ethernet LAN card
iface wlan0 inet dhcp
pre-up modprobe ipw2100 ifname=wlan0
post-down rmmod ipw2100
# mit "/etc/init.d/network restart" die Konfiguration neu einladen
Code: Alles auswählen
drops how-2s # /etc/init.d/networking restart
Setting up IP spoofing protection: rp_filter.
Reconfiguring network interfaces...ifup: interface lo already configured
Ignoring unknown interface inet=inet.
Internet Software Consortium DHCP Client 2.0pl5
Copyright 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium.
All rights reserved.
Please contribute if you find this software useful.
For info, please visit http://www.isc.org/dhcp-contrib.html
Listening on LPF/eth0/00:09:6b:2d:7a:94
Sending on LPF/eth0/00:09:6b:2d:7a:94
Sending on Socket/fallback/fallback-net
DHCPREQUEST on eth0 to 255.255.255.255 port 67
DHCPACK from 192.168.2.1
bound to 192.168.2.32 -- renewal in 172800 seconds.
Internet Software Consortium DHCP Client 2.0pl5
Copyright 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium.
All rights reserved.
Please contribute if you find this software useful.
For info, please visit http://www.isc.org/dhcp-contrib.html
wlan0: ERROR while getting interface flags: No such device
Bind socket to interface: No such device
exiting.
Failed to bring up wlan0.
done.
Code: Alles auswählen
drops how-2s # iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
drops how-2s # ifconfig
eth0 Link encap:Ethernet HWaddr 00:09:6B:2D:7A:94
inet addr:192.168.2.32 Bcast:192.168.2.255 Mask:255.255.255.0
UP BROADCAST RUNNING ALLMULTI MULTICAST MTU:1500 Metric:1
RX packets:1035 errors:0 dropped:0 overruns:0 frame:0
TX packets:1207 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:868583 (848.2 KiB) TX bytes:164315 (160.4 KiB)
Interrupt:11 Base address:0x1000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:24 errors:0 dropped:0 overruns:0 frame:0
TX packets:24 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:1888 (1.8 KiB) TX bytes:1888 (1.8 KiB)
Warum wird meine WLAN Karte jetz nicht erkannt?
Wie bringe ich mein WLAN jetzt zum laufen?