红联Linux门户
Linux帮助

Linux使用ntpdate自动对时

发布时间:2015-08-26 21:41:00来源:linux网站作者:Leslie Guan

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