uprecords command not found

In this troubleshooting guide we learn how to fix uprecords command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

uprecords: command not found

or when using sudo you get the following error message

sudo: uprecords: command not found

Solutions to uprecords: command not found

How To Fix uprecords: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu uprecords 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 uprecords command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.