Airgraph-ng does not install by default with aircrack-ng. Its main wiki page has not been updated for almost six years, but is still relevant and airgraph-ng does see a fix now and again. Getting it running on Kali 2.0 was straightforward enough, but did require a bit of troubleshooting.
Make install threw an error regarding ‘common.mak’ which does not exist. Instead of ‘make install’ it appears that ‘python setup.py install’ should be used for the installation now.
This almost gets you there. Airgraph-ng expects the path /usr/bin/airgraph-ng to be valid, so creating a link to the directory gets it going. The following commands should get airgraph-ng installed and running:
cd /opt svn co http://svn.aircrack-ng.org/trunk/scripts/airgraph-ng cd airgraph-ng python setup.py install ln -s /opt/airgraph-ng /usr/bin/airgraph-ng
Note that trying this on two installs, first time it is run it says that it is getting ‘oui.txt’. I had to let this run for a minute or two before killing it and being able to successfully create an image.
December 18, 2016 at 10:09 am
Thanks! I’m not a linux guru and I would have given up if it were not for your article. I did find however, the link need to be moved to one of the follow:
‘./support/’
‘/usr/local/share/airgraph-ng/’
‘/usr/share/airgraph-ng/’
so all I did was update to
‘ln -s /opt/airgraph-ng /usr/local/share/airgraph-ng’ from above and I was all good
December 19, 2016 at 4:23 am
Thanks for letting me know, and thanks for the alternative. Highly appreciate the feedback.
October 29, 2017 at 5:35 pm
Thanks guys, I used Benjamin’s python install and byarbs link revision and it works perfectly.