标签:
1 yum install -y ntpdate
然后执行NTP命令:
1 ntpdate time.windows.com
或者:
1 ntpdate cn.pool.ntp.org
想要偷懒,让机器自动校准时间的话,只需要将命令加入到cron就可以了。
1 crontab -e 2 * */1 * * * /sbin/ntpdate cn.pool.ntp.org #每隔一个小时同步一次
保存退出即可。
1 rdate -t 60 -s stdtime.gov.hk
使用rdate将stdtime.gov.hk服务器的时间抓取回来,然后写入硬件
1 hwclock -w
标签:
原文地址:http://www.cnblogs.com/iLumia/p/4231663.html