Process Management by Commands on Unix/Linux

Process Management
ps – display your currently active processes

top – display all running processes

kill pid – kill process id pid

killall proc – kill all processes named proc *

bg – lists stopped or background jobs; resume a
stopped job in the background

fg – brings the most recent job to foreground
ping host – ping host and output results

fg n – brings job n to the foreground

Comments

Popular posts from this blog

Inserting and Moving elements inside Ruby Array

Difference between Validations, Callbacks and Observers