在特定时间关闭ubuntu

在特定时间关闭ubuntu

我在用ubuntu服务器14.04,现在正在下载,我要离开办公室。我想在2小时后关闭它。请帮助我,该怎么做。

这对我不起作用。

sudo shutdown -P 60

答案1

man shutdown

The time string may either be in the format "hh:mm" for hour/minutes
specifying the time to execute the shutdown at, specified in 24h clock
format. Alternatively it may be in the syntax "+m" referring to the
specified number of minutes m from now.  "now" is an alias for "+0",
i.e. for triggering an immediate shutdown. If no time argument is
specified, "+1" is implied.

所以看来你错过了一个+(大概你的意思是 120)

答案2

您可以使用 corn 作业来关机。您可以按如下方式指定要关机的时间和分钟数。

须藤 /etc/crontab:

30 21 * * * root shutdown -h now

以上条目将在 21:30 运行关机命令。

计划任务格式:

MM HH DD OO WW 命令 MM:分钟,0-59 HH:24 小时制 DD:月份中的某一天 OO:月份 WW:星期几(星期日为 0,星期一为 1) 命令:不言自明

相关内容