Tuesday, December 20, 2011

Pause and resume process in LINUX

Like psuspend.exe in windows ,Linux also we can stop and start a process .This will be usefull for your tea break :)

So please findout the process that running and its PID.

Now just stop that process by below command:

kill -s SIGSTOP


To resume the same use below commands:

kill -s SIGCONT

I feel so comfortable with this ,becuase i used this already..