Skip to content

Instantly share code, notes, and snippets.

@curtisbelt
Created April 17, 2017 05:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save curtisbelt/f86e3421bf4820a925b3d07cc1059f28 to your computer and use it in GitHub Desktop.
Save curtisbelt/f86e3421bf4820a925b3d07cc1059f28 to your computer and use it in GitHub Desktop.
Ubuntu 16.04 Fix Lenovo Ideapad Yoga 13 Wireless RTL8723AU
#!/usr/bin/env bash
# Fix Wireless Driver on Lenovo IdeaPad Yoga 13
# Realtek Semiconductor Corp. RTL8723AU 802.11n WLAN Adapter
# SUCCESSFUL on Ubuntu 16.04.
# FAILED on Ubuntu 16.10, and 17.04.
# On 16.04, Wireless is (usually) able to connect, albeit at <1 Mbps.
# Enough to install git and clone the driver repo.
# If not, will have to use a good ol' USB drive.
sudo apt -y install git
git clone https://github.com/lwfinger/rtl8723au.git
# Make, Install
cd rtl8723au/
make
sudo make install
# Remove the faulty native driver module
sudo modprobe -r r8723au
# Add the new 8723au driver.
sudo modprobe 8723au
# Blacklist native drive from loading in the future
echo "blacklist r8723au" | sudo tee --append /etc/modprobe.d/blacklist-r8723au.conf > /dev/null
echo "Success? Restart to confirm."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment