Linux Training : Section 5 (Part-2)
Process Management
Background = cntl+z, jobs and bg
Foreground = fg
Run process even after exit = nohup process & OR nohup process > /dev/null 2>&1 &
Kill a process by name = pkill
Process priority = nice (e.g. nice -n 5 processs)
The nic...