1. The Absolute Linux Permission Blueprint

Every file entity maps down to three user buckets: Owner (u), Group (g), and Others (o). Values are assigned using octal numeric values: Read (4), Write (2), and Execute (1).

chmod 755 deployment-engine.sh # Owner: rwx (4+2+1=7) | Group/Others: r-x (4+1=5)

2. Runtime Process Telemetry Triage

Quick shortcuts to trace system processes, investigate locked files, and manage background jobs.

# Check port usage
lsof -i :8080
# Track process resource spikes
ps aux --sort=-%cpu | head -n 5