Every running program in Linux is a process. Servers live and die by process management.
A process is a running instance of a program. Each process has a unique PID.
ps aux
top
kill 1234
kill -9 1234
command &
Services are long-running background processes.
sudo systemctl status nginx
sudo systemctl start nginx
sudo systemctl stop nginx
sudo systemctl enable nginx
Never kill random processes on production systems. Understand before acting.
Next: Networking Basics →