| | | | | linguist.page@gmail.com

Display running processes

Type here
top

Display processes in a cleaner interactive view

Type here
htop

List all running processes

Type here
ps aux

Search for a running process by name

Type here
ps aux | grep python3

Kill a process by PID

Type here
kill 1234

Force kill a process by PID

Type here
kill -9 1234

Kill all processes by name

Type here
killall processname

List background and stopped jobs

Type here
jobs

Bring a background job to the foreground

Type here
fg %1