Seems like this:
sudo hdparm -S /dev/sd?
should reveal what standby time is set at. And this:
sudo hdparm -S 200 /dev/sd?
would set it at 200 (1000 seconds). This from the manual:
sudo hdparm -S /dev/sd?
should reveal what standby time is set at. And this:
sudo hdparm -S 200 /dev/sd?
would set it at 200 (1000 seconds). This from the manual:
Code:
-S: Set the standby (spindown) timeout for the drive. The timeout specifies how long to wait in idle (with no disk activity) before turning off the motor to save power. The value of 0 disables spindown, the values from 1 to 240 specify multiples of 5 seconds and values from 241 to 251 specify multiples of 30 minutes.
Comment