5

I'm thinking of getting a Pi to use as a file and webserver for personal apps and data backup. I heard the Pi consume little power even when running 24/7.

If I attach a laptop HDD to the Pi for data backups, would it increase notable power consumption? Most of the tasks can be done on the SD card, the hard drive is only used twice a month for data backup and occasionally for file access.

When there's no reading/writing activity to the drive, does it consume notable power or is it better to use a huge SD card instead?

stormtrooper
  • 151
  • 3

2 Answers2

4

Interestingly the power consumption of modern HDD is pretty low and comparable with an Rpi.

https://www.pidramble.com/wiki/benchmarks/power-consumption suggests Rpi 3B is around 2W.

https://www.quora.com/Do-SSDs-use-more-or-less-power-than-HDDs-and-by-how-much suggests WD Blue 500G is around 1.4W when active, idle 55mW, sleep .13mW

So power consumption is comparable between an idle Rpi ~2W and an active HDD ~1.5W; and active Rpi power consumption ~5W is much higher than an active HDD at ~1.5W. Idle HDD power consumption is way lower than an Rpi.

For a typical Rpi PSU rated at 5.1V 2.5A there is plenty of overhead for the Rpi and an attached HDD.

mhaselup
  • 206
  • 1
  • 3
2

Yes, even if they are not spinning, they consume power to keep the drive mounted and be able to communicate with the HDD. This schould be not an issue. In the domain of SBCs the more important thing is that each time they have to spin up the HDD for access, they consume a high peak current. USB 3.0 spec allows for up to 900mA. Depending on your power supply, this may or may not cause some stability issues with your system.

You could consider using an USB Thumb Drive. Those are not as great for high data traffic as HDDs but are not going to introduce instabilities.

user49015
  • 2,712
  • 17
  • 23