SMART是一种磁盘自我分析检测技术,早在90年代末就基本得到了普及
每一块硬盘(包括IDE、SCSI)在运行的时候,都会将自身的若干参数记录下来
这些参数包括型号、容量、温度、密度、扇区、寻道时间、传输、误码率等
硬盘运行了几千小时后,很多内在的物理参数都会发生变化
某一参数超过报警阈值,则说明硬盘接近损坏
此时硬盘依然在工作,如果用户不理睬这个报警继续使用
那么硬盘将变得非常不可靠,随时可能故障.
yum install smartmontools
smartctl -i <device>
:显示设备的身份信息,检查硬盘是否打开了SMART支持。看到有:
SMART support is: Enabled
说明硬盘支持SMART。
如果为Disabled
,使用:
smartctl --smart=on --offlineauto=on --saveauto=on <device>
启用SMART。
smartctl -H <device>
:查看硬盘的健康状况。(df -h
查看硬盘 如:/dev/sda
) === START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
PASSED
表示硬盘健康状态良好,如果为Failure
那就要立刻更换硬盘。
smartctl -A <device>
:显示设备SMART厂商属性和值。smartctl -l error <device>
:显示硬盘历史错误信息。smartctl --test=TEST <device>
:硬盘自测。TEST可取值:offline
, short
, long
, conveyance
, select
,M-N
, pending
,N
, afterselect
,[on|off]
, scttempint
,N[
,p]
此时可以用smartctl -X
中断后台测试。
smartctl -l selftest <device>
:显示硬盘测试信息。smartctl -a <device>
:显示硬盘SMART的全部信息smartctl --all /dev/sda
显示硬盘SMART的全部信息“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:centos下smartctl安装配置(硬盘S.M.A.R.T信息及坏块检测命令)