Basic of system administration in Linux
Title
Question
<span style="color:#000000;">*</span>“When you started out as a sysadmin, which three daily tasks or commands did you rely on most for keeping a Linux server healthy, and what’s the first thing you check when something breaks?”<span style="color:#000000;">*</span>
Linux-New Basics-of-System-Administration-in-Linux 17 min 58 sec
Answers:
When I started as a sysadmin, I realized Linux usually tells you exactly what is wrong if you look in the right places.
The three commands I relied on most were top (to see CPU and memory usage), df -h (to check disk space), and journalctl or system logs in /var/log (to understand what actually happened).
And when something breaks, the first thing I check is always the basics: disk space, running processes, and logs. Most problems quietly hide there.

Login to add comment