Sunday, April 29, 2012

How-to Pause a Linux Process


  1. Run ps or ps aux to find the PID of the process you want to stop.
  2.  kill -STOP 7727 but replace the number with your own process PID
  3. To continue execution of xeyes, run kill -CONT 7727, again with your own PID

No comments:

Post a Comment