Linux Admin Checks and Reference

Summary

This note is a quick reference for the kinds of checks that often support Linux administration and troubleshooting.

Runtime and service checks

CheckPurpose
systemctl status <service>confirm service state
ps auxinspect processes
journalctl -xeinspect recent system and service events

User and path checks

CheckPurpose
whoamiconfirm execution user
pwdconfirm current working directory
ls -linspect ownership and permissions quickly

System and scope checks

CheckPurpose
hostnamectlconfirm host identity and basic system state
ip addrinspect network context
ip routeinspect route and default path

Example first-pass check

whoami
pwd
hostnamectl
ip addr
systemctl status sshd
journalctl -xe

Notes

  • this note is intentionally broad and support-oriented
  • deeper command groups still belong in more specific Linux and Fedora notes
  • the goal is to support quick narrowing of Linux issues, not replace fuller guides

Official documentation