更新后未找到 Wifi 适配器

更新后未找到 Wifi 适配器

我正在使用 Ubuntu 18.04。今天更新后(我猜是将内核更新到 5.3),我的 wifi 无法使用。它说缺少 wifi 适配器。

我之前使用的是 lwfinger 的存储库(https://github.com/lwfinger/rtlwifi_new),但现在这些文件已经被删除了,因为他说内核 5.0 及以上版本已经内置了驱动程序。

有人能帮我用内置驱动程序或其他方式恢复我的 wifi 吗?我有一张 rtl8723 卡。

输出lspci -knn | grep Net -A3; rfkill list

03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. Device [10ec:d723]
    Subsystem: Hewlett-Packard Company Device [103c:8319]
    Kernel modules: wl
04:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Raven Ridge [Radeon Vega Series / Radeon Vega Mobile Series] [1002:15dd] (rev c5)
0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no

答案1

Larry Finger 已将此驱动程序移至另一个分支。您有一个 RTL8723DE 设备,仍然需要驱动程序。

您可以通过以下方式安装它们

sudo apt update
sudo apt install git dkms
git clone https://github.com/lwfinger/rtw88.git
sudo dkms add ./rtw88
sudo dkms install rtlwifi-new/0.6

相关内容