Em um MacBook Pro, ao alterar o modo de hibernação, que outros números podem ser usados?

5

A configuração de suspensão padrão do MacBook Pro mantém a sessão atual na RAM e, portanto, requer uma pequena potência. Existe um comando sudo no terminal que pode alterar esse método, enviando os dados da sessão para o disco rígido e reduzindo o consumo de energia no modo "deep sleep".

Este comando é: sudo pmset -a hibernatemode 25

Você pode voltar para o sono regular com o comando: sudo pmset -a hibernatemode 3

O que eu estou querendo saber é o que acontece se você usar números inteiros diferentes entre 3 e 25. No modo de hibernação, o despertar é extremamente desajeitado (comparado ao sono normal) e leva cerca de 20 segundos. Agora, percebo que isso é devido a ter que puxar a sessão do disco rígido para que um número intermediário não seja necessariamente diferente.

Eu poderia tentar conectar alguns números aleatórios no terminal, mas tenho medo de escolher uma configuração que estraga alguma coisa.

Alguém já ouviu falar de números alternativos que funcionem?

    
por VictorKilo 12.08.2012 / 21:03

1 resposta

8

Verifique a página de manual

Você pode atrapalhar as coisas - fique com 0, 3 ou 25.

SAFE SLEEP ARGUMENTS
 hibernatemode takes a bitfield argument defining SafeSleep behavior. Passing 0 disables SafeSleep alto-gether, altogether,
 gether, forcing the computer into a regular sleep.

 ____ ___1 (bit 0) enables hibernation; causes OS X to write memory state to hibernation image at sleep
 time. On wake (without bit 1 set) OS X will resume from the hibernation image. Bit 0 set (without bit 1
 set) causes OS X to write memory state and immediately hibernate at sleep time.

 ____ __1_ (bit 1), in conjunction with bit 0, causes OS X to maintain system state in memory and leave
 system power on until battery level drops below a near empty threshold (This enables quicker wakeup
 from memory while battery power is available). Upon nearly emptying the battery, OS X shuts off all
 system power and hibernates; on wake the system will resume from hibernation image, not from memory.

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

 ___1 ____ (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 settings. For your sake and mine, please
 don't use anything other 0, 3, or 25.

 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 mem-ory memory
 ory 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 mem-ory memory
 ory 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.

 Please note that hibernatefile may only point to a file located on the root volume.
    
por 12.08.2012 / 23:13