Today I got some time for doing the less urgent (yet important) maintenance tasks for the FreeBSD servers. Once again I started to tackle the ataidle issue which has been deprecated and removed from the ports with the note „obsoleted by camcontrol(8)“ -- I know, this was almost 3½ years ago.
I use ataidle to set the AAM/APM settings of the hdd's, mainly to prevent the Load Cycle Count of the disks exceeds all limits in no time. For achieving this, I got in /etc/rc.conf:
Now the questions are:
I use ataidle to set the AAM/APM settings of the hdd's, mainly to prevent the Load Cycle Count of the disks exceeds all limits in no time. For achieving this, I got in /etc/rc.conf:
Bash:
ataidle_enable="YES"
ataidle_devices="ada0 ada1"
ataidle_ada0="-A 254 -P 254"
ataidle_ada1="-A 254 -P 254"
Now the questions are:
- what rc script shall I enable with which arguments, so I can achieve the same with camcontrol(8)?
- please can a native english speaker explain to me what exactly does ‚It‘ mean in the camcontrol man file explaining the apm and aam settings?
Code:apm It optional parameter (-l) specified, enables and sets ad- vanced power management level, where 1 -- minimum power, 127 -- maximum performance with standby, 128 -- minimum power without standby, 254 -- maximum performance. If not speci- fied -- APM is disabled. aam It optional parameter (-l) specified, enables and sets auto- matic acoustic management level, where 1 -- minimum noise, 254 -- maximum performance. If not specified -- AAM is dis- abled.