Loading...
Loading...
System administration for Linux servers. Manage packages, services, and system configuration. Use when administering Linux systems.
npx skill4agent add bagelhole/devops-security-agent-skills linux-administration# Debian/Ubuntu
apt update && apt upgrade -y
apt install nginx
apt remove nginx
apt autoremove
# RHEL/CentOS
dnf update
dnf install nginx
dnf remove nginxuname -a # Kernel info
hostnamectl # System info
lscpu # CPU info
free -h # Memory usage
df -h # Disk usage
ip addr # Network interfacesjournalctl -u nginx # Service logs
journalctl -f # Follow logs
tail -f /var/log/syslog # System logs
dmesg # Kernel messagesps aux | grep nginx
top / htop
kill -9 <pid>
pgrep nginx
pkill nginx