總結一些查看Linux開機關機時間的方法 1: who 命令查看 who -b 查看最後一次系統啟動的時間。 who -r 查看當前系統已耗用時間 linux已耗用時間: 1.uptime命令 輸出:16:11:40 up 59 days, 4:21, 2 users, load average: 0.00, 0.01, 0.00 即為啟動並執行4個小時21分鐘
2.查看/proc/uptime檔案計算系統啟動時間 cat /proc/uptime 輸出: 5113396.94 575949.85 第一數字即是系統已啟動並執行時間5113396.94 秒,運用系統工具date即可算出系統啟動時間
3.last reboot [root@master ~]# last reboot
reboot system boot 2.6.32-431.el6.x Tue Feb 27 20:55 - 21:34 (00:39)
reboot system boot 2.6.32-431.el6.x Tue Feb 27 08:41 - 17:30 (08:48)
reboot system boot 2.6.32-431.el6.x Mon Feb 26 22:16 - 22:45 (00:28)
reboot system boot 2.6.32-431.el6.x Mon Feb 26 21:45 - 22:10 (00:24)
reboot system boot 2.6.32-431.el6.x Mon Feb 26 08:41 - 17:25 (08:44)
reboot system boot 2.6.32-431.el6.x Sun Feb 25 08:41 - 16:51 (08:10)
reboot system boot 2.6.32-431.el6.x Sat Feb 24 20:48 - 22:10 (01:21)
reboot system boot 2.6.32-431.el6.x Sat Feb 24 08:41 - 17:25 (08:44)
reboot system boot 2.6.32-431.el6.x Fri Feb 23 23:16 - 23:24 (00:07)
reboot system boot 2.6.32-431.el6.x Fri Feb 23 08:41 - 17:12 (08:31)
reboot system boot 2.6.32-431.el6.x Thu Feb 22 20:31 - 22:10 (01:38)
....
其中第一行 20:55 - 21:34 (00:39) 表示開機時間20:55 目前時間21:34 已耗用時間:39分鐘 (系統還有運行中,再執行下last reboot 21:34 會發生變化)
其中第二行 08:41 - 17:30 (08:48) 表示上次開機時間08:41 關機時間17:30 已耗用時間:8小時48分鐘 (不再改變)