wash command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
wash: command not found
or when using sudo you get the following error message
sudo: wash: command not found
Solutions to wash: command not found
How To Fix wash: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu wash is provided by reaver package.
reaver is:
Reaver performs a brute force attack against an access point’s WiFi Protected Setup pin number. Once the WPS pin is found, the WPA PSK can be recovered and alternately the AP’s wireless settings can be reconfigured.
To fix this problem, we can install more using the command below.
sudo apt-get -y install reaver
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install reaver.
sudo apt -y install reaver
Or if you have aptitude installed you can use the following command.
sudo aptitude install reaver
Summary
In this tutorial we learn how to fix wash command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.