如果支持crontab 可直接 crontab -l 查看目前已有的定时任务
如果当前的linux不支持crontab 则需要进行配置:
#安装Crontab
yum install vixie-cron crontabs
#设置开机启动Crontab
chkconfig crond on
#启动Crontab
service crond start
1.先列一下现有的Crontab看看:
crontab -l
提示为 no crontab for root
2.添加一条编辑命令:
crontab –e
3.按 i 进入编辑模式,输入
30 15 * * * /sbin/reboot
4.表示 每天下午15:30分重启设备。按ESC 进入命令模式,输入:wq 保存退出。
5.最后重启crontab,使重启功能生效
service crond restart