新しいラップトップがスリープ状態になると、RAMの内容を保存する必要があります/var/vm/sleepimage
が、RAMにも電力を供給し続けます。デスクトップMacでは、デフォルトで通常のスリープモードを使用する必要があります。
man pmset
:
hibernatemode = 0 (binary 0000) by default on supported desktops. The
system will not back memory up to persistent storage. The system must
wake from the contents of memory; the system will lose context on power
loss. This is, historically, plain old sleep.
hibernatemode = 3 (binary 0011) by default on supported portables. The
system will store a copy of memory to persistent storage (the disk), and
will power memory during sleep. The system will wake from memory, unless
a power loss forces it to restore from disk image.
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.
- 0(従来のスリープモード):高速ウェイクアップとスリープ、ディスクスペースの節約
- 3(デフォルトのセーフスリープモード):高速ウェイクアップとスリープ、電源を切っても状態は維持されます
- 25(冬眠):エネルギーを節約し、電力を失っても状態が維持されます
Macで使用しているモードを確認しpmset -g | grep hibernatemode
、で変更できますsudo pmset -a hibernatemode $mode
。
一部の新しいMacは、10.8以降でスタンバイモードをサポートしています。hibernatemode
3に設定されていても、1時間以上のスリープの後、メモリの電源がオフになります。