To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

From Wikipedia, the free encyclopedia

hdparm
Developer(s)Mark Lord
Stable release
9.65[1] Edit this on Wikidata / 7 September 2022; 20 months ago (7 September 2022)
Operating systemLinux
Size134 kB
TypeUtility software
LicenseBSD license
Websitesourceforge.net/projects/hdparm/

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

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.

Depending on the given parameters, hdparm can cause computer crashes or render the data on the disk inaccessible.

YouTube Encyclopedic

  • 1/3
    Views:
    440
    1 832
    5 361
  • 07 02 HDparm Hard Drive Parameters
  • Handy linux/unix tools (hdparm,hddtemp,festival,import,acpitool) by Hackaholic
  • Unlock WD Password Protected HDD in Linux

Transcription

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:[5]

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

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, the user can switch the drive to the lowest degree of power management (next value, 255, turns power management off):[6]

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

These commands are only effective in the long-run if the user makes the changes persistent. However, the settings the user can set via hdparm are reverted each time the system is rebooted. 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.[citation needed]

See also

References

  1. ^ "hdparm-9.65 is released".
  2. ^ Nemeth, Evi; Snyder, Garth; Hein, Trent R. (2006-10-30). Linux Administration Handbook. Addison-Wesley Professional. pp. 129–131. ISBN 978-0-13-700275-7.
  3. ^ Flickenger, Rob (2003-01-20). Linux Server Hacks: 100 Industrial-Strength Tips and Tools. "O'Reilly Media, Inc.". pp. 43–46. ISBN 978-1-4493-7892-9.
  4. ^ "Parted Magic 2020-12-25". Retrieved 21 January 2021.
  5. ^ "Tuning hard drive".
  6. ^ "ThinkWiki.org".
  7. ^ "Documentation for /proc/sys/vm/*".

External links

This page was last edited on 20 December 2022, at 16:03
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.