Smartctl: Disk Checking Command in Linux

Install tools

1
# yum install -y smartmontools

Check non-RAID disks

1
2
# smartctl --all /dev/sda
# smartctl --all /dev/sdb

Check RAID disks

1
2
3
4
5
6
# smartctl --all /dev/sdc -d megaraid,0
# smartctl --all /dev/sdc -d megaraid,1
# smartctl --all /dev/sdc -d megaraid,2
# smartctl --all /dev/sdc -d megaraid,3
# smartctl --all /dev/sdc -d megaraid,4
# smartctl --all /dev/sdc -d megaraid,5