Processes are programs currently running on your system. You can view, manage, and kill them using shell commands.
ps aux
— List running processestop
— Interactive process monitor (not simulated here)kill PID
— Terminate a process by its IDsleep N
— Pause for N seconds