kmon command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
kmon: command not found
or when using sudo you get the following error message
sudo: kmon: command not found
Solutions to kmon: command not found
How To Fix kmon: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu kmon is provided by kmon package.
kmon is:
kmon is an interactive kernel monitor for the terminal. It can insepct and load kernel modules, and it can monitor kernel activity. It basically combines dmesg and kmod into one application. Note that is probably needs to run as root.
To fix this problem, we can install more using the command below.
sudo apt-get -y install kmon
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install kmon.
sudo apt -y install kmon
Or if you have aptitude installed you can use the following command.
sudo aptitude install kmon
Summary
In this tutorial we learn how to fix kmon command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.