|
Linux RT2870 Patch Driver Setup Tutorial
Mhis tutorial is intended to demonstrate the fresh installation of the RT2870 patch driver on Ubuntu 9.04
Highlight of the Linux Patch Driver |
Driver RT2800/Stacksmac 80211
(for RT2870 Chipset)
Excellent
stability of connection even with the lowest signals, and fully supported by Network Manager
with all encryption. (open, WEP and WPA/WPA2)
"Injection" and "Monitoring" are supported.
For"spoffing" the macdress
with "macchanger" is needed the driver rt2800usb. |
1. Installion of Ubuntu 9.04 (Linux Kernel 2.6-28) on a hard disk partition
2. Creating a Dual Boot Platform
3. Changing GRUB for altering the Boot Sequence
4. Updating your OS Packages before continuing
sudo dpkg --configure
-a && sudo apt-get
install -f
&& sudo apt-get
update
sudo apt-get
install linux-headers-$(uname -r)
buildessential
make patch gettext gcc
python-psyco
autoconf subversion tcl8.5 libssl-dev
libnl1 libnl-dev
5. Upgrading the package "IW"
sudo mkdir /usr/src/drivers
cd /usr/src/drivers
sudo wget http://www.danets.com/download/linux/iw-0.9.15.tar.bz2
sudo tar jxvf iw-0.9.15.tar.bz2
cd iw-0.9.15
sudo make
sudo make install
6. Installing the RT2870 Patch Driver on Ubuntu 9.04
sudo wget http://www.danets.com/download/linux/rt2870-pdriver.tar.bz2
sudo rmmod mac80211
echo "blacklist rt2870sta" | sudo tee -a
/etc/modprobe.d/blacklist.conf
echo "blacklist mac80211" | sudo tee -a
/etc/modprobe.d/blacklist.conf
sudo tar jxvf compat-wireless-aircrack-036h-050nh.tar.bz2
cd compat-wireless-aircrack-036h-050nh
sudo make
sudo make install
sudo make unload
sudo modprobe rt2800usb
7. Installing the Injection and Moniting test platform
sudo apt-get install aircrack-ng
8. Testing Injection
airmon-ng start ra0
aireplay-ng test mon0
"Injection is Working!"
top |