linux shell

关注公众号 jb51net

关闭
首页 > 脚本专栏 > linux shell > 查询Ubuntu重启时间

查询上次Ubuntu重启时间的方法命令总结

作者:wljslmz

在大多数情况下,Linux 系统的关机时间、重启日期和运行时长等调试信息在系统故障排错时会显得比较重要,本文将详细介绍多种方法来查询上次 Ubuntu 重启的时间,并解释每种方法的背后原理,需要的朋友可以参考下

引言

在 Ubuntu 系统中,有时我们需要了解系统上次重启的日期和时间。这在系统管理、故障排除和日志审计中尤为重要。本文将详细介绍多种方法来查询上次 Ubuntu 重启的时间,并解释每种方法的背后原理。

1. 通过 uptime 命令查询系统运行时间

uptime 命令可以显示系统已经运行的时间。这是最快速且最简单的方法之一。

uptime

uptime 命令的输出通常如下所示:

 12:34:56 up 5 days,  4:23,  3 users,  load average: 0.03, 0.02, 0.00

通过减去系统运行时间,可以推算出系统的重启时间。

假设当前时间为 2024-05-21 12:34:56,系统已经运行 5 days, 4:23

重启时间为:2024-05-21 12:34:56 - 5 days 4:23

使用 Python 脚本计算:

from datetime import datetime, timedelta

current_time = datetime.strptime("2024-05-21 12:34:56", "%Y-%m-%d %H:%M:%S")
uptime = timedelta(days=5, hours=4, minutes=23)

reboot_time = current_time - uptime
print("Reboot time:", reboot_time)

输出结果:

Reboot time: 2024-05-16 08:11:56

2. 使用 last 命令查看系统重启日志

last 命令可以显示最近的登录和重启事件。

last reboot
reboot   system boot  5.4.0-104-generic Fri May 16 08:11 - 12:34  (5+04:23)

3. 通过 who 命令检查系统启动时间

who 命令带有 -b 选项可以显示系统的启动时间。

who -b
system boot  2024-05-16 08:11

4. 查看系统日志文件获取重启时间

系统日志文件中也记录了系统的启动和重启信息。

journalctl --boot
-- Logs begin at Fri 2024-05-16 08:11:34 UTC, end at Fri 2024-05-21 12:34:56 UTC. --
May 16 08:11:34 hostname kernel: Linux version 5.4.0-104-generic (buildd@lgw01-amd64-058) (gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)) #117-Ubuntu SMP Fri Apr 16 02:36:12 UTC 2024 (Ubuntu 5.4.0-104.117-generic 5.4.105)

5. 使用 systemd 工具查询重启时间

systemd-analyze 命令可以显示系统的启动时间。

systemd-analyze
Startup finished in 1.234s (kernel) + 2.345s (userspace) = 3.579s 
graphical.target reached after 2.456s in userspace

6. 编写脚本自动记录和查询重启时间

可以编写脚本自动记录重启时间,便于查询。

#!/bin/bash

logfile="/var/log/reboot_time.log"
if [[ ! -f $logfile ]]; then
  sudo touch $logfile
  sudo chmod 666 $logfile
fi

reboot_time=$(who -b | awk '{print $3, $4}')
echo "Last reboot time: $reboot_time" | sudo tee -a $logfile

7. 使用图形界面工具查询重启时间

对于不习惯使用命令行的用户,可以使用图形界面工具。

到此这篇关于查询上次Ubuntu重启时间的方法命令总结的文章就介绍到这了,更多相关查询Ubuntu重启时间内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文