Broadcom STA 无线驱动程序无法在 Dell Inspiron 5420 上运行

Broadcom STA 无线驱动程序无法在 Dell Inspiron 5420 上运行

我是 Linux 新手。我刚开始使用 ubuntu 12.04。Wifi 在 ubuntu 上无法使用。但它在 Windows 7 上可以使用。

当我尝试通过 LAN 连接到网络时,它可以正常工作。此外,我还通过 LAN 检查了其他驱动程序。没有找到任何驱动程序。

命令 lspci -nn | grep 0280 给我:
02:00.0 Network Controller [0280]: Broadcom Corporation Device [14e4:4365] (rev 01)

答案1

检查此链接Broadcom STA 无线驱动程序以获得初步帮助。它提供了有关如何确定您的卡型号以及如何在有互联网连接的情况下进行安装的说明。

如果这不起作用,请尝试这个。我在某个论坛上找到了这个(感谢写这篇文章的人):

请尝试 b43 驱动程序和固件,而不是 wl 驱动程序。

请将以下命令复制粘贴到终端中(使用有效的有线网络连接):

sudo apt-get update
sudo apt-get remove --purge bcmwl-kernel-source
sudo apt-get install firmware-b43-lpphy-installer

然后请运行以下命令:

gksudo gedit /etc/modprobe.d/blacklist.conf

请使用 gedit 编辑器删除文件中的以下配置行/etc/modprobe.d/blacklist.conf

blacklist b43
blacklist b43legacy

节省/etc/modprobe.d/blacklist.conf删除配置行后对文件的更改。

然后重新启动并重新测试无线。

来源: https://answers.launchpad.net/ubuntu/+source/gnome-nettool/+question/178531

答案2

@Telorand 的回答非常有用,但是系统日志中出现了这个错误:

Firmware file "b43/ucode5.fw" not found

所以我找到了页面建议使用firmware-b43-installer而不是firmware-b43-lpphy-installer

对于 Dell Latitude D630 和同样的问题,以下方法有所帮助:

sudo apt-get update
sudo apt-get remove --purge bcmwl-kernel-source
sudo apt-get install firmware-b43-installer b43-fwcutter

相关内容