红联Linux门户
Linux帮助

ubuntu14.04.1LTS无线网卡rtl8192cu掉线问题解决方法

发布时间:2015-12-25 15:23:55来源:linux网站作者:疯雨

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


Linux使用ADSL上网时经常掉线:http://www.linuxdiyf.com/linux/8368.html

Xshell用ssh连接Ubuntu掉线解决方法:http://www.linuxdiyf.com/linux/1392.html