解决ubuntu14 的wifi无法使用的问题

输入的笔记本安装了双系统,后来发现Ubuntu的wifi不能使用,只能用以太网。网上查了下。
方法如下:
1、先查看机子的网卡型号:lspci -nn |grep Network
这里写图片描述
2、查看/lib/firmware/ath10k,有没有QCA6174,有的话,后面忽略,没有就下载。
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/
3、配置
echo “options ath10k_core skip_otp=y” | sudo tee /etc/modprobe.d/ath10k_core.conf
4、获取文件
wget https://www.kernel.org/pub/linux/kernel/projects/backports/2016/03/24/backports-20160324.tar.gz .
5、解压,编译,安装
make defconfig-ath10k
make
sudo make install
6、重启
reboot
不出意外,就可以看到wifi了。
——问题总结mark下。

你可能感兴趣的:(linux,linux,system)