Linux 系统时间同步

发布时间 2023-11-17 14:56:24作者: demoduan

NTP

ntpdate cn.pool.ntp.org

crontab -e

* * * * * /usr/sbin/ntpdate cn.pool.ntp.org

systemctl restart crond

 

HTTP

date -s "$(curl -sD - google.com | grep '^Date:' | cut -d' ' -f3-6)Z"      (境外)

date -s "$(curl -sD - baidu.com | grep '^Date:' | cut -d' ' -f3-6)Z"        (境内)

hwclock -w