답변:
관심있는 명령은 다음과 rtcwake
같습니다.
이 프로그램은 지정된 웨이크 업 시간까지 시스템 절전 상태로 들어가는 데 사용됩니다.
올바른 구문을 찾으려면 다음을 시도하십시오.
sudo rtcwake -u -s 60 -m mem
복원하기 전에 60 초 동안 컴퓨터를 일시 중지시켜야합니다. 중요한 매개 변수는 mem
몇 가지 옵션을 선택할 수 있다는 것입니다. 가장 적합한 값을 찾기 위해 재생하십시오.
standby
ACPI state S1. This state offers minimal, though real,
power savings, while providing a very low-latency transi‐
tion back to a working system. This is the default mode.
mem ACPI state S3 (Suspend-to-RAM). This state offers signif‐
icant power savings as everything in the system is put
into a low-power state, except for memory, which is
placed in self-refresh mode to retain its contents.
disk ACPI state S4 (Suspend-to-disk). This state offers the
greatest power savings, and can be used even in the
absence of low-level platform support for power manage‐
ment. This state operates similarly to Suspend-to-RAM,
but includes a final step of writing memory contents to
disk.
off ACPI state S5 (Poweroff). This is done by calling
'/sbin/shutdown'. Not officially supported by ACPI, but
usually working.
no Don't suspend. The rtcwake command sets RTC wakeup time
only.
on Don't suspend, but read RTC device until alarm time
appears. This mode is useful for debugging.
이 게시물의 맨 아래에있는 스크립트를 사용하여 컴퓨터를 일시 중지하고 특정 시간에 깨울 수 있습니다.
구문은 suspend_until [hh:mm]
예를 들어
sudo ./suspend_until 07:30
스크립트를 이름으로 저장하고 suspend_until
실행 권한을 부여하십시오.
chmod +x suspend_until
저녁에 특정 시간에 실행 한 다음 아침에 깨어나도록이 스크립트를 호출하는 루트 크론 작업을 작성할 수 있습니다.
sudo crontab -e
이제 23:30에 suspend 스크립트를 실행하는 것과 같은 것을 입력하십시오.
30 23 * * * /home/myhomefolder/suspend_until 07:30
#!/bin/bash
# Auto suspend and wake-up script
#
# Puts the computer on standby and automatically wakes it up at specified time
#
# Written by Romke van der Meulen <redge.online@gmail.com>
# Minor mods fossfreedom for AskUbuntu
#
# Takes a 24hour time HH:MM as its argument
# Example:
# suspend_until 9:30
# suspend_until 18:45
# ------------------------------------------------------
# Argument check
if [ $# -lt 1 ]; then
echo "Usage: suspend_until HH:MM"
exit
fi
# Check whether specified time today or tomorrow
DESIRED=$((`date +%s -d "$1"`))
NOW=$((`date +%s`))
if [ $DESIRED -lt $NOW ]; then
DESIRED=$((`date +%s -d "$1"` + 24*60*60))
fi
# Kill rtcwake if already running
sudo killall rtcwake
# Set RTC wakeup time
# N.B. change "mem" for the suspend option
# find this by "man rtcwake"
sudo rtcwake -l -m mem -t $DESIRED &
# feedback
echo "Suspending..."
# give rtcwake some time to make its stuff
sleep 2
# then suspend
# N.B. dont usually require this bit
#sudo pm-suspend
# Any commands you want to launch after wakeup can be placed here
# Remember: sudo may have expired by now
# Wake up with monitor enabled N.B. change "on" for "off" if
# you want the monitor to be disabled on wake
xset dpms force on
# and a fresh console
clear
echo "Good morning!"
NB
mem
일시 중단 방법이 적합한 모든 스크립트 부분을 다음과 같이 변경하십시오 .
# Set RTC wakeup time
sudo rtcwake -l -m mem -t $DESIRED &
하드웨어 시계가 UTC ( ) 또는 로컬 ( ) 시간을 사용하는지에 따라 플래그 -u
대신 플래그 를 대체해야 할 수도 있습니다 . 하드웨어 시계는 운영 체제에 표시되는 시스템 시계와 다릅니다.-l
-u
-l
redgeonline에 신용
rtcwake를 사용하여 간단한 bash 스크립트를 만들었습니다. PHP를 사용하여 자연어를 시스템 시간으로 변환합니다. 예를 들면 다음과 같습니다.
sudo ./cu "tomorrow 9am"
sudo ./cu "next monday 3pm"
sudo ./cu "1 hour ago"
rtcwake: time doesn't go backward
#!/bin/bash
export sdate=$1
date=`/usr/bin/php << 'EOF'
<?php
date_default_timezone_set("Etc/GMT-2");
$date = strtotime(GETENV("sdate"));
echo "\r".$date;
EOF`
rtcwake -m mem -t $date
rtcwake
내 컴퓨터에는 영향을 미치지 않았습니다. 내 Asus 마더 보드에서 BIOS에서 깨우기 시간을 설정해야했습니다. 고급> APM 메뉴에서 설정을 찾았으며 bios 시간이 미국 동부 시간으로 설정되어 있어도 UTC를 사용해야했습니다.