Cryptema’s Blog

my blocknotes…

Posts Tagged ‘aircrack-ng injection mode’

Install iw to use airmon-ng

Posted by cryptema on 20 May 2009


This is a simple script to install iw module in Ubuntu 9.04.

Save follow script as “iw_install.sh

#!/bin/bash
wget http://wireless.kernel.org/download/iw/iw-0.9.13.tar.bz2
tar jxf iw-0.9.13.tar.bz2
cd iw-0.9.13
sudo apt-get install libnl-dev
export PKG_CONFIG_PATH=/usr/lib:$PKG_CONFIG_PATH
make 
sudo make install

To use this script:

chmod +x iw_install.sh
sudo ./iw_install.sh

Posted in Linux | Tagged: , , , , , , | 3 Comments »