hdparm

hdparm is a command line program for Linux to set and view ATA hard disk drive hardware parameters and test performance. It can set parameters such as drive caches, sleep mode, power management, acoustic management, and DMA settings. GParted and Parted Magic both include hdparm.

hdparm
Developer(s)Mark Lord
Stable release
9.57 / October 16, 2018 (2018-10-16)[1]
Operating systemLinux
Size134 kB
TypeUtility software
LicenseBSD license
Websitesourceforge.net/projects/hdparm/

Changing hardware parameters from suboptimal conservative defaults to their optimal settings can improve performance greatly. For example, turning on DMA can, in some instances, double or triple data throughput. There is, however, no reliable method for determining the optimal settings for a given controller-drive combination, except careful trial and error.

hdparm has a serious drawback: With certain parameters, it can crash a computer and make data on its disk inaccessible. Several of the 67 parameters are dangerous and could result in massive filesystem corruption if used indiscriminately.

Usage examples

hdparm has to be run with special privileges, otherwise it will either not be found or the requested actions will not be executed properly.

Display information of the hard drive:[2]

sudo hdparm -I /dev/sda

Turn on DMA for the first hard drive:

sudo hdparm -d1 /dev/sda

Test device read performance speed (-t for timing buffered disk reads) of the first hard drive:

sudo hdparm -t /dev/sda

Enable energy saving spindown after inactivity (24*5=120 seconds):

sudo hdparm -S 24 /dev/sda

To retain hdparm settings after a software reset, run:

sudo hdparm -K 1 /dev/sda

Enable read-ahead:

sudo hdparm -A 1 /dev/sda

If the disk is constantly too noisy, you can change its acoustic management at the cost of read/write performance (Some drives, such as newer WD drives and all SSDs, ignore this setting.):

sudo hdparm -M 128 /dev/sda


If the disk synchronisation intervals are too short, then even small amounts of data will be written to disk which can have severe consequences for its lifespan. The better way would be to collect small data into bigger chunks and wait until the chunk is big enough to be written to disk.

Current web browsers like Chrome write regularly small chunks when browsing in order not to lose any important data when the application crashes. However, this lets the disk spin very often as the drive repeatedly needs to unleash and then park its heads. The generated noises can be thus regarded as distracting by the user. To circumvent this issue, you can switch the drive to the lowest degree of power management (next value, 255, turns power management off):[3]

hdparm -B 254 /dev/sda

Additionally, changing the value of /proc/sys/vm/dirty_expire_centisecs can have an effect on the performance. It sets the flush interval when dirty pages are written to disk.[4]

Note that all these commands are only effective in the long-run, if you make the changes persistent. However, the settings you can set via hdparm are reverted each time you reboot. Therefore, it might be wise to restore the personal settings upon boot. An appropriate place that exists in most Linux distributions is the /etc/rc.local script.

References

See also

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.