前端之家收集整理的这篇文章主要介绍了
ubuntu更新rtl8192cu驱动,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
手上有个 tplink wr823n 的 usb 无线网卡,在 windows 下工作正常,但在 linux 上的比较差,速度没有 windows 上的快,还经常掉线。这个网卡使用的芯片为 rtl8192cu ,windows 版本的驱动功能完善,在 ubuntu 15.04 上默认也带有 rtl8192cu 的驱动,但就工作得不太好。 tplink 的网站并不提供 linux 版本的驱动,而 realtek 网站上提供的 linux 驱动,针对的 linux 内核为 2.6.18~3.9 ,无法在 ubuntu 15.04 上的 3.19 kernel 上面编译和运行。 万幸的是,已有人在 github 上对驱动进行了修正,并提供简单的安装方法。项目的地址为:https://github.com/pvaret/rtl8192cu-fixes 安装起来非常简单: sudo apt-get update sudo apt-get install git linux-headers-generic build-essential dkms git clone --depth 1 https://github.com/pvaret/rtl8192cu-fixes.git sudo dkms add ./rtl8192cu-fixes sudo dkms install 8192cu/1.10 sudo depmod -a sudo cp ./rtl8192cu-fixes/blacklist-native-rtl8192.conf /etc/modprobe.d/ sudo reboot 安装完成重启后,不出意外的话,那么此时 wifi 信号应该变好了。 Ubuntu15.04中Thinkpad x240无线网卡rtl8192ee驱动的问题:http://www.linuxdiyf.com/linux/11932.html Backtrack5安装ThinkPad RTL8192ce-SE无线网卡驱动:http://www.linuxdiyf.com/linux/2748.html |
原文链接:https://www.f2er.com/ubuntu/355435.html