我无法在安装了 20.04 的笔记本电脑上使用 BCM4360 网卡查看任何 wifi 网络。有人能帮我吗?谢谢。
如果需要任何其他信息来帮助调试此问题,请告诉我
编辑:有趣的是,ubuntu 能够列出附近的蓝牙设备。
lspci -vvnn | grep -A 9 Network
03:00.0 Network controller [0280]: Broadcom Inc. and subsidiaries BCM4360 802.11ac Wireless Network Adapter [14e4:43a0] (rev 03)
Subsystem: Apple Inc. BCM4360 802.11ac Wireless Network Adapter [106b:0112]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx+
Latency: 0, Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 17
Region 0: Memory at f1200000 (64-bit, non-prefetchable) [size=32K]
Region 2: Memory at f1000000 (64-bit, non-prefetchable) [size=2M]
Capabilities: <access denied>
Kernel driver in use: wl
Kernel modules: bcma, wl
dmesg | grep wl
[ 4.145754] wl: loading out-of-tree module taints kernel.
[ 4.145759] wl: module license 'MIXED/Proprietary' taints kernel.
[ 4.152672] wl: module verification failed: signature and/or required key missing - tainting kernel
[ 4.246755] wlan0: Broadcom BCM43a0 802.11 Hybrid Wireless Controller 6.30.223.271 (r587334)
[ 4.592163] wl 0000:03:00.0 wlp3s0: renamed from wlan0
rfkill list all
0: tpacpi_bluetooth_sw: Bluetooth
Soft blocked: no
Hard blocked: no
1: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
2: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
3: brcmwl-0: Wireless LAN
Soft blocked: no
Hard blocked: no
答案1
安装无线驱动在终端中运行以下命令来安装驱动:
sudo apt-get 更新
sudo apt-get 安装 bcmwl-kernel-source
安装完成后,重新启动计算机并检查无线适配器是否正常工作。
尝试手动加载驱动程序模块如果上述步骤不起作用,请尝试使用以下命令手动加载驱动程序模块:
sudo modprobe -r b43 ssb wl brcmfmac brcmsmac bcma
sudo modprobe wl
答案2
2021 年 1 月,在 Ubuntu 20.04 更新后,我的 MacBook Air 2015 上的网络停止了。
以下是我如何让它再次运行的总结:
Enable the use of proprietary drivers. For example in 'Software & Updates / Ubuntu Software'
sudo apt update
sudo apt remove --purge bcmwl-kernel-source
sudo apt install --reinstall broadcom-sta-dkms
Reboot you computer
答案3
使用该驱动程序: https://github.com/antoineco/broadcom-wl/tree/patch-linux4.7
/etc/modprobe.d/blacklist.conf
# wireless drivers (conflict with Broadcom hybrid wireless driver 'wl')
blacklist ssb
blacklist bcma
blacklist b43
blacklist brcmsmac
为正在运行的内核构建并安装:
$ make
$ make install
$ depmod -A
$ modprobe wl
答案4
在 2021 年 8 月内核 5.11.0-25-generic 更新期间,博通 wifi 停止工作
清除并重新安装后它再次运行。
巴西雷亚尔