WiFi não funciona no Debian Jessie

1

Tenho problemas com o meu controlador WiFi no meu computador portátil Acer E5 575G.
Eu tentei instalar drivers manualmente e eu tentei mesmo apt install firmware-realtek e apt install firmware-atheros
Eu até tentei instalar drivers manualmente do git mas sem sorte.

Informações úteis:

neisor@debianneisor:~$ lspci
00:00.0 Host bridge: Intel Corporation Device 1904 (rev 08)
00:02.0 VGA compatible controller: Intel Corporation Device 1916 (rev 07)
00:14.0 USB controller: Intel Corporation Device 9d2f (rev 21)
00:14.2 Signal processing controller: Intel Corporation Device 9d31 (rev 21)
00:15.0 Signal processing controller: Intel Corporation Device 9d60 (rev 21)
00:16.0 Communication controller: Intel Corporation Device 9d3a (rev 21)
00:17.0 SATA controller: Intel Corporation Device 9d03 (rev 21)
00:1c.0 PCI bridge: Intel Corporation Device 9d10 (rev f1)
00:1d.0 PCI bridge: Intel Corporation Device 9d18 (rev f1)
00:1d.2 PCI bridge: Intel Corporation Device 9d1a (rev f1)
00:1d.3 PCI bridge: Intel Corporation Device 9d1b (rev f1)
00:1f.0 ISA bridge: Intel Corporation Device 9d48 (rev 21)
00:1f.2 Memory controller: Intel Corporation Device 9d21 (rev 21)
00:1f.3 Audio device: Intel Corporation Device 9d70 (rev 21)
00:1f.4 SMBus: Intel Corporation Device 9d23 (rev 21)
01:00.0 3D controller: NVIDIA Corporation Device 179c (rev a2)
03:00.0 Network controller: Qualcomm Atheros Device 0042 (rev 31)
04:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. Device 5287 (rev 01)
04:00.1 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 12)

neisor@debianneisor:~$ uname -a
Linux debianneisor 3.16.0-4-amd64 #1 SMP Debian 3.16.39-1+deb8u2 (2017-03-07) x86_64 GNU/Linux

root@debianneisor:/home/neisor# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 8.7 (jessie)
Release:        8.7
Codename:       jessie

Só para esclarecer as coisas, meu adaptador ethernet funciona, mas meu WiFi não funciona. Outra coisa, meu WiFi sempre funcionou de maneira simples no Fedora e no Ubuntu.

Alguma ideia de como corrigir isso no Debian?

Obrigado.

    
por rogaloo 19.03.2017 / 11:02

1 resposta

1

O driver ath10k não está disponível no debian jessie, você deve obtê-lo a partir de backports.

Adicione a seguinte linha ao seu /etc/apt/sources.list :

deb http://httpredir.debian.org/debian jessie-backports main contrib non-free

Pesquise e instale um novo kernel a partir dos backports:

apt-cache search linux-image
apt-get install linux-image-xxx
apt-get install linux-headers-xxx

Reinicialize e instale os firmware-atheros dos backports:

apt-get update
apt-get -t jessie-backports install firmware-atheros
modprobe ath10k
    
por 20.03.2017 / 15:08