dhcpcanon command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dhcpcanon: command not found
or when using sudo you get the following error message
sudo: dhcpcanon: command not found
Solutions to dhcpcanon: command not found
How To Fix dhcpcanon: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dhcpcanon is provided by dhcpcanon package.
dhcpcanon is:
Python implementation of the DHCP Anonymity Profiles (RFC7844) designed for users that wish to remain anonymous to the visited network minimizing disclosure of identifying information.
To fix this problem, we can install more using the command below.
sudo apt-get -y install dhcpcanon
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install dhcpcanon.
sudo apt -y install dhcpcanon
Or if you have aptitude installed you can use the following command.
sudo aptitude install dhcpcanon
Summary
In this tutorial we learn how to fix dhcpcanon command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.