web-dev-qa-db-ja.com

Ubuntu 16.04でのQualcomm Atheros QCA6174の問題

最近、Acer Aspire R5-471Tラップトップを購入し、Ubuntu 16.04をインストールしましたが、ワイヤレスを機能させることができません。私のGoogle-fuによると、これは私のワイヤレスネットワークアダプターがプロプライエタリなQualcomm Atheros QCA6174であり、Ubuntuで正しく動作させるために手間がかかるためです。

以下は、私がターミナルから降りてきたメッセージの一部です。

lspci -nnk | grep 0280 -A2
01:00.0 Network controller [0280]: Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter [168c:003e] (rev 32)
Subsystem: Lite-On Communications Inc QCA6174 802.11ac Wireless Network Adapter [11ad:0807]

dmesg | grep ath
[    1.960883] ath10k_core: unknown parameter 'skip_opt' ignored
[    1.974347] ath10k_pci 0000:01:00.0: pci irq msi-x interrupts 8 irq_mode 0 reset_mode 0
[    2.219383] ath10k_pci 0000:01:00.0: Direct firmware load for ath10k/cal-pci-0000:01:00.0.bin failed with error -2
[    2.219671] ath10k_pci 0000:01:00.0: Direct firmware load for ath10k/QCA6174/hw3.0/firmware-5.bin failed with error -2
[    2.219673] ath10k_pci 0000:01:00.0: could not fetch firmware file 'ath10k/QCA6174/hw3.0/firmware-5.bin': -2
[    2.219678] ath10k_pci 0000:01:00.0: Direct firmware load for ath10k/QCA6174/hw3.0/firmware-4.bin failed with error -2
[    2.219680] ath10k_pci 0000:01:00.0: could not fetch firmware file 'ath10k/QCA6174/hw3.0/firmware-4.bin': -2
[    2.219684] ath10k_pci 0000:01:00.0: Direct firmware load for ath10k/QCA6174/hw3.0/firmware-3.bin failed with error -2
[    2.219685] ath10k_pci 0000:01:00.0: could not fetch firmware file 'ath10k/QCA6174/hw3.0/firmware-3.bin': -2
[    2.219690] ath10k_pci 0000:01:00.0: Direct firmware load for ath10k/QCA6174/hw3.0/firmware-2.bin failed with error -2
[    2.219691] ath10k_pci 0000:01:00.0: could not fetch firmware file 'ath10k/QCA6174/hw3.0/firmware-2.bin': -2
[    2.219695] ath10k_pci 0000:01:00.0: Direct firmware load for ath10k/QCA6174/hw3.0/firmware.bin failed with error -2
[    2.219696] ath10k_pci 0000:01:00.0: could not fetch firmware (-2)
[    2.219698] ath10k_pci 0000:01:00.0: could not fetch firmware files (-2)
[    2.219699] ath10k_pci 0000:01:00.0: could not probe fw (-2)

私はまだLinuxを使い始めたばかりで、開発者でもありません。

6
robotoverlord

ワイヤレスを機能させることができました。トリックは次のとおりです。

(1)/ lib/firmware/ath10k/QCA6174というフォルダーを作成します

(2)2つのサブフォルダー/hw2.1と/hw3.0があることを確認します

(3)ここにあるファイルを適切なサブフォルダーにコピーします。 https://github.com/kvalo/ath10k-firmware

(4)hw3.0サブフォルダー内の「firmware-4.bin_WLAN.RM.2.0-00180-QCARMSWPZ-1」および「firmware-5.bin_WLAN.RM.2.0-00180-QCARMSWPZ-1」という名前のファイルhw2.1サブフォルダーは、それぞれ「firmware-4.bin」および「firmware-5.bin」に名前を変更する必要があります。 (これが最初に私にとって問題の原因でした)。

9
robotoverlord