Troubleshooting Template
Quick Diagnosis
# First commands to run - paste these immediately
command --status
systemctl status service-name
journalctl -u service-name --since "5 min ago" -n 50
Symptom: [Describe what user sees]
Decision Tree
| Check | Result | Action |
|---|---|---|
Check A |
Pass |
Not this issue → try Symptom: [Second Symptom] |
Check A |
Fail |
|
Check B (if A passed) |
Pass |
Not this issue → try Symptom: [Third Symptom] |
Check B |
Fail |
Resolution 1a: [Fix Name]
Root Cause: Brief explanation of why this happens.
-
Arch
-
RHEL/Fedora
-
Debian/Ubuntu
sudo pacman -S package
sudo systemctl restart service
sudo dnf install package
sudo systemctl restart service
sudo apt install package
sudo systemctl restart service
Verify fix:
command --verify
Symptom: [Second Symptom]
Common Causes
-
Cause A - Resolution 2a: [Fix Name]
-
Cause B - Resolution 2b: [Fix Name]