Wifi não funciona no Ubuntu 16.04 ACER Aspire E14

0

Eu tenho tido problemas com wifi desde 14.04 ... Eu atualizei para 16.04 e tentei sudo apt-get update && upgrade mas ele não funcionou ... Eu sou muito novo no Linux, então eu não sou capaz de descobrir o problema. Aqui estão algumas informações do sistema que talvez sejam úteis.

lspci -knn | grep Net -A2
03:00.0 Network controller [0280]: Qualcomm Atheros Device [168c:0042] (rev 30)
Subsystem: Lite-On Communications Inc Device [11ad:0806]
Kernel driver in use: ath10k_pci

rfkill list all
0: hci0: Bluetooth
Soft blocked: yes
Hard blocked: no
1: acer-wireless: Wireless LAN
Soft blocked: no
Hard blocked: no
2: acer-bluetooth: Bluetooth
Soft blocked: yes
Hard blocked: no

dmesg | grep ath
[   15.973132] ath10k_pci 0000:03:00.0: pci irq msi-x interrupts 8 irq_mode 0 reset_mode 0
[   16.816281] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/cal-pci-0000:03:00.0.bin failed with error -2
[   16.840523] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/firmware-5.bin failed with error -2
[   16.840530] ath10k_pci 0000:03:00.0: could not fetch firmware file 'ath10k/QCA9377/hw1.0/firmware-5.bin': -2
[   16.840543] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/firmware-4.bin failed with error -2
[   16.840545] ath10k_pci 0000:03:00.0: could not fetch firmware file 'ath10k/QCA9377/hw1.0/firmware-4.bin': -2
[   16.840553] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/firmware-3.bin failed with error -2
[   16.840554] ath10k_pci 0000:03:00.0: could not fetch firmware file 'ath10k/QCA9377/hw1.0/firmware-3.bin': -2
[   16.840562] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/firmware-2.bin failed with error -2
[   16.840564] ath10k_pci 0000:03:00.0: could not fetch firmware file 'ath10k/QCA9377/hw1.0/firmware-2.bin': -2
[   16.840572] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/firmware.bin failed with error -2
[   16.840573] ath10k_pci 0000:03:00.0: could not fetch firmware (-2)
[   16.840576] ath10k_pci 0000:03:00.0: could not fetch firmware files (-2)
[   16.840578] ath10k_pci 0000:03:00.0: could not probe fw (-2)
    
por border 19.11.2017 / 09:45

1 resposta

1

Parece que você precisa de firmware! Por favor, tente, com uma conexão de internet ativa:

sudo apt-get update
sudo apt-get install linux-firmware

Reinicie. Está funcionando? Se não, por favor verifique:

sudo dpkg -s linux-firmware

Esperamos ver que a versão instalada é 1.157.13. Se não, tente:

cd /tmp
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.157.13_all.deb
sudo dpkg -i linux-firmware*.deb

Reinicie. Está funcionando?

EDIT: Eu suspeito que o download foi de alguma forma corrompido. Vamos tentar de novo:

cd /tmp
rm -rf linux-firmware*
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.157.13_all.deb
ls -al

Esperamos que o tamanho seja 44364698. Se sim, vamos instalá-lo:

sudo dpkg -i linux-firmware_1.157.13_all.deb

Se o tamanho do pacote baixado for diferente, pare e poste o tamanho.

Por favor, poste quaisquer erros ou avisos.

    
por chili555 20.11.2017 / 17:01