Instalé Ubuntu 15.10 en mi computadora portátil (Samsung NT900X3K-K78S). Todo funciona bien excepto la LAN inalámbrica (QCA61x4). Entonces, busqué y probé todas las respuestas a las preguntas relacionadas. pero no hay ninguna solución que funcione. ¿como puedo resolver este problema?
uname -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 | grupo QCA
01:00.0 Network controller: Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter (rev 20)
lsmod | grep ath
(empty)
Respuesta1
¡PROBLEMA RESUELTO!
Tenga en cuenta queConfirmé que la siguiente solución funciona en Linux 4.2; Es posible que el kernel anterior no funcione.
Así lo logré:
- Descargar firmware:https://github.com/makerj/ath10k-firmware/archive/master.zip
- Descomprimir archivo
NOSOTROS NECESITAMOStablero.bin,firmware-5.bin_SW_RM~que se colocó en QCA6174/hw2.1. por lo tanto, copie el directorio de ./ath10k-firmware-master/QCA6174 a /lib/firmware/ath10k
sudo cp -r ./ath10k-firmware-master/QCA6174 /lib/firmware/ath10k
Eliminarcualquiersufijodel archivo de firmware. (por ejemplo, firmware-5.bin_SW_RM~. a firmware-5.bin)
- Reiniciar
Versión del 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