Results 1 to 8 of 8
Are there any linux applications that will allow me to adjust the hard drive RPM rotational speeds? I've used similiar programs for windows before but now I am running a ...
- 11-14-2009 #1Just Joined!
- Join Date
- Mar 2008
- Posts
- 26
Application to Control Hard Drive RPM Speed
Are there any linux applications that will allow me to adjust the hard drive RPM rotational speeds? I've used similiar programs for windows before but now I am running a linux setup.
- 11-14-2009 #2
Hi
Wine is a free software application that aims to allow Unix-like computer operating systems to execute programs written for Microsoft Windows.
(from Wine (software) - Wikipedia, the free encyclopedia)
so, just to install WINE by typing :
and then install the software that allows you to control the RPM.Code:sudo apt-get install wine
or you can always check at
- SourceForge.net: Software Map
- 486projects tagged "Hardware" | freshmeat.net
the first post of the following link speaks also about virtually slowing down an hd
http://www.linuxforums.org/forum/deb...cpu-usage.html
- 11-14-2009 #3
hdparm(8): get/set hard disk parameters - Linux man page
hdparm FAQ/HOWTO & help - Ubuntu Forums
The -M flag is probably what you'd want. Example
Sets it to quiet, ie, slows down the head rotation.Code:hdparm -M 128 /dev/sda
-M
Get/set Automatic Acoustic Management (AAM) setting. Most modern harddisk drives have the ability to speed down the head movements to reduce their noise output. The possible values are between 0 and 254. 128 is the most quiet (and therefore slowest) setting and 254 the fastest (and loudest). Some drives have only two levels (quiet / fast), while others may have different levels between 128 and 254. At the moment, most drives only support 3 options, off, quiet, and fast. These have been assigned the values 0, 128, and 254 at present, respectively, but integer space has been incorporated for future expansion, should this change.
- 11-14-2009 #4Just Joined!
- Join Date
- Mar 2008
- Posts
- 26
- 11-14-2009 #5Outputs the current setting.Code:
hdparm -M /dev/sda
Gives lots of info about the drive.Code:hdparm -I /dev/sda
- 11-14-2009 #6
Don't forget to test your changes before committing them
Code:hdparm -Tt /dev/sda
I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this. and the Forum FAQS.
- 11-14-2009 #7Just Joined!
- Join Date
- Mar 2008
- Posts
- 26
- 11-14-2009 #8Just Joined!
- Join Date
- Mar 2008
- Posts
- 26




