尝试 Ubuntu 时无法看到我的 wifi [10ec:d723]

尝试 Ubuntu 时无法看到我的 wifi [10ec:d723]

我的 wifi 出现了问题;似乎当我尝试未安装的 Ubuntu 时,它只能通过以太网电缆检测连接。

我无法连接,并且没有检测到任何可用的 WiFi 网络。

$ lspci
00:00.0 Host bridge: Intel Corporation Device 5904 (rev 02)
00:02.0 VGA compatible controller: Intel Corporation Device 5916 (rev 02)
00:04.0 Signal processing controller: Intel Corporation Skylake Processor Thermal Subsystem (rev 02)
00:08.0 System peripheral: Intel Corporation Sky Lake Gaussian Mixture Model
00:14.0 USB controller: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller (rev 21)
00:14.2 Signal processing controller: Intel Corporation Sunrise Point-LP Thermal subsystem (rev 21)
00:16.0 Communication controller: Intel Corporation Sunrise Point-LP CSME HECI (rev 21)
00:17.0 SATA controller: Intel Corporation Sunrise Point-LP SATA Controller [AHCI mode] (rev 21)
00:1c.0 PCI bridge: Intel Corporation Device 9d10 (rev f1)
00:1c.4 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port (rev f1)
00:1c.5 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port (rev f1)
00:1f.0 ISA bridge: Intel Corporation Device 9d4e (rev 21)
00:1f.2 Memory controller: Intel Corporation Sunrise Point-LP PMC (rev 21)
00:1f.3 Audio device: Intel Corporation Device 9d71 (rev 21)
00:1f.4 SMBus: Intel Corporation Sunrise Point-LP SMBus (rev 21)
01:00.0 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] Sun XT [Radeon HD 8670A/8670M/8690M / R5 M330] (rev 83)
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)
03:00.0 Network controller: Realtek Semiconductor Co., Ltd. Device d723

$ lspci -knn | grep Net -A3
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. Device [10ec:d723]
    DeviceName: Hanksville Gbe Lan Connection
    Subsystem: Hewlett-Packard Company Device [103c:8319]

答案1

Linux 驱动程序可在smlinux/rtl8723de

要求 :

Linux 内核 >= 4.11

linux-headers应该安装适合您的内核的版本。

git clone https://github.com/smlinux/rtl8723de
cd rtl8723de
make 
sudo make install
sudo modprobe -v 8723de

方式dkms(来自开发者驱动程序的指示):

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

更新:

要安装高于4.11您可以使用的内核版本ukuu工具。

sudo apt-add-repository -y ppa:teejee2008/ppa
sudo apt-get update
sudo apt-get install ukuu

列出可用的内核版本:

sudo ukuu --list

要安装特定内核版本(例如4.11.12:):

sudo ukuu --install v4.11.12

ukuu --help

Ubuntu 维基百科:安装邮件内核使用适当的linux-headers包。

答案2

Network controller: Realtek Semiconductor Co., Ltd. Device d723Linux 尚不支持该设备。

是的rtl8723de。也没有供应商驱动程序。

更新:该设备现在支持Linux 5.3+。

答案3

非官方 Linux 驱动程序可用https://github.com/smlinux/rtl8723de。您必须使用 make 编译模块。然后,安装 8723de 模块。

相关内容