Problemas com o driver para o cartão Wi-fi Broadcom no Debian

0

Meu laptop é o HP 250 G4 P5T98ES

Meu sistema operacional é: Debian jessie 20160917

Enquanto eu estava instalando o Debian do live-usb, ele me disse que ele não pode se conectar à rede sem fio porque não tem drivers não-livres. Então eu decidi instalar o driver mais tarde. Eu baixei o driver wireless do site debian (na verdade, eu baixei o pacote inteiro de firmware não-livre. Então eu corro o comando no terminal no modo su:

dpkg -i firmware-brcm80211_0.43_all.deb

A saída informa que ela foi instalada com sucesso (ou algo parecido). Então eu corri:

dpkg -l firmware-brcm80211

E isso me deu a seguinte saída:

Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name                            Version              Architecture         Description
+++-===============================-====================-====================-====================================================================
ii  firmware-brcm80211              0.43                 all                  Binary firmware for Broadcom 802.11 wireless cards

Eu reiniciei o sistema, mas nas configurações de rede ainda vejo apenas duas opções: com fio e proxy de rede.

root@debian:/home# lspci -nnk | grep -i net -A2
07:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller [10ec:8136] (rev 07)
        Subsystem: Hewlett-Packard Company Device [103c:80c2]
        Kernel driver in use: r8169
--
13:00.0 Network controller [0280]: Broadcom Corporation BCM43142 802.11b/g/n [14e4:4365] (rev 01)
        Subsystem: Hewlett-Packard Company Device [103c:804a]
        Kernel driver in use: bcma-pci-bridge

Depois de adicionar esta linha:

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

para /etc/apt/sources.list, o apt-get update falha:

root@debian:/home/alexander# apt-get update
Err http://httpredir.debian.org jessie InRelease

Err http://httpredir.debian.org jessie Release.gpg
  Could not resolve 'httpredir.debian.org'
Ign cdrom://[Debian GNU/Linux 8 _Jessie_ - Official Snapshot amd64 LIVE/INSTALL Binary 20160917-15:07] jessie InRelease
Ign cdrom://[Debian GNU/Linux 8 _Jessie_ - Official Snapshot amd64 LIVE/INSTALL Binary 20160917-15:07] jessie Release.gpg
Ign cdrom://[Debian GNU/Linux 8 _Jessie_ - Official Snapshot amd64 LIVE/INSTALL Binary 20160917-15:07] jessie Release
Ign cdrom://[Debian GNU/Linux 8 _Jessie_ - Official Snapshot amd64 LIVE/INSTALL Binary 20160917-15:07] jessie/main amd64 Packages/DiffIndex
Ign cdrom://[Debian GNU/Linux 8 _Jessie_ - Official Snapshot amd64 LIVE/INSTALL Binary 20160917-15:07] jessie/main Translation-en_US
Ign cdrom://[Debian GNU/Linux 8 _Jessie_ - Official Snapshot amd64 LIVE/INSTALL Binary 20160917-15:07] jessie/main Translation-en
Reading package lists... Done
W: Failed to fetch http://httpredir.debian.org/debian/dists/jessie/InRelease  

W: Failed to fetch http://httpredir.debian.org/debian/dists/jessie/Release.gpg  Could not resolve 'httpredir.debian.org'

W: Some index files failed to download. They have been ignored, or old ones used instead.
root@debian:/home/alexander# apt-get install linux-image-$(uname -r|sed 's,[^-]*-[^-]*-,,') linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') broadcom-sta-dkms
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package broadcom-sta-dkms

Meu /etc/apt/sources.list agora se parece com isto:

# 

# deb cdrom:[Debian GNU/Linux 8 _Jessie_ - Official Snapshot amd64 LIVE/INSTALL Binary 20160917-15:07]/ jessie main

deb cdrom:[Debian GNU/Linux 8 _Jessie_ - Official Snapshot amd64 LIVE/INSTALL Binary 20160917-15:07]/ jessie main

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

# Line commented out by installer because it failed to verify:
#deb http://security.debian.org/ jessie/updates main
# Line commented out by installer because it failed to verify:
#deb-src http://security.debian.org/ jessie/updates main

PROBLEMA RESOLVIDO instalando o debian a partir da versão live-cd que possui firmware incluído. Agora eu tenho meu wi-fi.

    
por Alexandr Gnatyuk 30.09.2016 / 10:20

2 respostas

2

Você está instalando o driver errado para o seu cartão.

Você tem BCM43142 802.11b/g/n [14e4:4365] , que usa o módulo wl .

Leia sobre isso na documentação oficial do Debian .

Onde você encontrará essas informações sobre como instalar o driver (correto):

Add a "non-free" component to /etc/apt/sources.list for your Debian version, for example:

# Debian 8 "Jessie" deb http://httpredir.debian.org/debian/ jessie main contrib non-free

Update the list of available packages. Install the relevant/latest linux-image, linux-headers and broadcom-sta-dkms packages:

# apt-get update
# apt-get install linux-image-$(uname -r|sed 's,[^-]*-[^-]*-,,') linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') broadcom-sta-dkms

This will also install the recommended wireless-tools package. DKMS will build the wl module for your system.

Unload conflicting modules:

# modprobe -r b44 b43 b43legacy ssb brcmsmac bcma

Load the wl module:

# modprobe wl
    
por 30.09.2016 / 16:46
1

O BCM43142 wifi está com bugs na versão atual do kernel 3.16 , você pode ler o comentário do @Stephen Kitt sobre o Relatório de bugs do Debian de aqui , sugiro compilar a versão 3.2.82 e instalar o driver seguindo os passos descritos aqui . Além disso, você pode instalar um novo kernel de backports a 4.6 ou a versão 4.7 .

Editar

Siga esta resposta para corrigir seu sources.list primeiro.

    
por 30.09.2016 / 22:39