How to Test SSD/HDD Health in Linux?

hackreveal
3 min readNov 3, 2023

--

The health of your SSD (Solid State Drive) or HDD (Hard Disc Drive) is important for the overall performance and reliability of your system. Monitoring the health of your storage devices allows you to spot potential problems early and take the required steps to prevent data loss. In this post, we’ll look at various techniques for test SSD/HDD health in Linux and ensuring that your storage devices are in excellent condition.

Test SSD/HDD Health in Linux

Monitoring your storage devices with SMART (Self-Monitoring, Analysis, and Reporting Technology) is one of the most effective techniques to analyse their health. SMART has a number of features that provide detailed information about the present situation of your SSD or HDD. SMART monitoring requires the installation of SMART monitoring software on your Linux system.

To install the required packages, open a terminal and enter the following command:

sudo apt install smartmontools

Once the installation is complete, you can use the smartctl command-line utility to access SMART data.

The smartctl tool allows you to get precise information about the health of your SSD or HDD. Run the following command in the terminal to verify the health of a specific device:

$ sudo smartctl -a /dev/sdX
or
$ sudo smartctl -t long -a /dev/sda

Use nvme-cli to Test SSD/HDD Health

Another popular programme called “nvme-cli” can be used for checking the health of SSDs and HDDs. As the name implies, this is intended specifically for NVME-type SSDs. Use the following commands to install it:

$ sudo apt install nvme-cli #Ubuntu/Debian
$ sudo dnf install nvme-cli #Fedora

After you’ve learned the command, use it to check the SSD/HDD’s health:

  • The watch is used to continuously check the SMART log
  • -n 1 instructs the watch command to monitor the SMART log every second
  • nvme is used to manage the NVMe devices
  • smart-log is used in conjunction with the nvme command to read the SMART logs.
  • /dev/nvme0n1p is the drive being monitored

$ sudo watch -n 1 nvme smart-log /dev/nvme0n1p6

Users can see the percentage_used in the preceding figure, which is 3% (excellent health). If it exceeds 50%, you should be concerned and consider replacing the drive. Users can also view the “power_on_hours,” “unsafe_shutdowns,” and other statistics in the terminal.

How to View a List of Discs in Linux

On Linux, various tools are available to display the list of discs, including lsblk, df, fdisk, hwinfo, and many others. To view a list of discs, we use the lsblk command:

$ lsblk

The result shows the operating system disc partitions “sda1”, “sda2”, and “sda3”, and a system can have many hard drives.

GUI Tools for Disk Health Analysis

There are various graphical interface utilities for checking disc health available for Linux. GNOME Discs and GSmartControl are popular options for accessing SMART data and doing disc health diagnostics through a user-friendly interface.

sudo apt-get install gnome-disk-utility

For GSmartControl, run the following command:

sudo apt install gsmartcontrol

Once installed, you may access these tools from the application’s menu and visually examine disc health information.

Conclusion

Regularly testing the health of your SSD or HDD is important for ensuring the stability and reliability of your system. Using smart monitoring tools, doing disc benchmarking, file system checks, monitoring disc temperatures, and automating health checks will help you ensure that your storage devices are in good working order. To avoid data loss and to extend the life of your SSD or HDD, implement these best practises in your Linux system.

Also Read:

How to Change Linux Password Quickly and Easily

Can Linux Be Hacked? Debunking the Myths and Facts

3 Way to Install Python on Ubuntu

How to Install InstaPy and Build a Instagram Bot

--

--

hackreveal

We are a team of youngest and cool geeks who always provide useful tech information and useful gadgets for you. Thanks to visit here.! we hope you remember us..