Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I am able to spindown my SATA HDDs by using

sudo hdparm -y /dev/sdc

The state shown by

sudo hdparm -C /dev/sdc

changes from active/idle to standby (and I can hear the HDD spin down).

However, using

sudo hdparm -S5 /dev/sdc

doesn't spin down the drive after 5*5 = 25secs.

Some additional information:

  • AHCI is enabled.
  • I am using Western Digital Green drives.
  • APM_level = not supported
  • Filesystem is ext4
share|improve this question
1  
You may need to set Advanced Power Management to something lower then 128 first, as high values (128-254) do not allow spin-down. Try sudo hdparm -B 127 /dev/sdc. – mikewhatever Oct 4 '12 at 18:55
hdparm -B doesn't work, because APM_level = not supported on the HDDs. – squarebracket Oct 5 '12 at 2:40

1 Answer

After more research, it seems that the -B and -S options of hdparm just doesn't work with certain Western Digital (and maybe other) drives.

This includes my WD10EADS, WD10EACS and WD20EARX.

I found a solution: hd-idle

A helpful guide to installing and configuring hd-idle on ubuntu can be found here (it's in german, but the commands are pretty self-explanatory)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.