Skip to content

Instantly share code, notes, and snippets.

@ohbus
Last active January 31, 2023 04:35
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ohbus/46a2d85de196a7da6e189c61f32e8814 to your computer and use it in GitHub Desktop.
Save ohbus/46a2d85de196a7da6e189c61f32e8814 to your computer and use it in GitHub Desktop.
[Solved] HP WiFi Not Working | Install RTL8723DE Wifi Driver in Ubuntu
#!/bin/bash
# Install RTL8723DE Wifi Driver in Ubuntu
# Subhrodip Mohanta - 18 July, 2019.
sudo apt install git build-essential dkms
cd /tmp
git clone -b extended https://github.com/lwfinger/rtlwifi_new.git
sudo dkms add ./rtlwifi_new
sudo dkms install rtlwifi-new/0.6
sudo modprobe -r rtl8723de && sudo modprobe rtl8723de
echo "And Wifi works after reboot without doing any configuration, at least in my case in Ubuntu 19.04. If not, try command to write it into configuration file (replace 3 to 1, 2 or 4 if signal is weak)."
# echo "options rtl8723de ant_sel=3" | sudo tee /etc/modprobe.d/rtl8723de.conf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment