首页 > 系统 > Linux > 正文

Linux 定时关机与重启

2024-08-28 00:12:53
字体:
来源:转载
供稿:网友

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 //重新载入配置

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表