Just like e.g. people can press Ctrl+P when running a VirtualBox guest, it can pause the guest, after pressing again Ctrl+P it will continue right there where it was stopped. Are there any command line commands on Windows/Linux where I can do the same with a process? (the process is e.g.: Firefox, etc.)
Thank you!

link|improve this question

62% accept rate
feedback

3 Answers

up vote 3 down vote accepted

For Windows, you want PsSuspend. The utility demands a PID, which is a column you can add in Task Manager.

For Linux, seconding the above. kill -STOP and kill -CONT.

link|improve this answer
1  
Also with the Process Explorer tool (also by Sysinternals), you can do this in one step from the GUI. Process Explorer can also be configured to show a lot more information than the standard task manager. – Spectre May 25 '11 at 14:55
feedback

pstop will generally work on Linux and other Unixes which implement /proc-based process control (many System Vs, almost no BSDs); kill -TSTP (-TSTP should be used with interactive processes; -STOP may be better for daemons) will work on most modern Unixes. The reverse operation is prun or kill -CONT, respectively. Note that these are not necessarily equivalent; on Solaris they are entirely distinct operations.

link|improve this answer
feedback

Not aware of a command line tool but on windows if you install AnVir Task Manager Free you can select a task and suspend it, then resume at a later time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.