Is it possible to interrupt a process and checkpoint it to resume it later on?

前端 未结 5 578
旧巷少年郎
旧巷少年郎 2021-01-14 12:01

Lets say, you have an application, which is consuming up all the computational power. Now you want to do some other necessary work. Is there any way on Linux, to interrupt t

5条回答
  •  心在旅途
    2021-01-14 12:06

    From the man pages man kill

    Interrupting a process requires two steps:

    To stop

    kill -STOP   
    

    and

    To continue

    kill -CONT 
    

    Where is the process-id.

提交回复
热议问题