Boot

Linux PC 的啟動/停止時間

  • March 18, 2019

我想查看 Linux PC 的啟動/停止時間。

我找到了這個命令,但是輸出錯誤:

last reboot -F
reboot   system boot  4.15.0-46-generi Thu Mar 14 10:04:27 2019 - Thu Mar 14 15:31:11 2019  (05:26)

這不是真的。不是 10:04,而是 09:04。

請參閱相關問題:https ://askubuntu.com/questions/854567/last-reboot-is-missing-one-hour/859782

如何在 Ubuntu 18.04 上查看正確的開始/停止時間?

# timestamps corresponds to your current timezone
user@node:~$ journalctl --list-boots
-3 0f2fcb9569384a2aa2d5492505f86cda Tue 2018-11-27 16:45:22 CET—Thu 2018-11-29 10:10:07 CET
-2 646787bd244d4230a5986f00207c1e8c Sun 2019-02-24 19:50:23 CET—Tue 2019-02-26 22:49:29 CET
-1 c922041a9a3847babd51ac79dd06923c Wed 2019-02-27 08:27:28 CET—Sun 2019-03-03 08:52:52 CET
0 0aa03fbca4bf4976b922f9f77c63f65a Sun 2019-03-03 09:02:47 CET—Mon 2019-03-18 17:10:08 CET

# timestamps corresponds to universal timezone
user@node:~$ journalctl --list-boots --utc
-3 0f2fcb9569384a2aa2d5492505f86cda Tue 2018-11-27 15:45:22 UTC—Thu 2018-11-29 09:10:07 UTC
-2 646787bd244d4230a5986f00207c1e8c Sun 2019-02-24 18:50:23 UTC—Tue 2019-02-26 21:49:29 UTC
-1 c922041a9a3847babd51ac79dd06923c Wed 2019-02-27 07:27:28 UTC—Sun 2019-03-03 07:52:52 UTC
0 0aa03fbca4bf4976b922f9f77c63f65a Sun 2019-03-03 08:02:47 UTC—Mon 2019-03-18 16:10:08 UTC

UTC 時區是通用的,這就是為什麼避免任何夏令時誤解問題很有用。

journalctl手冊頁:

      --list-boots
          Show a tabular list of boot numbers (relative to the current boot), their IDs, and the timestamps of the first and last message pertaining to the boot.

PS:如果您只有一行返回journalctl,只需創建文件夾/var/log/journal以啟用多個磁碟日誌保留

引用自:https://serverfault.com/questions/958409