24

Does hibernation use more power than a total shutdown?

The oft-given answer is no, but I can't help but wonder if that's a lie: hibernation seems to be an ACPI feature, and a completely different sleep state (S4) than, well, "off" (S5).

So, does hibernation use more power than shutdown?
If not, then why is it a different hardware state than shut down?

Edit:

I forgot to mention the last part of the question, sorry:
If so, then what makes it different from shutdown, from a hardware (not driver) perspective?
Shouldn't devices not be receiving power either way?
i.e. How does a device behave differently when it is "shut down" versus when it is hibernated?

17
  • 7
    Modern PCs use power even when shutdown.
    – Celeritas
    Commented Mar 5, 2013 at 18:31
  • 5
    If you yanked the cord while it was in S4, it will still resume (from disk) once you give it power again and turn it on. The fact that most computers draw SOME power in both S4 and S5 has nothing to do with a difference between S4 and S5. :) Commented Mar 5, 2013 at 19:03
  • 3
    @techie007: Ahh, it's so confusing when you say S5 "dumps RAM", because a "dump" means writing contents to disk (crash dumps, core dumps, etc.), but when you said "dump" you meant discard, which confused the heck out of me. Okay, I see what you're saying now, but it still doesn't make sense: S5 is a state, not an action. It can't do anything, can it? The action is a transition, and it seems like going from S4 to S1 is equivalent to going from S5 to S1 -- either way, the system restores the contents of RAM and powers all devices back on, so what makes S4 use more power than S5?
    – user541686
    Commented Mar 5, 2013 at 19:12
  • 5
    My computer will react to keyboard presses when in S4 (and will power up), it will not when in S5. So there is a behavioral difference. The OS doesn't care though; if you unplug/replug the PC, it will go to S5, but the system will restore itself just fine.
    – avakar
    Commented Mar 5, 2013 at 22:16
  • 3
    How in the world is this question "not constructive"? I don't see how these votes to close are justified...
    – bwDraco
    Commented Mar 5, 2013 at 23:34

8 Answers 8

11

It depends.

On some computers, S4 and S5 will use the same amount of power. I believe this is the more common scenario.

Some computers, however, can be configured to (for example) leave the network card powered up when in S4 but turn it off when in S5. In that scenario, power consumption will be higher in S4 than in S5.

2
7

When your computer hibernates, the contents of physical memory (RAM) are stored onto the hard drive and the computer is physically turned off. As a result, the system does not consume any more power than if it was shut down (but see exception below).

When you turn your computer back on, early in the boot process, the system will detect that it went into hibernation and will restore from the memory image on the hard drive. A system with legacy BIOS will likely go through POST as if it is starting up from a full shutdown. A system with UEFI will often be aware that the system had hibernated (having been notified so by the operating system) and bypass POST, instead proceeding directly to the bootloader.

Do not confuse sleep with hibernate. Sleep, or standby, mode places the computer into a low-power state to allow you to quickly resume your session. If power is lost, data may be lost as this is equivalent to a hard shutdown.

Newer versions of Windows support hybrid sleep, where the contents of physical memory are written to the hard drive as with hibernation, but the system remains in a low-power state rather than turning off altogether. This allows for quick resuming while preventing data loss should power be lost--the computer will simply load from the memory image stored on the hard drive.

On Windows, the file hiberfil.sys in the root of the system volume is used to reserve space for the contents of physical memory for hibernation.


Note, however, that if wake-on-LAN (WOL) is enabled, the system will keep the network adapter on to permit the system to resume automatically on a WOL message. Depending on BIOS configuration, the network adapter may or may not be on when the system is fully shut down, and it may be possible to configure WOL in the BIOS setup so that WOL is enabled in hibernate but not when fully shut down. Otherwise, there would be no power difference.

On some systems, and once again depending on BIOS configuration, there may indeed be a nontrivial difference between a full shutdown and hibernate. For example, a computer may keep USB ports powered in hibernation to permit resuming by pressing a key or moving the mouse. In any case, a power failure will not cause a system in hibernation to lose data.

6

According to this article hibernate is about the same as powering off:

Hibernate powers down your monitor to about 5 watts of energy and your PC to 2.3 watts—virtually the same as turning your PC off

6
  • Who's monitor gets power from their PC? IDK about you but my monitor has get's power from a wall outlet. Commented Mar 5, 2013 at 18:56
  • @Kyle there must be a little bit because if you unplug the monitor from the PC then it gives a message like "no signal detected" so their must be power over that cable, even when the machine is shutdown. But I like your idea of getting power directly from the PC :P
    – Celeritas
    Commented Mar 5, 2013 at 18:59
  • An easy test for you to do: take a VGA/DVI cable that isn't plugged into a computer and plug it into a monitor, it will do the same thing. The monitor has power from the wall and can sense when the metal pins are connected as it completes a circuit, in fact one of those pins is a ground. Commented Mar 5, 2013 at 19:08
  • 2
    Once upon a time I had a power supply that included a switched plug for attaching your monitor, so it would power down automatically with the PC (this was from before the days of "green" monitors that would know when to shut down). Either way, in this case my monitor was being powered by the PC. Not the standard today, by any means...
    – techturtle
    Commented Mar 5, 2013 at 19:15
  • A monitor that didn't take power from the PC wouldn't comply with the current VESA EDID or HDMI standards. For example, it wouldn't be able to supply identification data when unplugged, which is required by the standard. (See, for example, section 8.4.4 of the HDMI standard, version 1.3a) Commented Mar 5, 2013 at 20:24
2

They have to be different sleep states because the transition rules are different (what happens when you hit a key or press the power button). So even if the power consumption was precisely the same, they'd still have to be different sleep states. The documentation for S4 says, "The system consumes the least power compared to all other sleep states."

5
  • 1
    States and transitions are completely orthogonal though. What makes it an ACPI concept instead of an OS/driver concept? They could just make different transitions to the same state; what makes the states themselves different?
    – user541686
    Commented Mar 5, 2013 at 18:37
  • @Mehrdad: A state is defined by what happens when you're in that state, how you enter that state, and how you leave that state. If two things are left differently, then they are different states. Commented Mar 5, 2013 at 20:23
  • How are S4 and S5 left differently, from the hardware's perspective?
    – user541686
    Commented Mar 5, 2013 at 20:25
  • 2
    On many systems, the BIOS attempts to resume as quickly as possible when leaving the S4 state (to meet rapid resume requirements). In order to do this, it has to be a different state. Otherwise, the BIOS would have no way to know which behavior to provide. (The OS can just check for a valid hibernation file, so it doesn't need a different hardware state. But the BIOS can't.) Also, some firmwares clear memory when leaving the S4 state to ensure a new OS instance can't steal information left in memory from the previous instance. (I don't understand why that's needed, but it is a fact.) Commented Mar 5, 2013 at 20:38
  • Ahh, +1 that explains a lot, thanks for the great info!
    – user541686
    Commented Mar 5, 2013 at 20:44
1

Here is what I found on the Windows site, Shut down, sleep, or hibernate your PC. This is the same for Windows 11, 10, 8.1 and 7.

Hibernate

This option was designed for laptops and might not be available for all PCs. (For example, PCs with InstantGo don't have the hibernate option.) Hibernate uses less power than sleep and when you start up the PC again, you’re back to where you left off (though not as fast as sleep).

Use hibernation when you know that you won't use your laptop or tablet for an extended period and won't have an opportunity to charge the battery during that time. First check to see if this option is available on your PC and if it is, turn it on.

So, basically, it draws some power which is less than sleep and I have confirmed it in Windows 11 with battery percentage reduced by up to 1% per hour and an overall 4% drop for around 7 hours hibernation time.

0

According to my knowledge, Hibernate saves your work to a file on your HDD and then turns off your PC as shutdown would do. So it's basically the same as power off.

I rarely shutdown my pc (only on occasions when i actually have to reboot in order to load some new files or when windows is acting crazy)

0

My best measurement of how much power is consumed by by Toshiba Laptop (Intel Core i5, purchased in 2011) in Hibernation mode is that it uses 1.7 Watts. Note, this includes any standby power consumption of the power pack! I.e. the 1.7W may be just what is wasted in the power pack and have nothing to do with what is going on in the computer.

I cannot tell you the accuracy of the measurement... so instead I will tell you my method of measurement. I allowed the computer and battery to achieve a hibernating state and full battery charge by leaving it plugged in for a day, then allowed it to enter hibernation mode prior to starting the test. between the wall plug and the computer power adaptor I wired in a household tariff meter (Enermet E130-BS).

It recorded that 0.040kW hours of electricity were consumed during 24 hours. In the tariff meter documentation it states that the meter itself consumes =< 0.2W. I cannot tell if the 0.040 kW hrs is inclusive or exclusive of the power consumed by the tariff meter. It has a very technical description of the accuracy of the meter but I cannot understand it.

-5

Hibernation does use power. Its not the same as Shutdown but can be related closely to Sleep mode. When a computer goes into hibernate mode, it saves the contents in its RAM to the harddrive and goes to sleep.

Hibernation uses much less power than sleep mode.

8
  • "It's not the same as shutdown"... well, that's basically what I said in my original question, where I said it's S4 instead of S5. The question is, well, how? Isn't everything turned off either way? What makes it different from shutdown? And yes, it uses power, but does it use more power than shutdown? (Why should it?)
    – user541686
    Commented Mar 5, 2013 at 18:48
  • 4
    Accoding to Microsoft this is incorrect - hibernate stores the contents of the ram to disk AND THEN SHUTS DOWN THE PC, using no power while its off - windows.microsoft.com/en-us/windows7/… states "[hibernation] puts your open documents and programs on your hard disk, and then turns off your computer."
    – davidgo
    Commented Mar 5, 2013 at 18:50
  • 1
    @davidgo: That's what everyone says, and that's why I asked this question: it seems to be an outright lie (though not a very wrong one) as far as I can see -- just look up ACPI states S4 and S5.
    – user541686
    Commented Mar 5, 2013 at 18:51
  • @davidgo Is correct. Sleep states (like S3) save RAM connects and go into low power mode, with enough power to keep the RAM live. Hibernation dumps to disk and shuts off, and requires no power to retain the state. Commented Mar 5, 2013 at 19:04
  • 2
    My reading on S4 vs S5 states all say the same thing - that the system is powered down after dumping memory to disk. Can you point to anything which implies otherwise that I can consider ?
    – davidgo
    Commented Mar 5, 2013 at 19:10

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .