|
怎么让hdparm开机自动运行hdparm -B 254 /dev/sda阿
按这里的(https://wiki.ubuntu.com/DanielHa ... 需要手工改动
[code]
Edit /etc/hdparm.conf and put there:
$HDD {
apm = 254
}
Create executable file /etc/pm/sleep.d/99fixpark with the following lines:
case "$1" in
resume|thaw)
hdparm -B 254 $HDD >/dev/null 2>&1
;;
*)
;;
esac
[/code] |
|