smartctlは、最初のエラー位置で別のセクタを報告します。

smartctlは、最初のエラー位置で別のセクタを報告します。

古いハードドライブをテストしていますが、smartctlディスクのセルフテスト結果をよく理解していません。

$ sudo smartctl -d sat -x /dev/sdd
...
SMART Extended Self-test Log Version: 1 (1 sectors)
Num  Test_Description    Status                  Remaining  LifeTime(hours)  LBA_of_first_error
# 1  Short offline       Completed without error       00%      9691         -
# 2  Extended offline    Completed: read failure       90%      9691         7948857160
# 3  Short offline       Completed: read failure       90%      9687         7948857160
# 4  Short offline       Completed without error       00%       113         -
...

$ sudo smartctl -d sat -a /dev/sdd
...
SMART Self-test log structure revision number 1
Num  Test_Description    Status                  Remaining  LifeTime(hours)  LBA_of_first_error
# 1  Short offline       Completed without error       00%      9691         -
# 2  Extended offline    Completed: read failure       90%      9691         3653889864
# 3  Short offline       Completed: read failure       90%      9687         3653889864
# 4  Short offline       Completed without error       00%       113         -
...

smartclt -a報告業界間の違いは何ですかsmartctl -x

ベストアンサー1

返された数値はsmartctl -a正しい32ビットLBAに切り捨てられます。smartctl -a大容量ディスクには使用しないでください。smartctl -aマンページに従ってSMARTセルフテストログを検索し、smartctl -xSMARTも検索します。拡大するセルフテストログ。拡張セルフテストにより、より長いログを可能にし、48ビットLBAに対応します。一般的なセルフテストログは、32ビットLBAフィールドのみをサポートします。つまり、smartctl -a2TiBより大きいドライブには絶対に使用しないでください。

おすすめ記事