Process

Command Description
ps Displays your currently active processes
pmap Display Memory map of process
top Display all running processes and cpu/memory usage
kill pid Kills process with mentioned pid
killall proc Kills all processes named proc
pkill processname Sends kill signal to a process with its name
bg Resumes suspended jobs without bringing them to foreground
fg Brings the most recent job to foreground
ps aux | grep ‘telnet’ Displays all process ids related to telnet process
fg n Brings job n to the foreground