how to hibernate only one proccess in ubuntu?
Asked
Active
Viewed 114 times
2 Answers
5
You might want to explain what you are trying to do, but cryopid might be what you are after.

Kyle Brandt
- 83,619
- 74
- 305
- 448
-
i want to save proccess execution state to hdd the load it and continue execution – Boris Oct 09 '09 at 14:48
1
If one wants to (just) "suspend" a current process can easily send a STOP signal:
kill -STOP id
Then resume later:
kill -CONT id
It will not survive a reboot and it is tied to a particular machine.

cstamas
- 6,707
- 25
- 42