cdpr command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cdpr: command not found
or when using sudo you get the following error message
sudo: cdpr: command not found
Solutions to cdpr: command not found
How To Fix cdpr: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cdpr is provided by cdpr package.
cdpr is:
cdpr listens on specified network interfaces for Cisco Discovery Protocol packets. It then decodes those packets and outputs the information, optionally sending the information to a server for processing.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cdpr
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cdpr.
sudo apt -y install cdpr
Or if you have aptitude installed you can use the following command.
sudo aptitude install cdpr
Summary
In this tutorial we learn how to fix cdpr command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.