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

Ken*_*ppo 9 wireless system-installation realtek-wireless

我的 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
Run Code Online (Sandbox Code Playgroud)
$ 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]
Run Code Online (Sandbox Code Playgroud)

GAD*_*D3R 11

smlinux/rtl8723de上提供了 linux 驱动程序

要求 :

一个 Linux 内核 >= 4.11

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

git clone https://github.com/smlinux/rtl8723de
cd rtl8723de
make 
sudo make install
sudo modprobe -v 8723de
Run Code Online (Sandbox Code Playgroud)

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
Run Code Online (Sandbox Code Playgroud)

更新:

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

sudo apt-add-repository -y ppa:teejee2008/ppa
sudo apt-get update
sudo apt-get install ukuu
Run Code Online (Sandbox Code Playgroud)

列出可用的内核版本:

sudo ukuu --list
Run Code Online (Sandbox Code Playgroud)

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

sudo ukuu --install v4.11.12
Run Code Online (Sandbox Code Playgroud)

ukuu --help

Ubuntu wiki:使用适当的软件包安装邮件内核linux-headers

  • 好人!!!你救了我的命……我刚买了一台新笔记本电脑,但我的 wifi 无法正常工作。我正在努力让它从 2 天开始工作,现在你成功了......非常感谢!! (2认同)

Pil*_*ot6 6

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

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

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

  • iwfiger 说 3 个月后可用:[RTL8723DE 的驱动程序将于 2017 年第四季度准备就绪](https://github.com/lwfinger/rtlwifi_new/issues/270) (3认同)