Perdeu o Wi-Fi após o upgrade do Ubuntu 12.10 (Precise Pangolin) [duplicado]

0

Recebi meu novo Dell Vostro 2420 na semana passada e comecei a fazer upgrade do Ubuntu 11.10 (Oneiric Ocelot) para Ubuntu 12.10 (Quantet Quetzal).

Infelizmente, como muitos outros (depois de pesquisar o problema), não tenho mais Wi-Fi. Eu tentei todos os comandos sudo , dado que funcionou para os outros e ainda não consigo fazer o meu wireless funcionar.

Eu posso conectar via Ethernet, mas não via Wi-Fi. Na verdade, quando uso Fn + F2 para ativar o Wi-Fi, apenas o meu Bluetooth é ativado.

lspci 
 00:00.0 Host bridge: Intel Corporation 2nd Generation Core Processor Family DRAM Controller (rev 09)

 00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)

 00:16.0 Communication controller: Intel Corporation Panther Point MEI Controller #1 (rev 04)

 00:1a.0 USB controller: Intel Corporation Panther Point USB Enhanced Host Controller #2 (rev 04)

 00:1b.0 Audio device: Intel Corporation Panther Point High Definition Audio Controller (rev 04)

 00:1c.0 PCI bridge: Intel Corporation Panther Point PCI Express Root Port 1 (rev c4)

 00:1c.3 PCI bridge: Intel Corporation Panther Point PCI Express Root Port 4 (rev c4)

 00:1c.5 PCI bridge: Intel Corporation Panther Point PCI Express Root Port 6 (rev c4)

 00:1d.0 USB controller: Intel Corporation Panther Point USB Enhanced Host Controller #1 (rev 04)

 00:1f.0 ISA bridge: Intel Corporation Panther Point LPC Controller (rev 04)

 00:1f.2 SATA controller: Intel Corporation Panther Point 6 port SATA Controller [AHCI mode] (rev 04)

 00:1f.3 SMBus: Intel Corporation Panther Point SMBus Controller (rev 04)

 07:00.0 Network controller: Broadcom Corporation Device 4365 (rev 01)

 09:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 07)

Isso é o que eu estou recebendo ...

dpkg: error: --install needs at least one package archive file argument

Type dpkg --help for help about installing and deinstalling packages [*]; Use dselect or aptitude for user-friendly package management;
Type dpkg -Dhelp for a list of dpkg debug flag values;
Type dpkg --force-help for a list of forcing options;
Type dpkg-deb --help for help about manipulating *.deb files;

Options marked [*] produce a lot of output - pipe it through less or more !

    
por karel 13.04.2017 / 14:23

3 respostas

1

Eu tenho o mesmo hardware e tive o mesmo problema.

Para corrigir, eu fiz o download / instalei o link .

Abra um terminal, copie e cole o seguinte:

wget http://jas.gemnetworks.com/debian/pool/main/w/wireless-bcm43142/wireless-bcm43142-dkms_6.20.55.19-1_amd64.deb
sudo dpkg -i wireless-bcm43142-dkms_6.20.55.19-1_amd64.deb

Eu encontrei esta solução de: Dell Vostro 2420 atualizar para 12.04.1 sem wifi

Basta baixar / instalar o deb acima deve funcionar para você, contanto que você esteja usando o Ubuntu 12.10 64bit .

Boa sorte

    
por kris26 12.12.2012 / 04:24
0

Acho que o novo kernel e os drivers da broadcom são a razão do problema. Executar

sudo apt-get install linux-headers-generic
sudo apt-get install --reinstall bcmwl-kernel-source
sudo modprobe wl   

Agora, seu sistema sem fio deve começar a funcionar.

Fonte:

    
por Hashken 10.12.2012 / 06:54
0

Por favor, você pode abrir um terminal e emitir lspci e depois postar a saída? Você também tentou se conectar via LAN?

Bom, você tem um dispositivo Broadcom Corporation 4365. A maioria das pessoas é afetada após uma atualização do kernel. Primeiro, instale os pré-requisitos abrindo um terminal e colando uma linha por vez:

sudo apt-get install linux-headers$(uname -r | grep -Po "\-[a-z].*")
sudo apt-get install build-essential dkms

Se o seu PC for 32-bit / i386, abra um terminal e copie / cole o seguinte

wget https://www.dropbox.com/s/n76dcsdtayvp0wm/wireless-bcm43142-dkms-6.20.55.19_i386.deb
sudo dpkg -i wireless-bcm43142-dkms-6.20.55.19_i386.deb

Se 64-bit / amd64, abra um terminal e copie / cole o seguinte

wget https://www.dropbox.com/s/jerkl6uqal5ylv3/wireless-bcm43142-dkms-6.20.55.19_amd64.deb
sudo dpkg -i wireless-bcm43142-dkms-6.20.55.19_amd64.deb

A sugestão foi obtida de Drivers sem fio BCM43142

Por favor, deixe-me saber se funciona!

    
por Mighty 10.12.2012 / 06:30