1.建立crontab的脚本
$ vi /etc/cron.daily/ntpupdatedaily
添加如下行:
#!/bin/bash
ntpdate stdtime.gov.hk
2.添加到crontab任务
$ crontab -e
在最后添加(表示每天晚上20:00以root身份运行/etc/cron.daily/ntpupdatedaily):
00 20 * * * root /etc/cron.daily/ntpupdatedaily
使用ntpdate校正Linux系统的时间:http://www.linuxdiyf.com/linux/4494.html
为什么在crontab中使用ntpdate同步时间无效?:http://www.linuxdiyf.com/linux/2572.html