how to hibernate only one proccess in ubuntu?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

You might want to explain what you are trying to do, but cryopid might be what you are after.

link|improve this answer
i want to save proccess execution state to hdd the load it and continue execution – Boris Oct 9 '09 at 14:48
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.