ฉันจะจำศีลหรือนอนหลับบนเดสก์ท็อป Ubuntu 10.10 ของฉันและให้ "ปลุก" ในวันถัดไปได้อย่างไร
ฉันเคยเห็นซอฟต์แวร์ที่สามารถทำได้บน windows ดังนั้นจึงไม่ยากบน Ubuntu!
ฉันจะจำศีลหรือนอนหลับบนเดสก์ท็อป Ubuntu 10.10 ของฉันและให้ "ปลุก" ในวันถัดไปได้อย่างไร
ฉันเคยเห็นซอฟต์แวร์ที่สามารถทำได้บน windows ดังนั้นจึงไม่ยากบน Ubuntu!
คำตอบ:
คำสั่งที่คุณสนใจคือ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
คุณสามารถสร้างงาน root cron ที่เรียกใช้สคริปต์นี้เพื่อดำเนินการในเวลาที่กำหนดในตอนเย็นและตื่นขึ้นมาในตอนเช้า:
sudo crontab -e
ตอนนี้ให้ป้อนสิ่งที่ต้องการเรียกใช้สคริปต์การระงับในเวลา 23:30 น:
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 &
คุณอาจต้องแทนที่การ-u
ตั้งค่าสถานะแทน-l
ธงขึ้นอยู่กับว่านาฬิกาฮาร์ดแวร์ของคุณใช้เวลา UTC ( -u
) หรือ-l
เวลาท้องถิ่น ( ) โปรดทราบว่านาฬิกาฮาร์ดแวร์ของคุณแตกต่างจากนาฬิการะบบที่คุณเห็นในระบบปฏิบัติการ
เครดิตเพื่อredgeonline
การใช้ rtcwake ฉันได้สร้างสคริปต์ทุบตีง่ายๆ มันใช้ 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 ฉันพบการตั้งค่าภายใต้เมนู Advanced> APM และฉันต้องใช้ UTC แม้ว่าเวลา bios ของฉันจะถูกตั้งค่าเป็นเวลาสหรัฐอเมริกาตะวันออก