Energiagazdálkodás - HDD - ubuntu

Fórumok

Sziasztok!

Annyi kérdésem volna csupán, hogy meglehete csinálni azt hogy egy több HDD-s desktop gépen az energiagazdálkodást a következő képpen:

A hdd0, amiről az OS fut, azt ne kapcsolja ki soha,
de a többit ha nem használja, akkor leállítsa azokat.

És ha meglehet, akkor hogy :D

Köszi előre is.

Hozzászólások

Szia!

Javaslom gondolkodj el az USB-s tokon. Mint egy nagy és gyors pendrive, s garantáltan semmit sem fogyaszt, mikor nem használod :)

Óvatosan de ilyet is tehetsz:
hdparm -S6 /dev/hda

a man alapján
-S Set the standby (spindown) timeout for the drive. This value is used by the drive to determine how long to wait (with no disk activity) before turning off the spindle motor to save power. Under such circumstances, the drive may take as long as 30 seconds to respond to a subsequent disk access, though most drives are much quicker. The encoding of the timeout value is somewhat peculiar. A value of zero means "timeouts are disabled": the device will not automatically enter standby mode. Values from 1 to 240 specify multiples of 5 seconds, yielding timeouts from 5 seconds to 20 minutes. Values from 241 to 251 specify from 1 to 11 units of 30 minutes, yielding timeouts from 30 minutes to 5.5 hours. A value of 252 signifies a timeout of 21 minutes. A value of 253 sets a vendor-defined timeout period between 8 and 12 hours, and the value 254 is reserved. 255 is interpreted as 21 minutes plus 15 seconds. Note that some older drives may have very different interpretations of these values.

a fenti parancs 30sec múlva lellítja a hda disk motorját.

Namost természetesen behelyettesítve a megfelelő dolgokat:
a /etc/hdparm.conf -ba:
/dev/hda {
mult_sect_io = 16
write_cache = off
dma = on
spindown_time = 120
}

A 120 spindown time az 600 sec múlva leállítja a disket.
Azért, hogy indításkor is fusson le:

update-rc.d -f hdparm remove
update-rc.d hdparm start 19 2 . stop 19 0 1 6 .

valami ilyesmi...