使用内核 3.5.0-21 时,无线网卡 Realtek RTL8723AE-BT 停止工作

使用内核 3.5.0-21 时,无线网卡 Realtek RTL8723AE-BT 停止工作

昨天,我将 Ubuntu 12.04 更新到内核 3.5.0-21,无线网卡停止工作... 在其他线程中,我看到其他内核也存在同样的问题。有人有新的驱动程序吗?我给 Realtek 发了一封邮件,但还没有收到答复...

型号为:Realtek RTL8723AE 无线局域网 802.11n PCI-E NIC

谢谢

答案1

我假设您通过下载并编译 Realtek 软件包安装了驱动程序。当 Update Manager 安装新内核时,您必须重新编译:

cd Desktop/RT8723  <--or wherever you compiled the package
sudo su
make clean
make
make install
modprobe rtl8723e
exit

哎呀!对我来说也是错误的。您可以尝试这个包:http://www.kernel.org/pub/linux/kernel/projects/backports/2012/12/04/compat-drivers-2012-12-04.tar.gz

./scripts/driver select rtlwifi
make
sudo make install
sudo modprobe rtl8723ae

您之所以“make clean”,是因为该模块最初是根据您的特定版本的内核、头文件、gcc 等进行编译的。当安装更新时,编译过程中构建的各种文件可能会或可能不会与较新的 gcc 版本正常工作,因此请将其全部清除并重新开始:make clean。

相关内容