Ubuntu 20.04 - 找不到 wifi 适配器 DELL

tit*_*oih 4 wireless

我知道对此有很多问题,但没有人适合我。

我已经一个多星期测试博客、github 和论坛解决方案,实际上我真的不知道我已经安装、列入黑名单和创建什么来试图取回我的 wifi 适配器。

将 ipad 连接到笔记本电脑后,问题就开始了。

制造商:Dell Inc. 产品名称:Inspiron 3521

内核发布:

5.4.0-37-generic
Run Code Online (Sandbox Code Playgroud)

如果我抛出这一行:

lspci -knn | grep Net -A3; rfkill list
Run Code Online (Sandbox Code Playgroud)

输出:

02:00.0 Network controller [0280]: Broadcom Inc. and subsidiaries BCM43142 802.11b/g/n [14e4:4365] (rev 01)
    Subsystem: Dell Wireless 1704 802.11n + BT 4.0 [1028:0016]
    Kernel modules: bcma, wl
0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
Run Code Online (Sandbox Code Playgroud)

如果我抛出这条线

sudo modprobe wl
Run Code Online (Sandbox Code Playgroud)

输出:

modprobe: FATAL: Module wl not found in directory /lib/modules/5.4.0-37-generic
Run Code Online (Sandbox Code Playgroud)

如果我抛出这一行:

grep wl /etc/modprobe.d/*
Run Code Online (Sandbox Code Playgroud)

输出:

/etc/modprobe.d/iwlwifi.conf:# /etc/modprobe.d/iwlwifi.conf
/etc/modprobe.d/iwlwifi.conf:# iwlwifi will dyamically load either iwldvm or iwlmvm depending on the
/etc/modprobe.d/iwlwifi.conf:# microcode file installed on the system.  When removing iwlwifi, first
/etc/modprobe.d/iwlwifi.conf:# remove the iwl?vm module and then iwlwifi.
/etc/modprobe.d/iwlwifi.conf:remove iwlwifi \
/etc/modprobe.d/iwlwifi.conf:(/sbin/lsmod | grep -o -e ^iwlmvm -e ^iwldvm -e ^iwlwifi | xargs /sbin/rmmod) \
/etc/modprobe.d/RTL810xE.conf:options RTL810xE fwlps=N
Run Code Online (Sandbox Code Playgroud)

BIOS:

secure boot disable
load legacy option Enable
Boot list option legacy
Run Code Online (Sandbox Code Playgroud)

此系统上未启用安全启动。完毕。

如果我抛出 sudo apt install --reinstall bcmwl-kernel-source

wl.ko:
Running module version sanity check.
 - Original module
   - No original module exists within this kernel
 - Installation
   - Installing to /lib/modules/5.4.0-37-generic/updates/dkms/

depmod.........

DKMS: install completed.
update-initramfs: deferring update (trigger activated)
Processing triggers for man-db (2.9.1-1) ...
Processing triggers for initramfs-tools (0.136ubuntu6) ...
update-initramfs: Generating /boot/initrd.img-5.4.0-37-generic
Run Code Online (Sandbox Code Playgroud)

任何人都可以帮助我吗?

Pil*_*ot6 6

驱动已安装,如下图所示:

Kernel modules: bcma, wl
Run Code Online (Sandbox Code Playgroud)

wl 是此适配器的正确驱动程序。

但问题是它没有被使用。原因可能是 UEFI 设置中启用了安全启动,或者被列入黑名单。

检查 UEFI 又名 BIOS 中是否禁用了安全启动。如果这没有帮助,请运行

grep wl /etc/modprobe.d/*
Run Code Online (Sandbox Code Playgroud)

看看是否wl在某个地方被列入黑名单。

如果没有帮助,重新安装wl

sudo apt install --reinstall bcmwl-kernel-source
Run Code Online (Sandbox Code Playgroud)


小智 5

我面临着同样的问题。偶然发现了这张票。但对于我的设备(Dell Inspiron 3543 和 Unbuntu 20.04)

内核:5.8.0-34-generic

BIOS:安全启动禁用

lspci -knn | grep Net -A3; rfkill list

06:00.0 Network controller [0280]: Broadcom Inc. and subsidiaries BCM43142 802.11b/g/n [14e4:4365] (rev 01)
    Subsystem: Dell Wireless 1704 802.11n + BT 4.0 [1028:0016]
    Kernel modules: bcma
0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
Run Code Online (Sandbox Code Playgroud)

内核模块 wl 丢失

尝试过:sudo apt-get install bcmwl-kernel-source

但内核模块仍然wl 没有安装,我的 wifi 也无法工作

bcma模块被列入黑名单。在文件中评论了它blacklist.conf,但无线网络没有运气。

最后,这有帮助[https://bugs.launchpad.net/ubuntu/+source/bcmwl/+bug/1906745]

解决方案

  1. sudo apt-get purge bcmwl-kernel-source

  2. sudo apt-get install Broadcom-sta-source Broadcom-sta-dkms Broadcom-sta-common

  3. 重启

我不是这个领域的专家,但这个解决方案对我有用。