Pour déclencher une commande hdparm au boot, il faut éditer /etc/hdparm.conf et ajouter à la fin quelque chose du genre
command_line {
hdparm -S 1 /dev/sda
}
Une solution plus générale pour exécuter des commandes au boot et à l'arrêt:
- Créer un script hdparm dans /etc/init.d avec les droits d'exécution (chmod +x)
- Activer ce script avec update-rc.d hdparm defaults
#! /bin/sh
case "$1" in
start)
hdparm -S 1 /dev/sda
;;
stop)
hdparm -S 36 /dev/sda
;;
*)
echo "Usage: $0 start|stop" >&2
exit 3
;;
esac
Aucun commentaire:
Enregistrer un commentaire