如何找到上次记录的系统启动和关闭时间?


27

我是在Ubuntu Server 10.04上的Web应用程序上工作的Rails开发人员。由于内部需求,我被要求找到最近的10个系统启动和关闭时间...我不知道在哪里可以找到这些详细信息。有人可以帮我吗?

Answers:


47

使用last命令。

last -x | grep shutdown
last -x | grep reboot

您可以将其head传送到,以读取最后n个实例。例如,在您的情况下:

last -x | grep shutdown | head -n 10

您还应该设置

BOOTLOGD_ENABLE=Yes

/etc/default/bootlogd文件中(默认情况下可以为“否”)。


好的答案,我补充说| 尾巴-10
enzotib 2011年

我没有/etc/default/bootlogd在我的Ubuntu 16.04.2
瓦迪姆·科托夫

关于如何启用bootlogd的更多信息,从Debian Wheezy开始(即从Ubuntu 11.10开始,这似乎是没有必要的)。
AndyP '18

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.