uptimed command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
uptimed: command not found
or when using sudo you get the following error message
sudo: uptimed: command not found
Solutions to uptimed: command not found
How To Fix uptimed: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu uptimed is provided by uptimed package.
uptimed is:
The uptime daemon tracks a system’s highest uptimes via boot IDs, using the system boot time to keep sessions apart from each other. It features a console program to display statistics, and can send mail if a milestone or a new record is reached.
To fix this problem, we can install more using the command below.
sudo apt-get -y install uptimed
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install uptimed.
sudo apt -y install uptimed
Or if you have aptitude installed you can use the following command.
sudo aptitude install uptimed
Summary
In this tutorial we learn how to fix uptimed command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.