如何让linux每天晚上21点自动关机?

来源:百度知道 编辑:UC知道 时间:2024/06/08 05:24:04
如何让linux每天晚上21点自动关机?

要写个bash脚本,还要加到自启动里。不过我不会……呵呵……

shutdown -h now
加入/etc/crontab
0 21 * * * shutdown -h now 应该是这样 楼主自己试验下 思路是正确的

http://jndsss.appspot.com/2009/02/28/crontab-howto.html
关于unix系统计划任务的使用方法

crontab -e
输入下面的
0 21 * * * /sbin/shutdown -h now

要root用户