dhcpcanon-script command not found

In this troubleshooting guide we learn how to fix dhcpcanon-script command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

dhcpcanon-script: command not found

or when using sudo you get the following error message

sudo: dhcpcanon-script: command not found

Solutions to dhcpcanon-script: command not found

How To Fix dhcpcanon-script: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu dhcpcanon-script 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-script command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.