Como instalo drivers e firmware sem fio no Kali Linux?

1

POR FAVOR, NOTE: SEM ACESSO À INTERNET (sem placa ethernet).

Minha placa de rede é:

Broadcom Corporation BCM4352 802.11ac Rev03

Eu nem sei onde baixar o firmware ou drivers.

Eu uso um Dell XPS 13.

apt-get install broadcom-sta-dkms linux-headers-$(uname -r)

Eu fiz este código para instalar e receber esta resposta:

root@kali:~# apt-get install broadcom-sta-dkms linux-headers-$(uname -r)
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 broadcom-sta-dkms : Depends: dkms (>= 2.1.0.0) but it is not going to be installed
 linux-headers-4.3.0-kali1-amd64 : Depends: linux-headers-4.3.0-kali1-common (= 4.3.3-5kali4) but it is not going to be installed
                                   Depends: linux-kbuild-4.3 but it is not going to be installed
                                   Depends: linux-compiler-gcc-5-x86 but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
    
por Michael Bishara 31.08.2016 / 18:02

1 resposta

1

Você precisa instalar os drivers broadcom-sta :

apt-get install broadcom-sta-dkms linux-headers-$(uname -r)

(isto instalará o código-fonte do driver, os cabeçalhos de suporte do seu kernel e construirá e instalará o módulo do kernel).

Parece que você está executando um kernel antigo, portanto, os cabeçalhos e pacotes de suporte necessários não estão mais disponíveis nos repositórios. Você precisará atualizar seu kernel também (isso também lhe dará melhor suporte de hardware):

apt-get update
apt-get install broadcom-sta-dkms linux-image-4.6.0-kali1-amd64 linux-headers-4.6.0-kali1-amd64

Você provavelmente desejará atualizar o restante do seu sistema enquanto estiver:

apt-get upgrade

e, obviamente, você precisará reiniciar para usar o novo kernel.

Se você não tem acesso à Internet, as coisas ficam um pouco mais complicadas. Você precisará fazer o download de linux-image-4.6.0-kali1-amd64 , linux-headers-4.6.0-kali1-amd64 , linux-headers-4.6.0-kali1-common , linux-compiler-gcc-5-x86 e linux-kbuild-4.6 para um começo, e instale-os usando dpkg -i . Eu espero que seja o suficiente (embora eu duvide) - se não for, seria melhor encontrar um cabo Ethernet para conectar seu laptop e usar apt-get como acima.

    
por 31.08.2016 / 18:05