成都 做网站爱网之家
1.安装/更新 cron
安装crontab
sudo apt-get install cron
 
更新命令
sudo apt-get update
 
2.配置cron定时任务
sudo nano /etc/crontab
 
* * * * * root reboot(从左到右,五个 * 依次是 分,时 ,天,月,星期)
 
下列命令表示每天0点重启设备
0 0 * * *   root   reboot
 

1.安装/更新 cron
安装crontab
sudo apt-get install cron
 
更新命令
sudo apt-get update
 
2.配置cron定时任务
sudo nano /etc/crontab
 
* * * * * root reboot(从左到右,五个 * 依次是 分,时 ,天,月,星期)
 
下列命令表示每天0点重启设备
0 0 * * *   root   reboot
 
