全部博文(333)
分类: LINUX
2011-09-05 17:28:52
This last weekend and I have to play a little bit with Ubuntu 10.4 and my new wireless USB adapter TP-LINK model TL-WN721N. The Ubuntu 10.4 has not recognized the adapter, so I had to ask Google how to make that works. I’ve tried many things, one was using diswrapper with Windows Driver, but did not work. After another attempts I found a solution, and I decide to write here.
The first step is to get the firmware, you can download it from the following link:
After the download you need to copy it to /dev/firmware directory:
sudo cp -r ~/Downloads/ar9271.fw /lib/firmwareNow we need to get the latest version of compact wireless, you can get it from the link below:
I got the file
After the download you will need to uncompress the file:
tar -xjvf compact-wireless-2.6.tar.bz2Now, it’s time to compile the driver. Enter in directory:
cd compat-wireless-2010-05-23/and type the command:
sudo makeAfter the compilation, you can install the driver using the command:
sudo make installNow, you need to unload the old driver and load the new one:
sudo make unload sudo make load ath9k_htcAfter loading the new driver you must reboot you system and once the system rebooted you will be able to use your wireless connection.
注释:本人在最后一步提示错误:蓝牙驱动无法安装,但是没关系,重启系统后,就可以连接无线网络了