How can I hibernate/suspend from the command line and do so at a specific time

35,416

Solution 1

You can use the at command to schedule any action, including running the commands detailed in that question.

For example, if you want to hibernate in 30 minutes:

echo 'pmi action hibernate' | at now + 30 min

Or if you want to suspend at 11:00 pm:

echo 'pmi action suspend' | at 11pm

If you need to run a command as root, run at with sudo rather than the command itself with sudo (since sudo should only be run interactively, unless you've configured it not to ask for your password). For example, the equivalents of the above commands using pm-hibernate and pm-suspend are:

echo pm-hibernate | sudo at now + 30 min

echo pm-suspend | sudo at 11pm

Solution 2

For relative specification (e.g. "after 30 minutes") you can simply use sleep command to make suspending/hibernating command wait.


Examples:

Wait 30 minutes, then suspend:

sudo sleep 30m; sudo pm-suspend

Wait 1 hour, then hibernate:

sudo sleep 1h; sudo pm-hibernate

Solution 3

For specific times repeated - like shutting down computers are a specific time each day. use cron.

crontab -e

add the following:

15 14 1 * * pmi action suspend

If you want to customize it.

* * * * * command to be executed
- - - - -
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday=0 or 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)

For a one time job us the at command

For example, if you want to hibernate in 30 minutes:

echo 'pmi action hibernate' | at now + 30 min

Or if you want to suspend at 11:00 pm:

echo 'pmi action suspend' | at 11pm
Share:
35,416

Related videos on Youtube

Ederico
Author by

Ederico

Updated on September 18, 2022

Comments

  • Ederico
    Ederico almost 2 years

    I managed to find out how to suspend/hibernate the system from the command line by reading How can I suspend/hibernate from command line?.

    However, I would like to know how to use the command line to suspend/hibernate at a given time, in absolute (example, 11PM) or relative (example, in 30 minutes) terms.

    I already know how to do this with shutdown, but I'm note sure if the command is similar.

  • Eliah Kagan
    Eliah Kagan over 12 years
    Using cron is a good solution when the goal is to suspend or hibernate at a specific time of day, or a specific time on a specific day of the week, or month, or year. But for scheduling a single suspension or hibernation, which seems to be what Ederico was asking about (and which is something that makes a lot more sense to want to do), the at command should be used. (You can schedule a single event with cron by making the event edit the relevant crontab, for example using sed or awk, but that's extremely complex and unnecessary; use at.)
  • Bruno Pereira
    Bruno Pereira over 12 years
    Does not fit to the relative terms requested by the question, its only useful for specific schedules.
  • cprofitt
    cprofitt over 12 years
    Yes, this was an example for the 'specific time' that was requested. "However, I would like to know how to use the command line to suspend/hibernate at a given time, in absolute (example, 11PM)"
  • cprofitt
    cprofitt over 12 years
    Thanks for catching that both situations were asked for... I edited the title to reflect this as well. I modified my answer to include both situations now.
  • Eliah Kagan
    Eliah Kagan over 12 years
    You've edited your answer to add information about how to use at, but the information you have added is unfortunately not correct. The < operator redirects text from the file or device specified to its right to standard input for the command specified to its left. If you wanted to use < instead of | (as in my answer), you'd have to make a file with pmi action suspend (or pmi action hibernate) as its contents. Such complexity makes | better here.
  • Eliah Kagan
    Eliah Kagan over 12 years
    As a general guideline, when you have a cat command to the left of a | (e.g. cat foo | bar), you can replace that with a < expression (bar < foo). But when you have an echo command to the left of a |, that cannot be trivially replaced with a < expression.
  • cprofitt
    cprofitt over 12 years
    thanks for the explanation. It should be edited with your examples now. The aksubuntu team can consolidate this and make it useful for future folks searching.
  • KhoPhi
    KhoPhi over 7 years
    I like this approach too.
  • KhoPhi
    KhoPhi over 7 years
    Any idea how I can clear the jobs?
  • Eliah Kagan
    Eliah Kagan over 7 years
    @Rexford The atrm command removes jobs created by at.
  • Vitaly Zdanevich
    Vitaly Zdanevich over 6 years
    After 1h pm-hibernate want a password for root again and suspend does not happen.
  • user639188
    user639188 over 5 years
    how about logging in as root to avoid getting asked for a password?