Linux Realtek Wireless Pack Driver Installing
You likely don't need to install anything. The drivers for many of the Realtek wireless adapters are already in-tree. I have an 8192CU myself.At least the following RT chipsets are supported:.
8192CU. 8188CU. 8712.
8188EU. 8821 (USB?)As for ancially matters:. It's NOT 'Linux OS', just Linux to be generic, or Ubuntu. You can't run Windows PE executables (.exe) under Linux. They're different.
Linux uses ELF, and regardless the libraries seutp.exe is linked against are neither present nor of the appropriate format. You could use Wine to try and run the program but that is obviously futile here. This is a different OS. Vendor-provided drivers are often outdated. In Linux, be wary of anything not in-tree, save a few.
If the vendor provided additional userspace to manage your wireless device, it's just reinventing and reimplementing the wheel. There's already a plethora of generic better-developed Linux-target programs for managing wireless adapters.
How To Install Realtek Wifi Driver In Kali Linux
EDIT:it is recommended to use the official driver hosted at the rtlwifi-new git repsitory maintained by Larry Fingers.Well, at last, RTL8723DE officially supported driver is made available in the rtlwifi-new git extended branch. What is left to do is, Bluetooth support for this laptop. Bluetooth share the same RTL8723DE hardware?

Bluetooth is working with kernel 4.17 and above.Before installing RTL8723DE driver, you have to make sure that Linux kernel headers for your respective distros are installed. For example: In Debian/Ubuntu the package name sounds like 'linux-headers-4.xx-generic'. In Fedora/RedHat, it will be kernel-headers-4.xx-x8664 etc.For installing from git sources in Ubuntu:Either download a '.zip' copy of the git sources for RTL8723DE driver from, extract it and follow step (2) belowOR1. Make sure you have git installed. You can install git using apt install git or through synaptic/software manager.

If you want to use dkms to make and install the driver, make sure that dkms also is installed. You can download and install using below commands, in a terminal::$ sudo apt update && sudo apt install git dkms2. The RTL8723DE driver is in the git extended branch. So,Open a terminal::$ cd Downloads:$ git clone -b extended -single-branch cd rtlwifinewNow, either you can run::/Downloads/rtlwifinew$ make:/Downloads/rtlwifinew$ sudo make installOR use dkms to build and manage the modules::/Downloads/rtlwifinew$ sudo dkms add./rtlwifinew:/Downloads/rtlwifinew$ sudo dkms build rtlwifi-new/0.6:/Downloads/rtlwifinew$ sudo dkms install rtlwifi-new/0.6:/Downloads/rtl-new/rtlwifinew$ sudo modprobe -v rtl8723de antsel=2^^ That should work. If firmware error is shown, reboot and will work.
Make sure, you have linux-headers for the respective kernel(s) and build-essential packages installed.For me, antsel=2 shows the maximum WiFi signal gain. So, I've added below lines in a separate conf file::$ sudo /bin/sh -c 'echo 'options rtl8723de antsel=2' /etc/modprobe.d/rtl8723de.conf'Hope this helps. If it does not build, use::/Downloads/rtlwifinew$ sudo dkms install rtlwifi-new/0.6 -forceUPDATE:RTL8723D Bluetooth works now. You need Kernel 4.17 or newer to get Bluetooth working with RTL8723DE.The steps are elaborately explained in this post:RTL8723D Bluetooth Firmware is available in Linux firmware git directory as committed by Larry Fingers (rtlwifi-new):Firmware file names:/lib/firmware/rtlbt/rtl8723dfw.bin/lib/firmware/rtlbt/rtl8723dconfig.bin/lib/firmware/rtlwifi/rtl8723defw.binYou have to git clone the directory to get the firmware and place the specific rtl8723d firmware in /lib/firmware/rtlbt folder.EDIT: Now, Bluetooth for RTL8723DE works with kernel Linux-4.17-rc2 and newer. I would suggest using DKMS support so the driver will be built for a new kernel while the kernel is installed, now that the dkms.conf is fixed, for all users, check terminal, command uname -r to determine kernel versionFor 4.10 and older sudo apt-get install build-essential git dkmsgit clone -b 4.10-down dkms add./rtl8723desudo dkms install rtl8723de/5.1.1.81026COEX201RebootFor kernel 4.11 and newer sudo apt-get install build-essential git dkmsgit clone dkms add./rtl8723desudo dkms install rtl8723de/5.1.1.81026COEX201Reboot. Rtlwifi maintainer Larry Fingers has the officially released driver for RTL8723DE WiFi module in Linux. Presently, the driver is getting added into his repository.
When I tried, repository was missing rtl8723defw.bin firmware. That will be available by tomorrow (hopefully).The driver for RTL8723DE at is not the version that will end up in the Linux kernel. It uses cfg80211 for network support, but NOT mac80211. If you want to test the kernel version, my contact at Realtek has made it available. It is now in the 'extended' branch of rtlwifinew.
Do a 'git pull' and follow the instructions in README.md.This is the repo. The driver is available as of now in 'extended' branch. I will update with steps to install after confirming this is working for me.
So, the official driver from Realtek which is available in is working great. You Thave to download the zip file from the 'extended' branch of the git repo. Or use git command to clone the repository locally. Then, open the terminal inside rtlwifinew directory and run 'make' followed by 'sudo make install'.With my HP-15-BS576TX laptop, the signal strength is satisfactory with a 'modprobe -v rtl8723de antsel=2'. I have added 'options rtl8723de antsel=2' in a file /etc/modprobe.d/rtl8723de.conf.Now, only Bluetooth support remaining. From whatever I understand, bluetooth and wifi shares the same RTL8723DE hardware. Hope the support will be available soon.