Hibernate

From SlackWiki
Revision as of 13:20, 10 April 2011 by Merge-delete (talk | contribs)
Jump to navigation Jump to search

In Slackware, hibernation works out-of-the-box and can be easily done from KDE's menu. Resuming from hibernation, however, is not set up, so when you turn on your computer again, it starts as normal. That is, if your hardware supports it and if you've set up a swap space larger than your RAM.

To tell your kernel where to resume from, you need to write the info to lilo.conf:

append=" resume=/dev/sda6"

Replace /dev/sda6 with your actual swap space. Swap partitions are perfect, I think swap files should work too. If you don't know where your swap lies, look at /proc/swaps.

If you're using generic or your own kernel, you need to adjust initrd image as well. Append

 -h /dev/sdx

to mkinitrd command so it may look like this:

 mkinitrd -c -k 2.6.33.4 -r /dev/sdx -f <fs_type> -m <fs_type> -h /dev/sdy

Replace /dev/sdx with your actual root partition and /dev/sdy with your actual swap space.

Afterwards, run lilo.


The above is everything I needed to do with my Slackware64 13.1 on a new laptop. I hope that works for you as well, but there are many requirements and intricacies not mentioned above. Google might help you. Please edit this document accordingly if you find out more.

Some more info at [1]