1. 程式人生 > >ubuntu14.04.1LTS 無線網絡卡rtl8192cu掉線問題解決方法

ubuntu14.04.1LTS 無線網絡卡rtl8192cu掉線問題解決方法

ubuntu用了有半年了,臺式電腦在網上買了個usb無線網絡卡,

win7系統支援良好,ubuntu總是過一段時間就自動掉線,以下是解決方法:

1. 首先,確定無線網絡卡的型號:我的無線網絡卡型號為 RTL8192CU。

2. 編譯生成8192cu.ko驅動模組

sudo su root

apt-get install linux-headers-generic build-essential git

git clone http://github.com/lwfinger/rtl8192cu

cd rtl8192cu

make

make install

modprobe rtl8192cu

modprobe -r rtl8192cu

modprobe rtl8192cu

3. 使驅動模組開機自啟動。

sudo su root
vim /etc/rc.local
在exit 0 前面新增如下程式碼:cd 命令後的目錄根據實際情況進行修改
 cd /home/xjg/rtl8192cu
 insmod 8192cu.ko