PalmDreams本文へジャンプ

PicoWorkshop

Project LinuxSMART
HDDのS.M.A.R.T情報を表示させた場合に、表示情報が多く、故障の予兆を逃してしまわないように少しだけ調べてみました。 誤記、誤訳等あるかもしれません。参考程度にとどめてください。

項目コマンド例説明smartctrlのインストール# sudo apt-get install smartmontoolsS.M.A.R.T対応のハードディスクに対するモニタツールをインストールする。ハードディスクの自己診断情報の読み出しと検査# smartctl -a /dev/sda
# smartctl -a /dev/sdb

S.M.A.R.T対応のハードディスクに対し自己診断情報を表示する。
RAID を組んだ場合は、それぞれの物理デバイスごとにコマンドを発行する。
ハードディスクのテスト# smartctl --test=long /dev/sda
# smartctl --test=long /dev/sd
b
ハードディスクの定期的な動作確認を行いたい場合記録されているハードディスクエラーの読み出し# smartctl -l error /dev/sda
# smartctl -l error /dev/sdb
No error loggedの場合はエラーは無い

エラーがある場合は、
ATA Error count xx
Error 1 occured ..............以下詳細エラーが表示


S.M.A.R.T.検査項目一覧項目ID項目名詳細な説明01Raw Read Error Rateこの項目はハードディスクからデータを読み込む時に発生したエラーの発生率。値が閾値より低い場合、ハードディスクの読み込み動作に障害がある。
This attribute value depends of read errors, disk surface condition and indicates the rate of hardware read errors that occurred when reading data from a disk surface. Lower values indicate that there is a problem with either disk surface or read/write heads.
02Throughput Performanceハードディスクの処理能力(スループット)を表す。この値が閾値以下の場合、高い確率でハードディスクに障害がある。

Overall (general) throughput performance of a hard disk drive. If the value of this attribute is deceasing there is a high probability of troubles with your disk.

03Spin Up Timeハードディスクに電源を供給し回転を開始してから規定の回転数に達するまでに要した平均時間。

Average time of spindle spin up (from zero RPM (Revolutions Per Minute) to fully operational). Active SMART shows the raw value of this attribute in milliseconds or seconds.

04Start/Stop Countハードディスクのスピンドルモーターが回転/停止した回数。

This raw value of this attribute is a count of hard disk spindle start/stop cycles.

05Reallocated Sectors Count代替処置(不良セクタの代替え用に予約された予備セクタへの割付処理)が行われた不良セクタの数。

Count of reallocated sectors. When the hard drive finds a read/write/verification error, it marks this sector as "reallocated" and transfers data to a special reserved area (spare area).
This process is also known as remapping and "reallocated" sectors are called remaps. This is why, on a modern hard disks, you can not see "bad blocks" while testing the surface - all bad blocks are hidden in reallocated sectors. However, the more sectors that are reallocated, the more a sudden decrease (up to 10% and more) can be noticed in the disk read/write speed.

07Seek Error Rate磁気ヘッドが目的のトラックへ移動しようとして失敗(シークエラー)した発生率。ヘッドのシーク機構の故障やハードディスクの熱などによって発生する。数値が低い場合、ハードディスクの表面やハードディスクのメカニズムに問題がある可能性が高い。

Rate of seek errors of the magnetic heads. If there is a failure in the mechanical positioning system, a servo damage or a thermal widening of the hard disk, seek errors arise. More seek errors indicates a worsening condition of a disk surface and the disk mechanical subsystem.

08Seek Time Performance磁気ヘッドがシーク作業(ヘッドの移動)に要した平均時間。

Average performance of seek operations of the magnetic heads. If this attribute is decreasing, it is a sign of problems in the hard disk drive mechanical subsystem.

09Power-On Hours工場出荷状態からのハードディスクの通電時間の総合計。閾値と比較してこの値の減少はMTBF(平均故障間隔)の減少を示している。
ただしこのMTBF値は0になっても機能は失われない。
参考値である。

Count of hours in power-on state. The raw value of this attribute shows total count of hours (or minutes, or seconds, depending on manufacturer) in power-on state. A decrease of this attribute value to the critical level (threshold) indicates a decrease of the MTBF (Mean Time Between Failures).
However, in reality, even if the MTBF value falls to zero, it does not mean that the MTBF resource is completely exhausted and the drive will not function normally.

0A(10)Spin Retry Countディスクの回転数を規定値まで回転上昇する際に既定値に達した回数。
この数値の減少はハードディスクのメカニカル機構に不具合が発生する予兆。

Count of retry of spin start attempts. This attribute stores a total count of the spin start attempts to reach the fully operational speed (under the condition that the first attempt was unsuccessful). A decrease of this attribute value is a sign of problems in the hard disk mechanical subsystem.

0B(11)Recalibraion Retriesハードディスクのキャリブレーション動作を再度要求された回数(すでにキャリブレーションに失敗している状態で)。この数値の減少はハードディスクのメカニカル機構に不具合が発生する予兆。

This attribute indicates the number of times recalibration was requested (under the condition that the first attempt was unsuccessful). A decrease of this attribute value is a sign of problems in the hard disk mechanical subsystem.

0C(12)Device Power Cycle Countハードディスクの電源をON/OFFした総回数。

This attribute indicates the count of full hard disk power on/off cycles.

0D(13)Soft Read Error Rate

次ページ