airodump-join command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
airodump-join: command not found
or when using sudo you get the following error message
sudo: airodump-join: command not found
Solutions to airodump-join: command not found
How To Fix airodump-join: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu airodump-join is provided by airgraph-ng package.
airgraph-ng is:
airgraph-ng is a tool to create a graph ouf of the txt file created by airodump with its -w option. The graph shows the relationships between the clients and the access points.
To fix this problem, we can install more using the command below.
sudo apt-get -y install airgraph-ng
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install airgraph-ng.
sudo apt -y install airgraph-ng
Or if you have aptitude installed you can use the following command.
sudo aptitude install airgraph-ng
Summary
In this tutorial we learn how to fix airodump-join command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.