linux 时区及其时钟同步
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 时区及其时钟同步相关的知识,希望对你有一定的参考价值。
# 调整系统时区
cp /usr/share/zoneinfo/Asia/Chongqing /etc/localtime
# 手动更新
ntpdate ntp.sjtu.edu.cn 202.120.2.101
# 系统每次启动进行更新
echo "ntpdate ntp.sjtu.edu.cn 202.120.2.101" >> /etc/rc.local
# 定时更新
*/1 * * * * ntpdate ntp.sjtu.edu.cn 202.120.2.101 >/dev/null 2>&1
以上是关于linux 时区及其时钟同步的主要内容,如果未能解决你的问题,请参考以下文章