how to hibernate only one proccess in ubuntu?
Asked
Active
Viewed 111 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
- 82,107
- 71
- 302
- 444
-
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,607
- 24
- 42