我买了一台 Acer 笔记本电脑并安装了 Ubuntu 14.04LTS,但没有可用的 WiFi 驱动程序。因此,我尝试使用 wifidocs/driver/ndiswrapper 安装 Windows 驱动程序。
执行后lspci -vvnn
,得到:
Network controller [0280: Qualcomm Atheros Device [168c:0042] (rev 30)
然后我还禁用了 atheros 驱动程序。使用lspci
和lspci -n
,我可以说 PCI id 是168c:0042
。但 Acer 网站有三个 atheros 驱动程序。我不知道该下载哪一个,但在 Windows PC 上下载了一个,并将 zip 文件粘贴到我的桌面上,然后使用 unzip 从终端解压缩它<filename>.zip
。页面说你必须转到控制面板系统硬件和 Windows 系统上的所有内容。我没有这么做。Windows 电脑不是我的,恐怕我不应该在上面安装任何其他驱动程序。解压后,它有一个.inx
文件和一个.bin
文件,但没有.sys
文件。我不知道我是否完全正确,还是我错过了什么?如果我是对的,那么从这里开始如何?我还创建了一个新目录并将解压缩的.inx
和.bin
文件复制到其中。然后在那个目录中我运行了,ndiswrapper -i <filename>.inf
但它说ndiswrapper
没有安装,当我这样做时sudo apt-get install ndiswrapper-common
,我得到的答复是ndiswrapper-common
已经是最新版本。该怎么办?这是我的
dmesg | grep ath10k result
[ 7.882758] ath10k_pci 0000:03:00.0: pci irq msi-x interrupts 8 irq_mode 0 reset_mode 0
[ 8.190016] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/cal-pci-0000:03:00.0.bin failed with error -2
[ 8.334587] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/board-2.bin failed with error -2
[ 10.140677] ath10k_pci 0000:03:00.0: qca9377 hw1.0 (0x05020000, 0x003820ff sub 105b:e09a) fw WLAN.TF.1.0-00267-1 fwapi 5 bdapi 1 htt-ver 3.1 wmi-op 4 htt-op 3 cal otp max-sta 32 raw 0 hwcrypto 1 features ignore-otp
[ 10.140682] ath10k_pci 0000:03:00.0: debug 0 debugfs 0 tracing 0 dfs 0 testmode 0
以下是输出lspci -nnk | grep -iA2 net
02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 15)
Subsystem: Acer Incorporated [ALI] Device [1025:098a]
Kernel driver in use: r8169
03:00.0 Network controller [0280]: Qualcomm Atheros Device [168c:0042] (rev 30)
Subsystem: Foxconn International, Inc. Device [105b:e09a]
Kernel driver in use: ath10k_pci
答案1
Ubuntu 16.04 用户只需要
sudo apt-get update && sudo apt-get upgrade
然后重新启动。
您不需要 Windows 驱动程序和 ndiswrapper。
此问题最近已在上游修复,请按照以下说明安装反向移植的模块和所需的固件:
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/stable/v4.4.2/backports-4.4.2-1.tar.gz
tar -zxvf backports-4.4.2-1.tar.gz
cd backport-4.4.2-1
make defconfig-wifi
make
sudo make install
git clone https://github.com/kvalo/ath10k-firmware.git
sudo cp -r ath10k-firmware/QCA9377 /lib/firmware/ath10k/
sudo cp /lib/firmware/ath10k/QCA9377/hw1.0/firmware-5.bin_WLAN.TF.1.0-00267-1 /lib/firmware/ath10k/QCA9377/hw1.0/firmware-5.bin
重启后它应该可以工作。
当通过更新安装新内核时,它将失败,直到内核修补以支持 wifi。发生这种情况时,您需要:
cd backports-4.4.2-1
make clean
make defconfig-wifi
make
sudo make install
然后重新启动。