Linux CLI 21 🐧 view and terminate processes
Processes are the running applications that consume system resources like CPU and memory. Every process has a unique PID (Process ID), and can be viewed with ps or top, and terminated with kill or pkill. What Are Processes? A process is an instance of a running program. Every command you run creates a process. Key…