Last updated on July 17, 2020 by Dan Nanni
There are several ways to find out the last system reboot time.
last
The first method is to use last
command.
$ last reboot
This command actually shows system uptime for the last few days. Originally the last
command is designed to show login history of a particular user. In Linux, a special "pseudo user" named reboot
automatically logs in to the system right after the system has rebooted. Thus by checking the login history of reboot
user, you can check the last reboot time.
who
Another command to check the time of last system boot is to use who
command with -b
option.
$ who -b
uptime
You can also use uptime
command to deduce last reboot time. The uptime
command shows you the current time, as well as how long the system has been running. From this information, you can calculate the time when the system was last booted.
$ uptime
This website is made possible by minimal ads and your gracious donation via PayPal or credit card
Please note that this article is published by Xmodulo.com under a Creative Commons Attribution-ShareAlike 3.0 Unported License. If you would like to use the whole or any part of this article, you need to cite this web page at Xmodulo.com as the original source.
Xmodulo © 2021 ‒ About ‒ Write for Us ‒ Feed ‒ Powered by DigitalOcean