Deepin OS:无法检测到无线

Deepin OS:无法检测到无线

我是 Deepin OS linux 的新手。安装后我找不到 wifi 连接。如果在 Windows 操作系统上,我可能会检查设备管理器以确保无线驱动程序已正确安装。Deepin OS linux 怎么样?我该怎么办?

屏幕截图

输出:请参阅lspci-knn| grep Net-A3

brother@brother-PC:~/Desktop$ lspci -knn | grep Net -A3
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. Device [10ec:d723]
    Subsystem: Hewlett-Packard Company Device [103c:8319]
    Kernel modules: wl

答案1

Realtek Semiconductor Co., Ltd. Device [10ec:d723]是 Realtek RTL8723DE 芯片组,您的内核版本尚未原生支持它,因此需要驱动程序。

在终端中执行以下操作:

git clone https://github.com/smlinux/rtl8723de.git -b 4.11-up
dkms add ./rtl8723de
dkms install rtl8723de/5.1.1.8_21285.20171026_COEX20170111-1414
depmod -a
reboot

来源:https://github.com/smlinux/rtl8723de

答案2

使用这些命令:

wget http://archive.ubuntu.com/ubuntu/pool/restricted/b/bcmwl/bcmwl-kernel-source_6.30.223.271+bdcom-0ubuntu1~1.3_amd64.deb

sudo dpkg -i bcmwl-kernel-source_6.30.223.271+bdcom-0ubuntu1~1.3_amd64.deb

相关内容