美文网首页
Centos7 时间同步

Centos7 时间同步

作者: izhangxm | 来源:发表于2018-09-25 13:22 被阅读0次

    首先要能访问Google,否则下面的脚本执行会出问题,造成错误的时间校对
    以下操作需要在root账户下进行

    cd /etc/
    # 连接到正确的时区
    ln -sf ../usr/share/zoneinfo/Asia/Shanghai localtime
    cd
    date -s "$(wget -S  "http://www.google.com/" 2>&1 | grep -E '^[[:space:]]*[dD]ate:' | sed 's/^[[:space:]]*[dD]ate:[[:space:]]*//' | head -1l | awk '{print $1, $3, $2,  $5 ,"GMT", $4 }' | sed 's/,//')"
    hwclock -w
    timedatectl status
    

    相关文章

      网友评论

          本文标题:Centos7 时间同步

          本文链接:https://www.haomeiwen.com/subject/petloftx.html