1 頁 (共 1 頁)

SMART 監控硬碟

發表於 : 2005-11-09 18:58:21
yehlu
http://ifgh.blogdns.net/blog/post/1/229

[BSD Family, Linux/Debain, Linux/Gentoo]S.M.A.R.T
ifgh @ 10/03/2005-02:24
what's SMART (Self-Monitoring, Analysis and Reporting Technology), 一直以來都知道SMART可以用來monitor HD, 透過SMART還可以事先預知HD是不是快掛了, 但是都沒去關心過SMART啟動了沒有, 今天發現smartmontools, 順便就試了一下, 才發現原來我HD的SMART還沒turn on..-.-|||
相關文章: Monitoring Hard Disks with SMART
首先安裝smartmontool這就不贅述囉~

# smartctl -i /dev/hda
-i查看你的HD information, 也看看你的SMART開了沒

如果沒開

# smartctl -s on -S on -o on /dev/hda
-s, Enable/disable SMART on device (on/off)
-S, Enable/disable Attribute autosave on device (on/off)
-o, Enable/disable automatic offline testing on device (on/off)

有些較舊的HD會沒有support autosave or offline testing, 所以在enable會出現warning這別在意~^^
其他arguments, 請下smarctl -h查看, 或參考上面那篇文章
如果要開機就啟動, 請修改/etc/smartd.conf加入

/dev/hda -s on -S on -o on

Gentoo user請執行

rc-update add smartd default

FreeBSD user請修改/etc/rc.conf加入

smartd_enable="YES"