Xubuntu 12.10 中 WiFi 无法使用

Xubuntu 12.10 中 WiFi 无法使用

我的笔记本电脑是戴尔 Vostro 2520。我尝试在其上使用 Xubuntu 和 Ubuntu,我使用过 12.04 和 12.10。WiFi 在所有情况下都无法工作 - 当我尝试通过热键 (fn+f2) 切换 WiFi 时,系统托盘中会出现蓝牙图标,但左下角面板上的 WiFi 灯不亮。
我尝试通过电缆连接到网络的解决方案:

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

来自类似主题如何使 Acer Npilfy 802.11 (BCM43225) 无线网卡工作?

你能帮助我吗?
提前谢谢!

更新 1
我不清楚 @mikewhateve 是在谈论控制台中的一个还是两个命令。我都试过了

halfros@halfros-Vostro-2520:~$ lspci -nn | grep Net, rfkill list all
grep: rfkill: No such file or directory
grep: list: No such file or directory
grep: all: No such file or directory
halfros@halfros-Vostro-2520:~$ lspci -nn | grep Net
07:00.0 Network controller [0280]: Broadcom Corporation BCM43142 802.11b/g/n [14e4:4365] (rev 01)
halfros@halfros-Vostro-2520:~$ rfkill list all
halfros@halfros-Vostro-2520:~$ 

更新 2

$ sudo dpkg -i | grep bcmwl-kernel-source
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' !
halfros@halfros-Vostro-2520:~$  

更新 3

 dpkg -l grep bcmwl-kernel-source
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  grep           2.12-2       amd64        GNU grep, egrep and fgrep
dpkg-query: no packages found matching bcmwl-kernel-source

答案1

谢谢@mikewhatever 找到了答案。我将其复制到此处以节省对此问题感兴趣的任何人的时间。

如果您有 64 位系统和我提到的设备,那么我建议使用这个包:http://jas.gemnetworks.com/debian/pool/main/w/wireless-bcm43142/wireless-bcm43142-dkms_6.20.55.19-1_amd64.deb

首先安装必备软件:

sudo apt-get install linux-headers-generic build-essential dkms

然后使用以下命令安装该包:

 cd Desktop   <--or whemikewatrever you downloaded the deb
    sudo dpkg -i wire*.deb
    sudo modprobe wl

相关内容