How to deploy TL-WN722N in Ubuntu 14.04 Back
Install all the dependencies in need:
sudo apt-get update
apt-get install gcc build-essential linux-headers-generic linux-headers-`uname -r`Download backports-3.16-1.tar.gz and unzip it:
wget https://www.kernel.org/pub/linux/kernel/projects/backports/stable/v3.16/backports-3.16-1.tar.gz
tar xvfz backports-3.16-1.tar.gzEnter the uncompressed directory and clean build area:
cd backports-3.16-1 && sudo make cleanBuild and Compile:
sudo makeIf you have met some error while compiling, following these instructions to specify the driver you want to build and install by running the following command and make again:
sudo make defconfig-ath9k && sudo makeIf there is no error, then install:
sudo make installLoad drivers at boot time:
echo "ath9k" | sudo tee -a /etc/modules
echo "ath9k_htc" | sudo tee -a /etc/modulesEdit rc.local:
# sudo vim /etc/rc.local
# use `lsusb` to check the usb device id of your TL-WN722N
# add the following two lines into the file
# Declare TP-WN727N USB ID to ath9k_htc module
echo "148F 7601" | tee /sys/bus/usb/drivers/ath9k_htc/new_id
exit 0Finally, the script mentions something about updating your initramfs. It might not be needed but these are kernel modules so that's what we will do by running the following command:
sudo update-initramfs -k all -uand don't forget to update grub when you are done:
sudo update-grubAfter all have done, all should take effect after reboot the computer.
Add the following line to /etc/network/interface:
# sudo vim /etc/network/interface
iface wlan0 inet manualand run the following command:
sudo service network-manager restart