atopconvert command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
atopconvert: command not found
or when using sudo you get the following error message
sudo: atopconvert: command not found
Solutions to atopconvert: command not found
How To Fix atopconvert: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu atopconvert is provided by atop package.
atop is:
Atop is an ASCII full-screen performance monitor, similar to the top command, but atop only shows the active system-resources and processes, and only shows the deviations since the previous interval. At regular intervals, it shows system-level activity related to the CPU, memory, swap, disks and network layers, and it shows for every active process the CPU utilization in system and user mode, the virtual and resident memory growth, priority, username, state, and exit code. The process level activity is also shown for processes which finished during the last interval, to get a complete overview about the consumers of things such as CPU time.
Author: Gerlof Langeveld [email protected]
To fix this problem, we can install more using the command below.
sudo apt-get -y install atop
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install atop.
sudo apt -y install atop
Or if you have aptitude installed you can use the following command.
sudo aptitude install atop
Summary
In this tutorial we learn how to fix atopconvert command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.