Originally posted by: Nothinman
It'll take more than that. If indeed it is a Centrino wireless card he'll have to go to the ipw2200 webpage and download the firmware for his card, at least.
1) download drivers and firmware packages from the project site
2) unpack firmware package, and copy contents to /usr/lib/hotplug/firmware/
(3+4 may not be required if you have already set these items up)
3) compile the following options into your kernel (I used modules where possible):
a)
Code:
Device Drivers ->
Generic Driver Options ->
<M> Hotplug firmware loading support
b)
Code:
Device Drivers ->
Networking support ->
Wireless LAN (non-hamradio) ->
[*] Wireless LAN drivers (non-hamradio) & Wireless Extensions
c)
Code:
Cryptographic options ->
<M> ARC4 cipher algorithm
<M> Michael MIC keyed digest algorithm
<M> CRC32c CRC algorithm
4) Reboot into your new kernel
5) unpack and make; make install the ipw2200 driver package
6) modprobe ipw2200
7) modprobe ieee80211_crypt_wep (this module is required for WEP encryption, but doesn't currently get loaded automatically)
8) iwconfig should now show the card as eth1 (assuming you have an eth0 configured). The driver does not support interface naming, so it won't appear as wlan0. Configure your wireless settings with
a) iwconfig eth1 essid <YOUR ESSID>
b) iwconfig eth1 key open <YOUR WEP KEY>
9) make sure that eth1 is correctly configured for your network in /etc/conf.d/net
10) /etc/init.d/net.eth1 start (if this reports net.eth1 not found, ln -s /etc/init.d/net.eth0 /etc/init.d/net.eth1)
11) Use wireless networking...