本機裝Linux,需要配置的無線驅動。一般Ubuntu都集成無線驅動,基本上無線可以直接使用!
01、查看無線網卡的型號
[root@Mr-zhao software]# lspci | grep -i network
03:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL 8188CE 802.11b/g/n WiFi Adapter (rev 01)
可以看到我的網卡類型為 RTL8188CE
02、RTL驅動下載:
https://github.com/lwfinger/rtlwifi_new
03、解壓包,進行編譯安裝,先要有編譯工具,不然會報錯!
root@Mr-zhao software]# yum install gcc -y //安裝gcc編譯工具
yum install kernel-devel -y
make clean ,再執行make; make install。就ok啦!
如果報錯,基本上都是kernel相關,執行系列命令即可解決!
yum install -y kernel*
04、啟動無線網卡
modprobe rtl8192ee #網卡的類型
ifconfig
參考下列:
1、在內核中配置8192ee
2、git clone https://github.com/lwfinger/rtlwifi_new.git
3、make
4、make install
5、復制到/lib/firmware/rtlwifi/rtl8192eefw.bin #或者直接啟動 modprobe rtl8192ee
參考:
http://www.linuxidc.com/Linux/2014-10/108418.htm
http://blog.chinaunix.net/uid-11581508-id-4514379.html
http://www.360doc.com/content/14/1230/22/2613145_436989190.shtml
http://tieba.baidu.com/p/3656245229
http://www.51ou.com/browse/linuxwt/58546.html