numatop command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
numatop: command not found
or when using sudo you get the following error message
sudo: numatop: command not found
Solutions to numatop: command not found
How To Fix numatop: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu numatop is provided by numatop package.
numatop is:
NumaTOP is an observation tool for runtime memory locality characterization and analysis of processes and threads running on a NUMA system. It helps the user characterize the NUMA behavior of processes and threads and identify where the NUMA-related performance bottlenecks reside.
To fix this problem, we can install more using the command below.
sudo apt-get -y install numatop
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install numatop.
sudo apt -y install numatop
Or if you have aptitude installed you can use the following command.
sudo aptitude install numatop
Summary
In this tutorial we learn how to fix numatop command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.