đĒĢ Process Management
Use tools like htop to manage Linux processes
Managing Processes in Linux
List current processes:
command line
ps
ps -ef
Kill a process:
command line
kill PID # SIGTERM
kill -9 PID # SIGKILL
Use htop for a fully interactive process management experience:
command line
htop