mytop command not found

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

Introduction

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

mytop: command not found

or when using sudo you get the following error message

sudo: mytop: command not found

Solutions to mytop: command not found

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

In Ubuntu mytop is provided by mytop package.

mytop is:

Mytop is a console-based tool for monitoring queries and the performance of MySQL. It supports version 3.22.x, 3.23.x, 4.x and 5.x servers. It’s written in Perl and support connections using TCP/IP and UNIX sockets.

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

sudo apt-get -y install mytop

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

You can also use apt command to install mytop.

sudo apt -y install mytop

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

sudo aptitude install mytop

Summary

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