Keeping Linux running means understanding processes, services and logs.
Linux Processes & Services
Processes, signals, systemd and logs — running and troubleshooting Linux.
Tap or hover a part to learn more.
Running programs.
Each running program is a process with a PID. ps, top and htop show what's running and its CPU/memory use — your first stop for a slow server.
Check your understanding
1. Which tool manages services on most modern Linux distros?
2. To stop a process gracefully before forcing it, you send…
The essentials
- Processes:
ps aux,top/htopshow what's running and its resource use. - Signals:
kill -15(graceful) thenkill -9(force) if needed. - Services (systemd):
systemctl start|stop|status|enablemanages background services and boot behaviour. - Logs:
journalctland/var/logtell you what happened and why — vital for troubleshooting and SOC investigations.
This builds on the shell and mirrors Windows administration.
