Comprehensive reference for modern system administrators
Create, modify, and delete user accounts with proper permissions
sudo useradd -m -s /bin/bash username
Control system services using init systems
systemctl restart nginx
Handle software installation and updates
apt update && apt upgrade -y
Implement UFW or firewalld for network protection
ufw allow ssh
Use key-based auth and disable root login
PasswordAuthentication no
Check for vulnerabilities with Lynis
Frequency: Weekly
tar -czvf backup.tar.gz /data
Frequency: Daily
rsync -av --link-dest=/previous_backup /source /destination
Frequency: Real-time
aws s3 sync /backup s3://bucket-name