Saturday, May 4, 2024
 Popular · Latest · Hot · Upcoming
12
rated 0 times [  12] [ 0]  / answers: 1 / hits: 37294  / 2 Years ago, sun, november 6, 2022, 11:59:24

I use Ubuntu 12.04 on a home server. There are 5 hard drives: one SSD with the OS and 4 HDDs (Samsung HD204UI) configured as a RAID5 using mdadm.



I don't need the RAID very often (say, about once per day in average); it contains multimedia data and some backups, so I decided to put the drives to standby most of the time.



I configured the drives to automatically spin-down after 20 minutes using hdparm, here /dev/sda as an example:



hdparm -S 240 /dev/sda


The output of the command confirmed this:



/dev/sdb:
setting standby to 240 (20 minutes)


But the problem is that the drive spins down after about 5 seconds (instead 20 minutes) after the last access, and



hdparm -C /dev/sdb


displays:



/dev/sdb:
drive state is: standby


Why doesn't the drive wait the 20 minutes as configured? Does it have something to do with the RAID setup? (I don't think so...)



This very short timeout is problematic since it is a RAID5 and when I access a file, it is spread block-wise around the four drives. Since drive 1 isn't needed when drive 2 is read, it went asleep when it will be used the next time (after drive 3 has been read from). So the drives keep spinning up and down the whole time resulting in a throughput near zero.



For the people being concerned about the life of my drives: It will be no problem that the drives are spinned up and down once a day in average since I prefer saving energy and heat over health of the drives (I use RAID5 and the content isn't very important).


More From » hard-drive

 Answers
2

Is AHCI enabled in your BIOS? If not try turning it on and re-trying.



If that still doesn't work, then you may have to try something a bit more complicated, as hdparm doesn't always play nicely with SATA drives, which is what I presume you have.



Check out this page for the following relatively simple solution that uses crontab:



sudo apt-get install sg3-utils
crontab -e


Now, add this to the bottom of your crontab (replace sdx with the drive you wish to put in standby):



0-59/15 * * * * ( if [ ! -f /dev/shm/1 ] ; then touch /dev/shm/1 /dev/shm/2; fi ; mv /dev/shm/1 /dev/shm/2; cat /proc/diskstats > /dev/shm/1 ) >/dev/null 2>&1
0-59/15 * * * * ( export HD="sdx "; if [ "$(diff /dev/shm/1 /dev/shm/2 | grep $HD )" = "" ] ; then /usr/bin/sg_start --stop /dev/$HD; fi ) >/dev/null 2>&1


Of course, before attempting any of this, it's highly advisable to perform a full backup of the contents of your hard drives.


[#38398] Tuesday, November 8, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
eaderitable

Total Points: 368
Total Questions: 117
Total Answers: 111

Location: Tuvalu
Member since Sat, Feb 11, 2023
1 Year ago
;