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

前端 未结 5 656
旧巷少年郎
旧巷少年郎 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:11

    On linux it is achivable by sending this process STOP signal. Leter on you resume it by sending CONT signal. Please refer to kill manual.

提交回复
热议问题