未找到 Wifi 适配器 - Thinkpad E480 RTL8822BE 上的 Ubuntu 18.04

未找到 Wifi 适配器 - Thinkpad E480 RTL8822BE 上的 Ubuntu 18.04

我安装了 Ubuntu 18.04,但 wifi 适配器无法工作。它在 Windows(双启动)上可以工作,以太网/有线连接可以工作,但没有 wifi 和可能的蓝牙。

我尝试了以下几行:

sudo apt update
sudo apt install build-essential git dkms
git clone https://github.com/tomaspinho/rtl8821ce.git
cd rtl8821ce
sudo ./dkms-install.sh
sudo modprobe 8821ce

但我不认为这是正确的驱动力,所以我继续https://github.com/samcv/A485-RTL8822BE-firmware并且只出现错误。

有人知道我可以使用的一个简单修复方法吗?我对 Linux 还不太熟悉。任何帮助都将不胜感激。

sudo lshw -class network
  *-network                 
       description: Ethernet interface
       product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:03:00.0
       logical name: enp3s0
       version: 10
       serial: e8:6a:64:31:eb:8a
       size: 100Mbit/s
       capacity: 1Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168g-3_0.0.1 04/23/13 ip=192.168.1.107 latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
       resources: irq:16 ioport:c000(size=256) memory:f1304000-f1304fff memory:f1300000-f1303fff

*-network UNCLAIMED
       description: Network controller
       product: Realtek Semiconductor Co., Ltd.
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:05:00.0
       version: 00
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress cap_list
       configuration: latency=0
       resources: ioport:b000(size=256) memory:f1100000-f110ffff

答案1

确保安全启动已禁用在您的 BIOS 中,否则任何软件修改都不会生效。

答案2

为了获取有关该“UNCLAIMED”网络控制器的更多信息,请使用以下版本更新您的 Ubuntu...
sudo 更新-pciids
...命令,然后重复...
sudo lshw-类网络
...命令。然后您的设备应该可以识别 RTL8822BE 802.11a/b/g/n/ac WiFi 适配器。

你不妨也这样做......
sudo 更新-usbids
...命令,可能用于更新您各种 USB 设备的信息。

我不熟悉 Manjaro Linux,但我猜测启动问题与 EFI 特权或缺乏特权有关。

相关内容