tiptop command not found

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

Introduction

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

tiptop: command not found

or when using sudo you get the following error message

sudo: tiptop: command not found

Solutions to tiptop: command not found

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

In Ubuntu tiptop is provided by tiptop package.

tiptop is:

Tiptop is a performance monitoring tool for Linux. It provides a dynamic real-time view of the tasks running in the system. Tiptop is very similar to the top utility, but most of the information displayed comes from hardware counters.

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

sudo apt-get -y install tiptop

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

You can also use apt command to install tiptop.

sudo apt -y install tiptop

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

sudo aptitude install tiptop

Summary

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