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

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

    Type: Control + Z to suspend a process (it sends a SIGTSTP)

    then bg / fg to resume it in background or in foreground

提交回复
热议问题