linux定时关机的脚本,Linux 定时关机与重启

Linux 定时关机与重启

修改 #vi /etc/crontab

SHELL=/bin/bash

PATH=/sbin:/bin:/usr/sbin:/usr/bin

MAILTO=root

HOME=/

# run-parts

30 1 * * * root init 6 //凌晨1点30分重启init 0 关机

01 * * * * root run-parts /etc/cron.hourly

02 4 * * * root run-parts /etc/cron.daily

22 4 * * 0 root run-parts /etc/cron.weekly

42 4 1 * * root run-parts /etc/cron.monthly

重启crond任务

/sbin/service crond start //启动服务

/sbin/service crond stop //关闭服务

/sbin/service crond restart //重启服务

/sbin/service crond reload //重新载入配置0b1331709591d260c1c78e86d0c51c18.png

你可能感兴趣的:(linux定时关机的脚本)