centos6同步时间
1 2 3 4 5 6 7 | yum install -y ntpdate # 把当前时区调整为上海,也就是北京时间+8区 yes | cp -f /usr/share/zoneinfo/Asia/Shanghai /etc/localtime # 同步时间 ntpdate cn.pool.ntp.org |
定期同步时间
1 2 3 | # crontab -l >/tmp/crontab.bak # echo "*/10 * * * * /usr/sbin/ntpdate cn.pool.ntp.org | logger -t NTP" >> /tmp/crontab.bak # crontab /tmp/crontab.bak |