ttyload command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ttyload: command not found
or when using sudo you get the following error message
sudo: ttyload: command not found
Solutions to ttyload: command not found
How To Fix ttyload: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ttyload is provided by ttyload package.
ttyload is:
Display fairly standard, but hard-coded, ANSI ASCII escape sequences for screen manipulation and colorization for different graphs: 1 minute, 5 minute, 15 minute load averages.
See https://www.daveltd.com/src/util/ttyload/screenshots.html
To fix this problem, we can install more using the command below.
sudo apt-get -y install ttyload
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ttyload.
sudo apt -y install ttyload
Or if you have aptitude installed you can use the following command.
sudo aptitude install ttyload
Summary
In this tutorial we learn how to fix ttyload command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.