有时候需要查看Linux系统运行了多久时间,此时需要知道上次开机启动时间; 有时候由于断电或供电故障突然停机,需要查看Linux开机时间/重启时间;
下面总结一些查看Linux开机关机时间的方法
1: who 命令查看
who -b 查看最后一次系统启动的时间。
who -r 查看当前系统运行时间
[root@strong setup]# who -b
系统引导 2019-12-12 09:08
2: last reboot
如下所示last reboot可以看到Linux系统历史启动的时间。 重启一下操作系统后,然后 [root@strong setup]# last reboot
reboot system boot 3.10.0-957.el7.x Thu Dec 12 09:08 - 14:02 (1+04:53)
reboot system boot 3.10.0-957.el7.x Tue Dec 10 17:32 - 14:02 (2+20:30)
reboot system boot 3.10.0-957.el7.x Wed Dec 4 19:55 - 14:02 (8+18:07)
wtmp begins Wed Dec 4 19:55:08 2019
[root@strong setup]#
|