Ubuntu12.0安裝4戴爾D620無線網卡驅動 這兩天在一台老本上裝了Ubuntu12.04,發現無線網卡不能用,Google、度娘找不到驅動,卻發現一種linux安裝無線網卡的通用方法,通過ndiswrapper在linux平台上虛擬windows的api,然後用windows下的驅動程式來驅動網卡。 網上介紹這種方法的文章很多,折騰了N久,終於成功啦,現在記錄一下安裝過程。 一、準備工作 1.下載最新的ndiswrapper包,http://sourceforge.net/projects/ndiswrapper,我下載的是ndiswrapper-1.58rcl.tar.gz 2.準備好無線網卡的win驅動程式,找到相應的inf和sys檔案。我這裡是bcmwl5.inf、bcmwl5.sys(支援xp)。註:如果驅動程式是exe或者cab格式,用zip或cabextract工具解開,找到相應的檔案。 二、安裝ndiswrapper 1.解壓安裝包 tar zxvf ndiswrapper-1.58rcl.tar.gz 2.進入解壓後的檔案夾 cd ndiswrapper-1.58rcl 3.編譯 make 4.安裝 make install 三、安裝無線網卡驅動 1.進入驅動所在目錄,即bcmwl5.inf和bcmwl5.sys所在目錄 ndiswrapper –I bcmwl5.inf 2.查看驅動是否安裝 ndiswrapper –l 3.寫入設定檔 ndiswrapper –m ndiswrapper –ma ndiswrapper –mi 4.載入模組 modprobe ndiswrapper 註:如果遇到“FATAL: Module ndiswrapper notfound”, http://sourceforge.net/projects/ndiswrapper/ Download ndiswrapper and then make ->make install Last reboot your computer,you will see Wireless LED blinking.You secess! congratulation! 四、重啟,就可以用無線網啦。