This note contains useful Linux commands for checking system boot time and investigating resume (sleep/wake) events using system logs.
Use this command to see when the system last booted:
uptime -s
What it shows:
Example output:
2026-05-03 08:14:22
Use this command to filter system logs for resume-related events:
journalctl --since today | grep -i "resume"
What it shows:
You may also want to expand search for related events:
journalctl --since today | grep -Ei "resume|suspend|wake"
uptime -s tells you when the system started runningjournalctl helps you understand what happened during the sessionTogether, they help diagnose:
Important Note: If resume events are missing, it may indicate that: