Per iniziare dal sito di Alfa Network ho scaricato i driver aggiornati
Driver
Poi ho eseguito l'installazione seguendo questa procedura:
- Copy driver for network card to Desktop
- Open a terminal
- sudo –i
- cd /home/ubuntu/Desktop
- tar -xf 036NH_2009_1110_Linux.tar.bz2
- cd 2009_1110_RT3070_Linux_STA_v2.1.2.0
- gedit os/linux/config.mk
- Change "HAS_WPA_SUPPLICANT=n" and "HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n" to y
- make && make install
- gedit /etc/modprobe.d/blacklist.conf and add:
a. blacklist rt2x00usb
b. blacklist rt2x00lib
c. blackist rt2800usb - reboot
#!/bin/bash
#A little script to get the AWUS036NH working in ubuntu 11.10
#It also boosts the tx power to 1W
#Coded by GUNN4R, 15 Oct 2011
if [ "$#" -eq 0 ]
then
echo -e "Not Enough Arguements!\\nUsage:\\nboost.sh start -- starts the card"
echo "boost.sh wlan5 -- this boosts the tx power to 1MW"
exit
fi
sudo modprobe rt2800usb
sleep 2
if [ "$1" = "start" ]
then
echo '148f 3070' | sudo tee /sys/bus/usb/drivers/rt2800usb/new_id
ifconfig
else
sudo ifconfig $1 up
sudo iw reg set BO
sudo iwconfig $1 txpower 30
iwconfig
fi
Salvare in un file su desktop con nome AWUS036NH.sh
aprire Terminal e portarsi sulla cartella scrivania
eseguire i comandi:
sudo chmod 755 AWUS036NH.sh
./AWUS036NH.sh start
Alla prossima
Nessun commento:
Posta un commento