Problemas com o Qualcomm Atheros QCA6174 no Ubuntu 16.04

6

Comprei recentemente um laptop Acer Aspire R5-471T e instalei o Ubuntu 16.04, mas não consigo fazer o wireless funcionar. De acordo com o meu Google-fu, isso ocorre porque meu adaptador de rede sem fio é um QCA6174 proprietário da Qualcomm Atheros e, portanto, precisa de um pouco de mexer para que ele funcione corretamente no Ubuntu.

Aqui estão algumas das mensagens que recebi do terminal:

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)

Eu ainda sou novo no Linux e não sou desenvolvedor, então, por favor, seja gentil.

    
por robotoverlord 11.05.2016 / 18:02

1 resposta

9

Consegui fazer o trabalho sem fio. O truque é o seguinte:

(1) Crie uma pasta chamada / lib / firmware / ath10k / QCA6174

(2) Certifique-se de que existem duas subpastas, /hw2.1 e /hw3.0

(3) Copie os arquivos encontrados aqui nas subpastas apropriadas: link

(4) Observe que os arquivos denominados "firmware-4.bin_WLAN.RM.2.0-00180-QCARMSWPZ-1" na subpasta hw3.0 e "firmware-5.bin_WLAN.RM.2.0-00180-QCARMSWPZ- 1 "na subpasta hw2.1 deve ser renomeado" firmware-4.bin "e" firmware-5.bin "respectivamente. (Isso foi o que estava causando problemas para mim em primeiro lugar).

    
por robotoverlord 11.05.2016 / 19:30