Steps must perform in terminal (CLI), by using shortcut key CTRL + ALT + T in most Linux-based OS or in application menu of the system. Make sure you’re in SUDO mode to run command in super user.
NOTE: Be careful and verify what you are doing before you do it, especially in running SUDO mode.
STEPS
Open directory of where the wireless driver is located by typing command below then hit enter.
cd mt7601usta/src
Type command below to scans Makefile inside src folder. make
make
Then by copying compiled files into appropriate locations just type command below.
make install
And now let’s create a directory for our driver installation location.
mkdir -p /etc/Wireless/RT2870STA/
Copy RT2870STA.dat file to created directory.
cp RT2870STA.dat /etc/Wireless/RT2870STA/
Lastly, type command below (using modprobe) to add loadable modules to the Linux kernel.
modprobe mt7601Usta
Done!
References: https://github.com/art567/mt7601usta
For further information about SUDO , please click here to see a complete details and tutorials.