Hi, I installed the INTEL/NVIDIA version to the hard drive of my media center. Everything is great! I like it and it boots so much faster than my previous setup.
However, I cannot create /etc/hdparm.conf to put my external drives to sleep when not being used. I live in hot weather, and they get awful hot. so having them spin for nothing will just wear them out faster.
How do I create this file to control the spindown time of my drives?
[hr]
After googling for a few minutes I found some information that lead me to do this:nano /storage/.config/autostart.sh
inserting:
#!/bin/sh
(
hdparm -S 5 /dev/sda;
hdparm -S 5 /dev/sdb;
hdparm -S 5 /dev/sdc;
hdparm -S 5 /dev/sdd;
) &
Could someone confirm that will work or is the proper way?
I am using 8.0.1 by the way.