1

how to hibernate only one proccess in ubuntu?

Boris
  • 151
  • 1
  • 7

2 Answers2

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
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