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
  • 83,619
  • 74
  • 305
  • 448
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