Ubuntu定时重启

使用root登陆,打开cron配置文件:

1
crontab -e

在文件末尾添加:

重启类型 代码
每天凌晨 2:30 重启 30 2 * * * /sbin/reboot
每3分钟重启一次 */3 * * * * /usr/sbin/reboot
每小时重启一次 0 * * * * /usr/sbin/reboot
每天重启一次 0 0 * * * /usr/sbin/reboot
每周重启一次 0 0 * * 0 /usr/sbin/reboot
每月重启一次 0 0 1 * * /usr/sbin/reboot
每年重启一次 0 0 1 1 * /usr/sbin/reboot

注意这里的时间格式是分钟 时 日 月 星期,依次对应上面的 30 2 *

重启服务:

1
service cron restart