引用http://pub.itpub.net/post/2102/496647/
centos 5.4 x86_64 T61 無線網卡型號為 4965
1。首先確認核心是否支援
設定檔.config中查到
[root@ljh ~]# grep CONFIG_IWL4965 /boot/config-2.6.18-164.11.1.el5
CONFIG_IWL4965=y
2。再看是否有相應的模組
在網上查到4965對應的模組為iwl4965,而實際對應的模組為 iwlagn .這個在centos5.3和ubuntu9,04上都是這樣的。(這一點著實費了我好長時間)
[root@ljh ~]# lsmod | grep iw
iwlagn 134361 0
iwlcore 131397 1 iwlagn
mac80211 183113 2 iwlagn,iwlcore
cfg80211 63825 3 iwlagn,iwlcore,mac80211
[root@ljh ~]# cat /etc/modprobe.conf
alias eth0 e1000e
alias scsi_hostadapter ata_piix
alias snd-card-0 snd-hda-intel
options snd-card-0 index=0
install
snd-hda-intel /sbin/modprobe --ignore-install snd-hda-intel &&
/usr/sbin/alsactl restore >/dev/null 2>&1 || :
remove
snd-hda-intel { /usr/sbin/alsactl store >/dev/null 2>&1 || :
; }; /sbin/modprobe -r --ignore-remove snd-hda-intel
alias usb-controller ehci-hcd
alias usb-controller1 uhci-hcd
alias wlan0 iwlagn
都能看到是這個 iwlagn模組
好了,模組有了,啟動網卡
#ifconfig wlan0 up 報錯
正在決定 wlan0 的 IP 資訊...SIOCSIFFLAGS: 沒有那個檔案或目錄
SIOCSIFFLAGS: 沒有那個檔案或目錄
上網google的結果為/lib/firmware/下缺少 相應的ucode
下載該網卡的ucode
[root@ljh ~]# wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-4965-ucode-228.61.2.24.tgz
--2010-02-05 22:05:16-- http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-4965-ucode-228.61.2.24.tgz
正在解析主機 intellinuxwireless.org... 204.253.143.234
Connecting to intellinuxwireless.org|204.253.143.234|:80... 已串連。
已發出 HTTP 要求,正在等待回應... 200 OK
長度:81309 (79K) [application/x-gzip]
Saving to: `iwlwifi-4965-ucode-228.61.2.24.tgz'
100%[=====================================>] 81,309 54.7K/s in 1.5s
2010-02-05 22:05:18 (54.7 KB/s) - `iwlwifi-4965-ucode-228.61.2.24.tgz' saved [81309/81309]
[root@ljh ~]# tar xvf iwlwifi-4965-ucode-228.61.2.24.tgz
iwlwifi-4965-ucode-228.61.2.24/
iwlwifi-4965-ucode-228.61.2.24/LICENSE.iwlwifi-4965-ucode
iwlwifi-4965-ucode-228.61.2.24/README.iwlwifi-4965-ucode
iwlwifi-4965-ucode-228.61.2.24/iwlwifi-4965-2.ucode
將檔案夾下的*.ucode檔案copy到/lib/firmware下就可以 了
[root@ljh ~]# cp iwlwifi-4965-ucode-228.61.2.24/iwlwifi-4965-2.ucode /lib/firmware/
重起網卡。
ifconfig wlan0 up
這時會發現無線指示燈亮了。
下面開始設定網路。
補充:
使用NetworkManager
#start NetworkManager start
#chkconfig NetworkManager on