itop command not found

In this troubleshooting guide we learn how to fix itop command not found error message

Introduction

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

itop: command not found

or when using sudo you get the following error message

sudo: itop: command not found

Solutions to itop: command not found

How To Fix itop: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu itop is provided by itop package.

itop is:

itop is a simple interrupt load monitor which opens and monitors /proc/interrupts in a top-like way. It can be set to monitor the file a specific number of times and monitor all interrupts, not only the ones currently in use.

To fix this problem, we can install more using the command below.

sudo apt-get -y install itop

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install itop.

sudo apt -y install itop

Or if you have aptitude installed you can use the following command.

sudo aptitude install itop

Summary

In this tutorial we learn how to fix itop command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.