특정 시간에 자동 절전 및 깨우기


59

Ubuntu 10.10 데스크탑을 최대 절전 모드 또는 최대 절전 모드로 전환하고 다음 날에 "일깨워"려면 어떻게해야합니까?

Windows 에서이 작업을 수행 할 수있는 소프트웨어를 보았으므로 Ubuntu에서 어렵지 않습니다!

답변:


74

rtcwake

관심있는 명령은 다음과 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

suspend_until 스크립트

#!/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에 신용


1
내가 요구 한 것 그리고 훨씬 더! 줄 사이를 읽어 주셔서 감사합니다!
drnessie

3
고마워-일시 중단 방법이 당신을 위해 작동하는 모든 스크립트 비트를 강조하기 위해 약간 업데이트되었습니다.
fossfreedom

5
killall은 불필요하며 rtcwake는 데몬으로 실행되지 않으며 단순히 / sys / class / rtc / rtc0 / wakealarm에 값을 씁니다. 다시 실행하면 해당 파일에 다른 값이 기록됩니다. 또한 rtcwake의 끝에서 &를 제거하면 완료되면 종료됩니다. 그런 다음 sleep 명령을 제거 할 수 있습니다. 그리고 스크립트에서 다른 루트 명령을 실행하려면 개별 명령 대신 전체 sudo를 실행하지 않는 이유는 무엇입니까?
unhammer

# 내 오래된 노트북은 위의 스크립트를 사용하여 깨어나지 않을 것입니다. 그래서 이것은 내가 한 일입니다 # root crontab 30 20 * * * /home/gare/Documents/scripts/suspend_10_hours.sh >> /home/gare/Documents/scripts/suspend.log ~ $ more / home / gare / Documents / scripts / suspend_10_hours.sh #! / bin / bash # 오래된 노트북은 깨지 않습니다. 따라서 rtcwake에게 10 시간 # 10 시간 * 60 분 * 60 초 = 36000 sudo rtcwake -u -s 36000 -m mem
gare

1
@unhammer가 말한 것 외에도 killall은 불필요 할뿐만 아니라 실제로 "killall"과 일치하는 시스템의 모든 프로세스에 SIGTERM을 전송하기 때문에 유해합니다. 사람들이 잘못된 연습을 복사하도록 유도하는 대신 언해 머가 제안한 수정 프로그램을 통합하십시오.
josch

5

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

4
date -d는 이미 여러 문자열을 이해하고 있습니다. cyberciti.biz/tips/…
unhammer

0

rtcwake내 컴퓨터에는 영향을 미치지 않았습니다. 내 Asus 마더 보드에서 BIOS에서 깨우기 시간을 설정해야했습니다. 고급> APM 메뉴에서 설정을 찾았으며 bios 시간이 미국 동부 시간으로 설정되어 있어도 UTC를 사용해야했습니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.