Loading...
Loading...
Linux system troubleshooting workflow for diagnosing and resolving system issues, performance problems, and service failures.
npx skill4agent add sickn33/antigravity-awesome-skills linux-troubleshootingbash-linuxdevops-troubleshooteruptime
hostnamectl
cat /etc/os-release
dmesg | tail -50Use @bash-linux to gather system informationbash-linuxperformance-engineertop -bn1 | head -20
free -h
df -h
iostat -x 1 5Use @performance-engineer to analyze system resourcesbash-linuxserver-managementps aux --sort=-%cpu | head -10
pstree -p
lsof -p PID
strace -p PIDUse @server-management to investigate processesbash-linuxerror-detectivejournalctl -xe
tail -f /var/log/syslog
grep -i error /var/log/*Use @error-detective to analyze log filesbash-linuxnetwork-engineerip addr show
ss -tulpn
curl -v http://target
dig domainUse @network-engineer to diagnose network issuesserver-managementsystematic-debuggingsystemctl status service
journalctl -u service -f
systemctl restart serviceUse @systematic-debugging to troubleshoot service issuesincident-responderbash-proUse @incident-responder to implement resolutionos-scriptingbash-scriptingcloud-devops