uprecords Command Examples in Linux

The “uprecords” command is a Linux utility that displays a summary of historical uptime records. When you run the “uprecords” command in a terminal, it will show you a table that lists the top uptimes for your system, including the date and time of the last reboot.

The “uprecords” command retrieves the information from the “/var/log/wtmp” file, which contains a record of all system logins, logouts, and reboots. By default, the utility will display the top ten uptime records, but you can specify a different number of records to display using the “-n” option.

The table produced by the “uprecords” command lists the uptime records in descending order, with the longest uptime at the top. Each row of the table shows the number of days, hours, and minutes that the system has been up, as well as the date and time of the last reboot.

In addition to displaying the uptime records, the “uprecords” command can also generate a report that summarizes the average uptime, the total uptime, and the number of reboots for a specific time period. To generate this report, you can use the “-s” option followed by a start date and the “-e” option followed by an end date.

uprecords Command Examples

1. Display a summary of the top 10 historical uptime records:

# uprecords

2. Display the top 25 records:

# uprecords -m 25

3. Display the downtime between reboots instead of the kernel version:

# uprecords -d

4. Show the most recent reboots:

# uprecords -B

5. Don’t truncate information:

# uprecords -w

Summary

Overall, the “uprecords” command is a useful utility for tracking the uptime of your Linux system and identifying any unexpected reboots or downtime. It can also provide valuable insights into the reliability and stability of your system over time.

Related Post