回答:
あなたが使用することができます rtcwake
そして shutdown
それをするために。
rtcwake
コンピュータを一時停止し、一定期間後に起動するためのユーティリティです。基本的な使い方は
rtcwake -m <mode> -s <seconds>
例えば
rtcwake -m mem -s 60
60秒後にコンピュータをramして起動します。次のように、目的のアクションを順番に呼び出すスクリプトを書くことができます。
#!/bin/sh
# calculate seconds remaining until $1
seconds_until() {
current_time=`date +%s`
target_time=`date -d $1 +%s`
seconds=`expr $target_time - $current_time`
# wrap seconds
[ $seconds -lt 0 ] && seconds=`perl -e "print $seconds+86400"`
echo $seconds
}
# suspend and wake up at 13:00
rtcwake -m mem -s `seconds_until 13:00`
# wait until 17:00, suspend, and wake up at 18:00
sleep `seconds_until 17:00`
rtcwake -m mem -s `seconds_until 18:00`
# wait until 20:00 and shutdown
sleep `seconds_until 20:00`
shutdown -h now
使用するにはroot権限が必要です rtcwake
。