Linux – Interpreting last reboot output

linuxreboot

According to this webpage titled, “Linux Find Out Last System Reboot Time and Date Command” I can do last reboot | head -1 to see when my system was last rebooted. The output I get looks similar to the output they provide:

reboot   system boot  3.13.0-116-gener Thu Apr 13 14:12 - 20:09  (05:56)

My question is what does the 14:12 - 20:09 part mean? Does that mean the system began the reboot process at 2:12pm and ended at 8:09pm? Because that seems highly improbable to me.

Best Answer

Run last reboot -F and the output should be clearer. The -F option means:

Print full login and logout times and dates.

So those values show the timespan between reboots.

Related Question