Storage Maintenance on Arch Linux
INFO
Learn how to check hard drive properties and health using hdparm
and smartctl
or configure trim
on Arch Linux.
Installation
Install the required packages:
shsudo pacman -S hdparm smartmontools
Package Info:
hdparm
→ View and set hard drive parameters.smartmontools
→ Monitor hard drive health using S.M.A.R.T.
Checking Hard Drive Properties with hdparm
- List all drives:sh
lsblk
- Check basic drive information:shReplace
sudo hdparm -I /dev/sdX
sdX
with your actual drive (e.g.,sda
).
TIP
Use sudo hdparm -tT /dev/sdX
to test drive read speed.
Checking Drive Health with smartctl
(Simple)
- Check if S.M.A.R.T is supported and enabled on your drive:sh
sudo smartctl -i /dev/sdX
- Get an overall health summary:sh
sudo smartctl -H /dev/sdX
Checking Drive Health with smartctl
(Advanced)
Check detailed S.M.A.R.T. data:
shsudo smartctl -a /dev/sdX
Perform a short self-test:
shsudo smartctl -t short /dev/sdX
INFO
You can also perform a
long
self-test.View test results:
shsudo smartctl -l selftest /dev/sdX
Enabling TRIM for SSDs
INFO
TRIM improves SSD longevity and speed by clearing unused data blocks.
IMPORTANT
hdparm
works for SATA drives but doesn't work well with NVMe drives.
- Check if your drive supports TRIM:sh
sudo hdparm -I /dev/sdX | grep TRIM
- Manually run TRIM:sh
sudo fstrim -v /
- Enable automatic TRIM:sh
sudo systemctl enable --now fstrim.timer