以太网卡 BCM4401-B0 不再被识别?

以太网卡 BCM4401-B0 不再被识别?

我将 Ubuntu 更新到 14.04 LTS,但我再也看不到我的网络了 - 网络下拉菜单中显示没有可用的网络设备。网络已启用,如果我选择从网络启动我的 Dell Inspiron 1300,我确实看到卡上有一些活动,但在 Linux 上没有任何活动。网卡上的两个灯一直亮着。

我不知道在哪里可以找到相当于事件查看器或类似程序来开始排除故障,在更新之前我只安装了大约两个小时。最初的安装是在去年十月。

如果能提供关于在日志等中查找位置的任何指示,我将非常感激。

02:00.0 Ethernet controller [0200]: Broadcomm Corporation BCM4401-B0 100base-tx [14e4:170c] (Rev 02)
Subsystem dell Device [1028:01c9]

cat /etc/modprobe.d/blacklist-bcm43.conf
# Warning: This file is autogenerated by bcmwl. All changes to this file will be lost. 
blacklist b43 
blacklist b43legacy 
blacklist ssb 
blacklist bcm43xx 
blacklist brcm80211 
blacklist brcmfmac 
blacklist brcmsmac 
blacklist bcma 
blacklist b44 
install wl 
modprobe -r b43 b44 b43legacy ssb; modprobe --ignore-install wl ; modprobe --ignore-install b44

答案1

您的有线网络驱动程序b44可能被无线驱动程序列入黑名单。

这个问题应该由

sudo -H gedit /etc/modprobe.d/blacklist-bcm43.conf

并从最后一行删除blacklist b44b44和。; modprobe --ignore-install b44

文件看起来应该是这样的

# Warning: This file is autogenerated by bcmwl. All changes to this file will be lost. 
blacklist b43 
blacklist b43legacy 
blacklist ssb 
blacklist bcm43xx 
blacklist brcm80211 
blacklist brcmfmac 
blacklist brcmsmac 
blacklist bcma 
install wl 
modprobe -r b43 b43legacy ssb; modprobe --ignore-install wl

保存文件。

此后,有线网络应该在重启后就可以工作了。

笔记如果bcmwl-kernel-source升级,则可能需要再次执行此过程。

答案2

有线修复:

sudo gedit /etc/modprobe.d/blacklist-bcm43.conf

并从最后一行删除黑名单 b44、b44 和;modprobe --ignore-install b44。

文件看起来应该是这样的

# Warning: This file is autogenerated by bcmwl. All changes to this file will be lost. 
blacklist b43 
blacklist b43legacy 
blacklist ssb 
blacklist bcm43xx 
blacklist brcm80211 
blacklist brcmfmac 
blacklist brcmsmac 
blacklist bcma 
install wl 
modprobe -r b43 b43legacy ssb; modprobe --ignore-install wl

保存文件。

此后,有线网络应该在重启后就可以工作了。

连接后通过终端或应用程序运行所有更新

sudo apt-get upgrade

无线网络修复:

sudo modprobe b43

dmesg |grep -e b43 -e bcma

相关内容