如何让 ubuntu 服务器在几小时后自动关闭

如何让 ubuntu 服务器在几小时后自动关闭

我想让我的服务器自动开启和关闭。我每天早上 8:00 通过 BIOS 选项开启服务器。我怎样才能让系统每天晚上 11:59 自动关闭?

答案1

添加 root cronjob:

sudo crontab -e

添加:

# For more information see the manual pages of crontab(5) and cron(8)
# 
# m h  dom mon dow   command
59 23 * * * /sbin/shutdown -h now

相关内容