Last active
September 3, 2019 23:31
-
-
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+)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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