saidar command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
saidar: command not found
or when using sudo you get the following error message
sudo: saidar: command not found
Solutions to saidar: command not found
How To Fix saidar: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu saidar is provided by saidar package.
saidar is:
saidar is a curses-based application to display system statistics. Statistics include CPU, processes, load, memory, swap, network I/O and disks I/O along with their free space.
saidar utilizes libstatgrab library.
To fix this problem, we can install more using the command below.
sudo apt-get -y install saidar
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install saidar.
sudo apt -y install saidar
Or if you have aptitude installed you can use the following command.
sudo aptitude install saidar
Summary
In this tutorial we learn how to fix saidar command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.