对uname -rs的输出是:
Linux 4.16.0-999-lowlatency对iwconfig的输出是:
enp2s0 no wireless extensions.
lo no wireless extensions.对sudo modprobe 8723de的输出是:
[sudo] password for chinodroid:
modprobe: FATAL: Module 8723de not found in directory /lib/modules/4.16.0-999-lowlatency发布于 2018-04-13 23:29:51
rtl8723de驱动程序位于lwfinger的GitHub回购的扩展分支中。驱动程序最终会进入Ubuntu提供的Linux内核,但是如果现在需要驱动程序,您可以自己构建和安装它。
第1步是在lwfinger的回购中编译WiFi驱动程序。可以随意修改附加到make上的D1标志上的数字,以更改并行构建作业的数量,以适应系统,例如,如果内存不足。
$ git clone --branch extended https://github.com/lwfinger/rtlwifi_new.git >/dev/null 2>&1
$ cd rtlwifi_new && make -j8第2步是安装驱动程序并重新启动。重新启动后,驱动程序应该自动加载,但如果不加载,则可以使用modprobe手动加载。
$ sudo make install
$ sudo reboot
[ system reboots ]
$ lsmod |grep --quiet rtl8723de || sudo modprobe rtl8723dehttps://askubuntu.com/questions/1024794
复制相似问题