Home » Questions » Computers [ Ask a new question ]

Does Mac OS X support hibernation?

Does Mac OS X support hibernation?

On Windows, you can hibernate your computer, so that it starts a lot faster while consuming zero energy while "hibernating".

Asked by: Guest | Views: 210
Total answers/comments: 5
Guest [Entry]

"OS X only has only one ""sleep"" option. You cannot change its name, but to change its behaviour, I use an old version of SmartSleep on a Mac mini (though in the MacBook-like ""sleep & hibernate"" mode). It works for a mini, though the website only refers to MacBooks.

(SmartSleep was still free when I wrote this in 2009.)

I occasionally get complains about hardware not having been removed properly (but OS X never tells me what hardware, and my Time Machine USB disks seem fine — I should peek into the logs one day, and I assume this is related to OS X, not to SmartSleep).

I've quickly tested SmartSleep's ""hibernate only"" on that mini (Intel; running 10.5), and it seems to work as well. Doing these tests, I noticed that after the display goes black the power light starts pulsing (like to indicate sleep rather than hibernate) for a few seconds. Maybe it's still writing RAM to disk then. (Until now, I always thought that on my MacBook the pulsing indicated that all was done. But now I think that, whichever sleep mode one is using, one should probably not unplug the power too soon). After a short while, it powers down completely.

In 2006, Macworld explains how to achieve the same without that SmartSleep preference pane. To check the current setup:

pmset -g | grep hibernatemode

According to Macworld's old article the following applies, but be sure to read Lauri's answer that suggests that nowadays only 0, 3 and 25 should be used instead:


0 — Old style sleep mode, with RAM powered on while sleeping, safe sleep disabled, and super-fast wake.
1 — Hibernation mode, with RAM contents written to disk, system totally shut down while “sleeping,” and slower wake up, due to reading the contents of RAM off the hard drive.
3 — The default mode on machines introduced since about fall 2005. RAM is powered on while sleeping, but RAM contents are also written to disk before sleeping. In the event of total power loss, the system enters hibernation mode automatically.
5 — This is the same as mode 1, but it’s for those using secure virtual memory (in System Preferences » Security).
7 — This is the same as mode 3, but it’s for those using secure virtual memory.


And the same numbers can be used to change the sleep mode setting:

sudo pmset -a hibernatemode 1"
Guest [Entry]

"The pmset man page also recommends using 25 instead of 1.

0000 1000 (bit 3) encourages the dynamic pager to page out inactive pages prior to hibernation, for a smaller memory footprint.

0001 0000 (bit 4) encourages the dynamic pager to page out more aggressively prior to hibernation, for a smaller memory footprint.

We do not recommend modifying hibernation settings. Any changes you make are not supported. If you choose to do so anyway, we recommend using one of these three set-
tings. For your sake and mine, please don't use anything other 0, 3, or 25.

[...]

hibernatemode = 25 (binary 0001 1001) is only settable via pmset. The system will store a copy of memory to persistent storage (the disk), and will remove power to
memory. The system will restore from disk image. If you want ""hibernation"" - slower sleeps, slower wakes, and better battery life, you should use this setting.

Some laptops now enter hibernation (standby mode) after about an hour of normal sleep if:

Power Nap is not enabled (so not by default)
The computer is on battery power
The computer is not connected to USB devices or external displays and not paired with Bluetooth devices

Laptops, Mac minis and iMacs use about 0.2-0.4 W when off or hibernating and 0.8-1.4 W in sleep mode. Hibernation (and the hibernation + sleep mode that laptops use by default) might also reduce the lifespan of drives."
Guest [Entry]

yup. it's called safe sleep. easiest way to get it is to use the deep sleep widget.
Guest [Entry]

Hibernation will also be triggered automatically if your laptop battery runs down completely.
Guest [Entry]

"I have read that ""Safe Sleep"" is on by default on all Intel Macs and some late model PowerPC machines (I think the Intel mini's have this support, but the PPC ones probably do not—without unsupported hacks).

But ""Safe Sleep"" by itself is not exactly the same as ""hibernation"". It is a combination of saving RAM to disk but also doing a normal sleep. This allows for a fast wake, and also preserves the system state if the power happens to fail completely while the machine is sleeping.

You can tell if a system is using Safe Sleep by (after at least one sleep) checking for a file /var/vm/sleepimage that is the same size as the installed RAM. Also when Safe Sleep is active there will be a longer delay between clicking the Sleep menu item (or button, or holding Command-Option-Eject) before the machine's status light starts its normal fade-up/fade-down loop.

The final bit of the solution is to get the machine to fully power off after saving RAM the sleepimage. It seems like it is possible to configure this using the command-line program pmset to set the hibernatemode. You might checkout something like Deep Sleep for an automated way of making this configuration change."