web-dev-qa-db-ja.com

smartmontools / smartctlに必要な時間を自動的に待つことはできますか?

Can we do something like this in a script (preferably zsh):

smartctl -t long /dev/sda
smartctl -t long /dev/sdb
smartctl -t long /dev/sdc

[Wait however long smartctl needs]

smartctl -H /dev/sda
smartctl -H /dev/sdb
smartctl -H /dev/sdc

明らかなように、私はこれを自動化しようとしています。

1
Ray Andrews

2つの可能性があります。 smartctl -cは、次のような行を含むデバイスの機能を一覧表示します

Short self-test routine 
recommended polling time:      (   1) minutes.
Extended self-test routine
recommended polling time:      (  48) minutes.

したがって、これらを読むだけで、必要な短時間または長時間の睡眠をとることができます。

第二に、テストが進行している間、同じ-cオプションは、テストの現在のステータスを一覧表示します。例:

Offline data collection status:  (0x03) Offline data collection activity
  is in progress.
Self-test execution status:      ( 247) Self-test routine in progress...
  70% of test remaining.
Total time to complete Offline 
data collection:    (   44) seconds.

したがって、数分ごとにポーリングして、残り時間が0に戻り、他のフィールドの最終値が返されるのを待つことができます。

Offline data collection status:  (0x02) Offline data collection activity
  was completed without error.
Self-test execution status:      (   0) The previous self-test routine completed
  without error or no self-test has ever 
  been run.
Total time to complete Offline 
data collection:    (    0) seconds.
3
meuh

それはきれいではありませんが、これはうまくいくようです。任意の数のディスクを処理するように簡単に変更できます。 Modは大歓迎です。

#!/usr/bin/zsh
#set -x

outputmsg () { echo -e "\e[35;1m$@\e[0m"; }
infomsg ()   { echo -e "\e[36;1m$@\e[0m"; }

smartctl -X /dev/sda &> /dev/null
wait_time_greatest=$( smartctl -t short /dev/sda | grep 'Please wait' | sed 's,^\(Please wait \)\([[:digit:]]*\)\(.*\),\2,' )

smartctl -X /dev/sdb &> /dev/null
wait_time_new=$( smartctl -t short /dev/sdb | grep 'Please wait' | sed 's,^\(Please wait \)\([[:digit:]]*\)\(.*\),\2,' )

[ "$wait_time_new" -gt "$wait_time_greatest" ] && wait_time_greatest="$wait_time_new"

wait_time_greatest=$((wait_time_greatest + 1)) #To be safe?

infomsg "\nWe'll be done in $wait_time_greatest minutes ...\n"
sleep "$[wait_time_greatest]m"

outputmsg "Disk sda:"   # Strange that the report doesn't contain the disk ID.
echo -e \e[0m       # Must reset the color!
smartctl -H /dev/sda

outputmsg "Disk sdb:"
echo -e \e[0m       # Must reset the color!
smartctl -H /dev/sdb

# Because smartctl seems to screw this up and it needs to be redone:
hdparm -S60y /dev/sda
hdparm -S60y /dev/sdb
2
Ray Andrews