Can a Ubuntu (or any other distro) wake up from standby/hibernate at a preset time?

I actually don't want the PC to consume 200W all the time for just doing something every hour.

link|improve this question

57% accept rate
feedback

1 Answer

up vote 2 down vote accepted

rtcwake is a standard Linux command that enters a standby or sleep state until the specified time. It depends on BIOS support; most current PCs do support it. You can specify either a sleep duration (in seconds) or a wake up date (in seconds since the epoch, as produced by date +%s).

rtcwake -s 3600
rtcwake -t $(date +%s 'now + 1 hour')
link|improve this answer
I tried on my compaq and it never even went to speed after the command. My Asus/AMD desktop did go to sleep instantly using " -s 60" but never woke up. – thevikas Dec 4 '10 at 5:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.