更新:从utopic 14.10开始,默认情况下包含一个半工作驱动程序,但该驱动程序经常断开连接并且很难重新连接。最好的解决方案是继续按如下所述构建lwfinger驱动程序,然后将Ubuntu中包含的驱动程序列入黑名单。
该方法链接已过时;可以在https://github.com/lwfinger/rtl8723au中找到rtl8723au无线驱动程序的最新版本。
在准备过程中,我们需要一些构建工具和内核头文件:
sudo apt-get install git build-essential linux-headers-generic linux-headers-$(uname -r)
以下是安装步骤:
git clone https://github.com/lwfinger/rtl8723au.git
cd rtl8723au/
make
sudo make install
sudo modprobe 8723au
更新内核时,您需要再次运行这些步骤以使无线工作(除外git clone
)。要获取最新版本的代码,请使用git pull
。或者,您可以按照user20826的答案中所述,设置DKMS为您执行此操作。
然后可以在https://github.com/lwfinger/rtl8723au_bt中找到该芯片的蓝牙驱动程序。执行上述准备并像这样安装:
git clone https://github.com/lwfinger/rtl8723au_bt.git
cd rtl8723au_bt/
make
sudo make install
sudo modprobe rtl8723ae
,结果证明这不是正确的选择。