Install and Test Aircrack on Raspberry Pi running Raspbian
After running kali for a couple hours I had some issues with my Alfa’s and decided to switch to Raspbian and build up my image from there.
We need to see what’s around us so let’s install aircrack and do some ‘monitoring’.
Start with a updated system:
sudo apt-get update && sudo apt-get dist-upgrade -yNext some requisition:
sudo apt-get install libnl-dev libssl-dev iw -yNow grab yourself a beer and the latest sources from the aircack-ng site:
wget http://download.aircrack-ng.org/aircrack-ng-1.2-beta3.tar.gzTime to compile it:(and drink that beer.)
tar -zxf aircrack-ng-1.2-beta3.tar.gz cd aircrack-ng-1.2-beta3 make sudo make installLast step before we can test is to install Airodump-ng OUI file:
sudo airodump-ng-oui-updateNow put your wifi in monitor mode and check if you can read packages:
sudo airmon-ng start wlan0 sudo airodump-ng mon0
Cleanup:
cd .. rm -rf aircrack-ng*
Have Fun ;)