Skip to content

Instantly share code, notes, and snippets.

@Lewiscowles1986
Last active September 3, 2019 23:31
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Lewiscowles1986/0165e6a04a738ba5037c to your computer and use it in GitHub Desktop.
Save Lewiscowles1986/0165e6a04a738ba5037c to your computer and use it in GitHub Desktop.
install ralink 7601U USB N+150 wireless driver (Ubuntu 14.04 or Kernel 3.13+)
#!/bin/sh
#setup dependencies
sudo apt-get install --reinstall linux-headers-generic build-essential
#get patched drivers
wget http://www.lewiscowles.co.uk/dls/MT7601U-14.04-patched.tar -O - | tar -x
cd MT7601U-14.04-patched
# build and install
sudo make
sudo make module
sudo make install
#clean
cd ..
sudo rm -r ./MT7601U-14.04-patched
#modprobe for drivers to activate usb
sudo modprobe -v mt7601Usta
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment