LAN sem fio QCA61x4 não funciona no Ubuntu 15.10

LAN sem fio QCA61x4 não funciona no Ubuntu 15.10

Instalei o Ubuntu 15.10 no meu laptop (Samsung NT900X3K-K78S). Tudo funciona bem, exceto LAN sem fio (QCA61x4). Então, pesquisei e tentei todas as respostas de perguntas relacionadas. mas não há solução funcional. como posso resolver esse problema?

sem nome -a

Linux 900X3K 4.2.0-18-generic #22-Ubuntu SMP Fri Nov 6 18:25:50 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

ifconfig -a

enp2s0    Link encap:Ethernet  HWaddr 98:83:89:10:ec:be  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:1324 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1324 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:101763 (101.7 KB)  TX bytes:101763 (101.7 KB)

lspci | grepQCA

01:00.0 Network controller: Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter (rev 20)

lsmod | grep ath

(empty)

Responder1

PROBLEMA RESOLVIDO!

Observe queConfirmei que a seguinte solução funciona no Linux 4.2; o kernel anterior pode não funcionar.

Foi assim que consegui:

  1. Baixar firmware:https://github.com/makerj/ath10k-firmware/archive/master.zip
  2. Descompacte o arquivo
  3. NÓS PRECISAMOSplaca.bin,firmware-5.bin_SW_RM~que foi colocado em QCA6174/hw2.1. portanto, copie o diretório de ./ath10k-firmware-master/QCA6174 para /lib/firmware/ath10k

    sudo cp -r ./ath10k-firmware-master/QCA6174 /lib/firmware/ath10k

  4. Removerqualquersufixodo arquivo de firmware. (por exemplo, firmware-5.bin_SW_RM~. para firmware-5.bin)

  5. Reinício

Versão do código:

wget https://github.com/makerj/ath10k-firmware/archive/master.zip
unzip master.zip
cd ath10k-firmware-master/
sudo cp -r QCA6174/ /lib/firmware/ath10k/
cd /lib/firmware/ath10k/QCA6174/hw2.1/
sudo mv firmware-5.bin_SW_RM.1.1.1-00157-QCARMSWPZ-1 firmware-5.bin
sudo reboot

informação relacionada