Skip to content

Instantly share code, notes, and snippets.

@cmuench
Created October 24, 2010 13:18
Show Gist options
  • Save cmuench/643528 to your computer and use it in GitHub Desktop.
Save cmuench/643528 to your computer and use it in GitHub Desktop.
hdparm Settings
# Auslesen der Festplatten Einstellungen (sda für erste S-ATA Festplatte.
# Bitte hier bei IDE Platten hda, hdb usw. verwenden)
sudo hdparm -v /dev/sda
# Ausgabe:
#/dev/sda:
# multcount = 16 (on)
# IO_support = 1 (32-bit)
# readonly = 0 (off)
# readahead = 256 (on)
# geometry = 60801/255/63, sectors = 976773168, start = 0
# Festplatte auf "Leise" einstellen. Achtung schlechtere Performance
sudo hdparm -M 128 /dev/sda
# Festplatte auf "Schnell" einstellen. Achtung lautere Platte
sudo hdparm -M 255 /dev/sda
# Benchmark - Geschwindigkeit messen
sudo hdparm -Tt /dev/sda
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment