How to Display Hard Disk Information using HDPARM Linux Tool

Understanding your server’s hardware is crucial for optimizing performance and troubleshooting issues. One of the key components of any server is the hard disk.

In Linux, there are several tools available to display hard disk information, and one of the most commonly used is ‘hdparm’. This tool provides a command-line interface to various hard disk ioctls supported by the stock Linux ATA/IDE/SATA device driver subsystem. Some options may work correctly only with the latest kernels.

In this guide, we will explore how to use hdparm to display hard disk information. We will cover the following commands: ‘hdparm /dev/sda’, ‘hdparm -Tt /dev/sda’, and ‘hdparm -t –direct /dev/sda’.

Before we dive into the tutorial, it’s worth noting that understanding your server’s hardware can significantly impact your server’s performance. For more information on different server types and their performance, you can visit the following pages:

Installing hdparm

Before we can use hdparm, we need to ensure it’s installed on our system. On most Linux distributions, you can install it using the package manager. For example, on Ubuntu or Debian, you can install it using the following command:

sudo apt-get install hdparm

On CentOS or RHEL, you can use the following command:

sudo yum install hdparm
[root@server ~]# yum install hdparm -y
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * Webmin: download.webmin.com
 * base: mirror.upsi.edu.my
 * epel: ftp.cuhk.edu.hk
 * extras: mirror.upsi.edu.my
 * updates: centos.mirror.secureax.com
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package hdparm.x86_64 0:9.43-4.el6 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================
 Package               Arch                  Version                      Repository           Size
====================================================================================================
Installing:
 hdparm                x86_64                9.43-4.el6                   base                 81 k

Transaction Summary
====================================================================================================
Install       1 Package(s)

Total download size: 81 k
Installed size: 150 k
Downloading Packages:
hdparm-9.43-4.el6.x86_64.rpm                                                 |  81 kB     00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing : hdparm-9.43-4.el6.x86_64                                                         1/1
  Verifying  : hdparm-9.43-4.el6.x86_64                                                         1/1

Installed:
  hdparm.x86_64 0:9.43-4.el6

Complete!

Once hdparm is installed, you can verify its installation by checking its version:

hdparm -V

This command should display the version of hdparm installed on your system.

See also  How to Install b2evolution blog on Linux

Displaying Basic Hard Disk Information

The most basic use of hdparm is to display the basic hard disk information. You can do this using the following command:

hdparm /dev/sda
[root@server ~]# hdparm /dev/sda

/dev/sda:
SG_IO: bad/missing sense data, sb[]:  70 00 05 00 00 00 00 0a 00 00 00 00 20 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
 multcount     =  0 (off)
 readonly      =  0 (off)
 readahead     = 256 (on)
 geometry      = 2871/255/63, sectors = 46137344, start = 0

In this command, ‘/dev/sda’ is the device file for the first SATA or SCSI hard disk on the system. If you have multiple hard disks, they would be named ‘/dev/sdb’, ‘/dev/sdc’, and so on.

This command will display a lot of information about the hard disk, including the model number, serial number, firmware version, capabilities, and configuration.

Measuring Disk Read Performance

You can use hdparm to measure the read performance of your hard disk. The ‘-Tt’ option can be used for this purpose:

hdparm -Tt /dev/sda
[root@server ~]# hdparm -Tt /dev/sda

/dev/sda:
 Timing cached reads:   2024 MB in  2.00 seconds = 1012.10 MB/sec
 Timing buffered disk reads: 534 MB in  3.00 seconds = 177.94 MB/sec

The ‘-T’ option tells hdparm to perform timings of device reads for benchmark and comparison purposes. The ‘-t’ option does the same thing, but without using the buffer cache of the operating system, so itreflects the performance of the hard disk alone.

The output of this command will show two values:

  • The timing of cache reads, which shows the speed of reading directly from the Linux buffer cache without disk access. This measures the speed of your CPU and memory.
  • The timing of disk reads, which shows how fast data can be read from the disk.
See also  How to Secure OpenSSH (SSHD) on Linux

Measuring Disk Read Performance with Direct Disk Access

If you want to measure the disk read performance with direct disk access, you can use the ‘-t –direct’ option:

hdparm -t --direct /dev/sda
[root@server ~]# hdparm -t --direct /dev/sda

/dev/sda:
 Timing O_DIRECT disk reads: 1122 MB in  3.00 seconds = 373.67 MB/sec

The ‘–direct’ option tells hdparm to use O_DIRECT flag to bypass the page cache for the timing tests. This can give you a more accurate measure of the raw disk performance.

Commands Mentioned

  • hdparm /dev/sda – Displays basic hard disk information
  • hdparm -Tt /dev/sda – Measures disk read performance
  • hdparm -t –direct /dev/sda – Measures disk read performance with direct disk access

Conclusion

Understanding your server’s hardware, especially the hard disk, is crucial for optimizing performance and troubleshooting issues. The ‘hdparm’ tool in Linux provides a powerful way to display hard disk information and measure disk read performance. By using the commands ‘hdparm /dev/sda’, ‘hdparm -Tt /dev/sda’, and ‘hdparm -t –direct /dev/sda’, you can gain valuable insights into your hard disk’s capabilities and performance.

Remember, the performance of your server can also be significantly impacted by the type of server you’re using. Whether it’s a dedicated server, VPS server, cloud hosting, or shared hosting, each has its own advantages and considerations.

Furthermore, the choice of web server software, such as Apache, Nginx, or LiteSpeed, can also influence your server’s performance. Therefore, it’s important to choose the right combination of hardware and software to meet your specific needs.

See also  How to Allow and Deny Access for Remote SSH to CentOS 6.2

By understanding and utilizing tools like ‘hdparm’, you can ensure that your server is running at its best, providing a smooth and efficient experience for your users.

FAQ

  1. What is hdparm?

    hdparm is a command-line utility in Linux used to view and change hard disk drive and solid state drive parameters and performance settings. It can be used to tune and benchmark drives, and to provide detailed information about their hardware specifications and capabilities.

  2. How can I install hdparm?

    hdparm can be installed using the package manager of your Linux distribution. For example, on Ubuntu or Debian, you can use ‘sudo apt-get install hdparm’. On CentOS or RHEL, you can use ‘sudo yum install hdparm’.

  3. How can I use hdparm to display basic hard disk information?

    You can use the command ‘hdparm /dev/sda’ to display basic hard disk information. Here, ‘/dev/sda’ is the device file for the first hard disk on the system. The command will display information such as the model number, serial number, firmware version, capabilities, and configuration.

  4. How can I use hdparm to measure disk read performance?

    You can use the command ‘hdparm -Tt /dev/sda’ to measure thedisk read performance. The ‘-Tt’ option performs timings of device reads for benchmark and comparison purposes. The ‘-T’ option performs the test using the buffer cache of the operating system, while the ‘-t’ option performs the test without using the buffer cache.

  5. How can I use hdparm to measure disk read performance with direct disk access?

    You can use the command ‘hdparm -t –direct /dev/sda’ to measure the disk read performance with direct disk access. The ‘–direct’ option uses the O_DIRECT flag to bypass the page cache for the timing tests, providing a more accurate measure of the raw disk performance.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *