Acer Aspire E5 573 在任何 Linux 平台上都没有 Wifi

Nac*_*kar 3 networking acer atheros drivers

我用 Windows 10 和 Ubuntu 15.10 双启动了我的笔记本电脑 Acer Aspire E5-573,从第一天开始我就无法在任何 Linux 平台上使用 WiFi。我做了我能做的一切仍然没有用。在 Ubuntu 上没有可供我使用的其他驱动程序,但我完全能够在 Windows 10 上使用 WiFi。我笔记本电脑中的 WiFi 芯片是 Qualcomm Atheros QCA9377 无线网络适配器。请为我找到解决方案。

    dmesg | grep ath10k
[   11.203844] ath10k_pci 0000:03:00.0: pci irq msi-x interrupts 8 irq_mode 0 reset_mode 0
[   11.599565] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/cal-pci-0000:03:00.0.bin failed with error -2
[   11.599579] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/firmware-5.bin failed with error -2
[   11.599582] ath10k_pci 0000:03:00.0: could not fetch firmware file 'ath10k/QCA9377/hw1.0/firmware-5.bin': -2
[   11.599589] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/firmware-4.bin failed with error -2
[   11.599591] ath10k_pci 0000:03:00.0: could not fetch firmware file 'ath10k/QCA9377/hw1.0/firmware-4.bin': -2
[   11.599596] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/firmware-3.bin failed with error -2
[   11.599598] ath10k_pci 0000:03:00.0: could not fetch firmware file 'ath10k/QCA9377/hw1.0/firmware-3.bin': -2
[   11.599603] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/firmware-2.bin failed with error -2
[   11.599605] ath10k_pci 0000:03:00.0: could not fetch firmware file 'ath10k/QCA9377/hw1.0/firmware-2.bin': -2
[   11.599610] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/firmware.bin failed with error -2
[   11.599612] ath10k_pci 0000:03:00.0: could not fetch firmware (-2)
[   11.599614] ath10k_pci 0000:03:00.0: could not fetch firmware files (-2)
[   11.599615] ath10k_pci 0000:03:00.0: could not probe fw (-2)
Run Code Online (Sandbox Code Playgroud)

chi*_*555 6

您似乎需要但缺少所需的固件。通过以太网、系留或任何可能的方式连接互联网,打开终端并执行以下操作:

wget https://github.com/kvalo/ath10k-firmware/archive/master.zip
unzip master.zip
sudo cp -r ath10k-firmware-master/QCA9377 /lib/firmware/ath10k/
sudo mv /lib/firmware/ath10k/QCA9377/hw1.0/firmware-5.bin_WLAN.TF.1.0-00267-1 /lib/firmware/ath10k/QCA9377/hw1.0/firmware-5.bin
Run Code Online (Sandbox Code Playgroud)

重新启动,您的无线应该可以正常工作。