Tech Notes

System Boot & Resume Diagnostics

Contents


Overview

This note contains useful Linux commands for checking system boot time and investigating resume (sleep/wake) events using system logs.

Contents


Check System Boot Time

Use this command to see when the system last booted:

uptime -s

What it shows:

Example output:

2026-05-03 08:14:22

Contents


Check Resume Events (Sleep/Wake)

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"

Contents


Combined Usage Notes

Important Note: If resume events are missing, it may indicate that:

Contents