Find the answer to your Linux question:
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 ...
  1. #1
    Just 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.

  2. #2
    Just Joined! chris81's Avatar
    Join Date
    Jan 2009
    Posts
    62
    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 :

    Code:
    sudo apt-get install wine
    and then install the software that allows you to control the RPM.

    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

  3. #3
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,653
    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
    Code:
    hdparm -M 128 /dev/sda
    Sets it to quiet, ie, slows down the head rotation.

    -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.

  4. #4
    Just Joined!
    Join Date
    Mar 2008
    Posts
    26
    Quote Originally Posted by reed9 View Post
    hdparm(: get/set hard disk parameters - Linux man page
    hdparm FAQ/HOWTO & help - Ubuntu Forums

    The -M flag is probably what you'd want. Example
    Code:
    hdparm -M 128 /dev/sda
    Sets it to quiet, ie, slows down the head rotation.
    Hey, thanks for the reply, that is exactly what I wa looking for. Does hdparm also tell you what the current rpm speed is or do I need to get a second app to confirm the current rpm speeds?

  5. #5
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,653
    Code:
    hdparm -M /dev/sda
    Outputs the current setting.

    Code:
    hdparm -I /dev/sda
    Gives lots of info about the drive.

  6. #6
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,945
    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.

  7. #7
    Just Joined!
    Join Date
    Mar 2008
    Posts
    26
    Quote Originally Posted by reed9 View Post
    Code:
    hdparm -M /dev/sda
    Outputs the current setting.

    Code:
    hdparm -I /dev/sda
    Gives lots of info about the drive.
    It doesn't tell me the current rotational speed though Any other ways?

  8. #8
    Just Joined!
    Join Date
    Mar 2008
    Posts
    26
    Quote Originally Posted by MikeTbob View Post
    Don't forget to test your changes before committing them
    Code:
    hdparm -Tt /dev/sda
    What I tested between 255 and 128, 128 actually gave me better results. I don't think the settings are actually being applied. When I run hdparm -I /dev/sda it still says 255 but if I run hdparm -M /dev/sda it says 128. I'm confused.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •