Today, we will see a trick to calculate the playback speed of a hard drive, Linux, and specifically with Debian in this tutorial. For this, we will rely on fdisk to list the hard drives and hdparm for the calculation of performance.

First, we are going to see the procedure with hdparm so let’s start by listing the drives on the machine with the following command:

fdisk -l | grep "Disque"

Note: the presence of two discs: sda and sdb. About md0 and md1 it is software RAID arrays present on the machine.

Now to calculate the playback speed we use two options with the command hdparm:

  • ” -t ” to calculate the playback speed from the cache
  • ” -T ” to calculate the playback speed direct access to the hard drive

Which will give us the following result’ (see examples on the screenshot for sda, sdb and md0).

hdparm -t -T /dev/sda
hdparm

The line “Timing cached reads: is the result of the option “-t” after the line “Timing buffered disk reads” corresponds to the “-T”. You can see read speeds of around 25568 MB/s and 1344 MB/s on each of the two discs, which are actually virtual hard disks, stored on a physical hard drive of 7200 rev/min.

For your information, the tool “dd” is usually preinstalled on Linux that allows performing write tests on the hard disk as well. For example:

dd bs=1M count=256 if=/dev/zero of=test

Incoming searches related to this subject:

  • speed test the hard drive
  • speed external hard drive
  • speed SATA hard drive
  • speed of hard drive measured in
  • write speed of the hard drive
  • hard drive speed rpm

Popular Posts You May Read

Explore more hosting insights, tips and industry updates.

How can you change the server time in WHM

How can you Change the Server Time in WHM?

We will explain in this article In WHM, how do you change the server time.…

Windows CMD Commands Cheat Sheet

Windows Command Prompt (CMD) offers a variety of powerful tools. Since it’s easy to forget…

How to Configure Spam Assassin to Tag Emails as SPAM

By configuring Spam Assassin, you can automatically detect unwanted emails and tag them with a…