Für USB Platten gilt das nicht out of the Box.
Das dafür erforderliche Kommando ist aber im Image enthalten: "hdidle".
in "/var/etc/init.d" eine Datei "hdidle" mit folgendem Inhalt erstellen:
Code: Alles auswählen
case $1 in
        start)
        if [ -e /bin/hd-idle ]; then
                /bin/hd-idle -i 0 -a sda -i 300 -a sdb -i 300
        fi
        ;;
        stop)
        killall hd-idle
        ;;
esacCode: Alles auswählen
chmod 755 hdidleCode: Alles auswählen
ln -s hdidle K01hdidle
ln -s hdidle S99hdidle