Linux Survival Basics
Read-onlyShow systemd Timer Unit File
You need the effective timer file and drop-ins.
Command
systemctl cat backup.timer
Before you run this
System impact: Read-only. Low when scoped to the shown target.
When not to use it: Do not edit unit files before reading drop-ins and overrides.
Expected output
The unit file plus any drop-in fragments.
System impact
Read-only. Nothing changes. The command reads current state and prints diagnostic evidence.
Recovery / rollback: no state is changed.
When to use it
Use when the timer exists but fires at the wrong time.
When not to use it
Do not edit unit files before reading drop-ins and overrides.
Common misread
Do not edit unit files before reading drop-ins and overrides.
Example run
Commands shown
These are the commands shown for inspection. Treat them as an example, not proof that your system will behave identically.
systemctl cat backup.timersystemctl cat backup.timer
next steps
Related commands
Compare Failure Output With the Effective Unit
Put the failed step next to the unit config that created it.
systemctl status app-worker --no-pager --lines=50 && systemctl cat app-worker
Inspect the Unit File and Drop-ins Together
The bug may be in an override file, not the main unit.
systemctl cat app-worker
Read One systemd Timer Status
Timer status shows whether the schedule is loaded and active.
systemctl status backup.timer --no-pager
Read Recent systemd Timer Logs
Timer logs show whether systemd attempted to trigger the task.
journalctl -u backup.timer --since "24 hours ago" --no-pager
List systemd Timers and Last Runs
A timer can be inactive, missed, or waiting for the wrong calendar.
systemctl list-timers --all --no-pager
next diagnostic step
Where to go from this command
- Related problem hub Use this command as part of the repair path.
Study mapping
Use this as independent command practice: read the notes, predict the output, then compare it with the example before using a real shell.
Independent study support only. No affiliation, endorsement, exam dumps, or real exam questions.