ubuntu14.04.1LTS 无线网卡rtl8192cu掉线问题解决方法
ubuntu用了有半年了,台式电脑在网上买了个usb无线网卡,win7系统支持良好,ubuntu总是过一段时间就自动掉线,以下是解决方法:首先,确定无线网卡的型号:我的无线网卡型号为 RTL8192CUsudo su rootapt-get install linux-headers-generic build-essential gitgit clone http://git
·
疯雨-版权所有,转载请注明【http://blog.csdn.net/u010346967】
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
更多推荐
已为社区贡献2条内容
所有评论(0)