If you’re using a VPS or dedicated server, disk stability isn’t optional — it’s mission-critical. A single failing drive can result in data loss, downtime, and costly recovery. That’s why Linux system administrators rely on smartctl — a powerful command-line tool that gives you direct access to drive diagnostics via S.M.A.R.T.
This guide walks you through using smartctl on Linux, including practical commands, real-world examples, and smart automation.
smartctl is part of the Smartmontools package. It allows access to S.M.A.R.T. (Self-Monitoring, Analysis and Reporting Technology), built into most modern HDDs and SSDs.
With smartctl, you can:
Supported hardware includes:
Advantage | Benefit |
---|---|
Early failure detection | Prevent data loss before it happens |
Real-time diagnostics | Monitor your drives without rebooting |
Easy automation | Works well with cron, scripts, and alerts |
Hardware-level visibility | No guesswork — get raw data from the drive |
DevOps & sysadmin friendly | Widely used across datacenters and cloud servers |
Installation depends on your Linux distribution:
OS | Installation Command |
---|---|
Ubuntu/Debian | sudo apt update && sudo apt install smartmontools |
CentOS/RHEL | sudo yum install smartmontools |
Fedora | sudo dnf install smartmontools |
Arch Linux | sudo pacman -S smartmontools |
Once installed, the smartctl command is available via the terminal.
Command | What It Does |
---|---|
smartctl -i /dev/sda | Displays drive information |
smartctl -H /dev/sda | Checks overall health status |
smartctl -A /dev/sda | Lists detailed S.M.A.R.T. attributes |
smartctl -t short /dev/sda | Starts a short (2-min) self-test |
smartctl -t long /dev/sda | Starts a full extended self-test (10–60 min) |
smartctl -l selftest /dev/sda | Shows test history |
smartctl -l error /dev/sda | Displays error logs |
📌 Replace /dev/sda with your actual drive (e.g., /dev/nvme0n1 for NVMe SSDs).
sudo smartctl -H /dev/sda
Expected output:
SMART overall-health self-assessment test result: PASSED
If the result is PASSED, your drive is currently healthy.
If it shows FAILED — back up immediately and plan for replacement.
ID | Attribute | Meaning |
---|---|---|
5 | Reallocated Sector Count | Bad sectors remapped to reserve space |
197 | Current Pending Sector Count | Sectors awaiting re-read |
198 | Offline Uncorrectable Count | Sectors with read/write errors |
194 | Temperature (Celsius) | Keep below 50 °C for optimal performance |
An increasing value in these fields = drive degradation in progress.
Task | Frequency |
---|---|
-H health check | Weekly |
Short test (-t short) | Weekly |
Long test (-t long) | Monthly |
Error log review | After crashes or I/O issues |
Temperature monitoring | Constant (via scripts) |
Example: a weekly email report on disk health
0 3 * * 1 smartctl -H /dev/sda | mail -s "SMART Health Report" you@example.com
📌 Be sure mailutils or sendmail is installed.
smartctl is a lightweight yet powerful tool that no sysadmin should overlook.With it, you can keep your servers healthy, your data safe, and your infrastructure proactive.