The rtl8723de driver is in the extended branch of lwfinger's GitHub repo. The driver will make its way into the Linux kernel supplied with Ubuntu eventually, but if you need the driver now, you can build and install it yourself.
Step 1 is to compile the WiFi drivers in lwfinger's repo. Feel free to modify the number appended to the -j
flag on make
to change the number of parallel build jobs to suit the system, for instance, if memory is low.
$ git clone --branch extended https://github.com/lwfinger/rtlwifi_new.git >/dev/null 2>&1
$ cd rtlwifi_new && make -j8
Step 2 is to install the driver and reboot. After the restart, the driver should load automatically, but if it doesn't, it can be manually loaded with modprobe
.
$ sudo make install
$ sudo reboot
[ system reboots ]
$ lsmod |grep --quiet rtl8723de || sudo modprobe rtl8723de
site:askubuntu.com
first and flag / close as duplicate first. :-) – Fabby Apr 14 '18 at 00:26-j<n>
inmake
actually does. Also, I recommend not compiling stuff as root - just copy it over afterwards withsudo
... Do you have this device to test? I am wishing I could upvote but I can't test it myself :( – Zanna Apr 14 '18 at 15:46