downtimes command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
downtimes: command not found
or when using sudo you get the following error message
sudo: downtimes: command not found
Solutions to downtimes: command not found
How To Fix downtimes: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu downtimes is provided by downtimed package.
downtimed is:
Downtimed is a daemon intended to monitor and record the times an operating system is non-functional. It does this by keeping a simple database file and by regularly recording time stamps. A client executable reads the database to account for the lengths of periods when the system was down.
To fix this problem, we can install more using the command below.
sudo apt-get -y install downtimed
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install downtimed.
sudo apt -y install downtimed
Or if you have aptitude installed you can use the following command.
sudo aptitude install downtimed
Summary
In this tutorial we learn how to fix downtimes command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.