Qualcomm Atheros Device [168c:0041] (rev 20) ubuntu wifi driver

来源:互联网 发布:算法导论实现 编辑:程序博客网 时间:2024/05/17 06:45

最近把联想拯救者装了ubuntu15.10。装完发现wifi用不了。一搜联想的一大堆本子装ubuntu都有这问题,包括yoga

使用命令查看网卡型号:

 $lspci -nn |grep Network

03:00.0 Network controller [0280]: Qualcomm Atheros Device [168c:0041] (rev 20)

这个在windows里能看到 是atheros qca61x4型号

首先需要升级 firmware 通过ath10k 驱动无线

git clone https://github.com/atondwal/ath10k-firmware.git
sudo cp -r ath10k-firmware/ath10k/ /lib/firmware/
cd /lib/firmware/ath10k/QCA6164
sudo cp -r hw2.1/ /lib/firmware/ath10k/QCA6174/

Reboot

如果还不行 尝试:

sudo apt-get install build-essential linux-headers-$(uname -r) git
echo "options ath10k_core skip_otp=y" | sudo tee /etc/modprobe.d/ath10k_core.conf
wget https://www.kernel.org/pub/linux/kernel/projects/backports/2015/09/03/backports-20150903.tar.gz
tar -zxvf backports-20150903.tar.gz
cd backports-20150903
make defconfig-ath10k
make
sudo make install

Then reboot


以上是ubuntu 论坛 jeremy大神提供的方案, 原地址:

https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1436940/+index?comments=all


0 0
原创粉丝点击