From 8ce445463c7d5f20963e038ac26b5f3399f7ac65 Mon Sep 17 00:00:00 2001 From: "rick.chan" Date: Fri, 24 Jul 2020 11:58:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20=E8=AE=BE=E7=BD=AE?= =?UTF-8?q?=E6=97=B6=E5=8C=BA;=20=E5=A2=9E=E5=8A=A0=20=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E5=99=A8=E5=88=97=E8=A1=A8;=20=E5=A2=9E=E5=8A=A0=20=E8=AE=BE?= =?UTF-8?q?=E7=BD=AE=E6=AF=8F=E6=97=A5=E8=87=AA=E5=8A=A8=E6=9B=B4=E6=96=B0?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: rick.chan --- Software/Applications/NTP/NTP_同步网络时间.md | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/Software/Applications/NTP/NTP_同步网络时间.md b/Software/Applications/NTP/NTP_同步网络时间.md index 07fa63a..2c22f7d 100644 --- a/Software/Applications/NTP/NTP_同步网络时间.md +++ b/Software/Applications/NTP/NTP_同步网络时间.md @@ -19,3 +19,38 @@ ntpdate 0.cn.pool.ntp.org # 将系统时钟写到硬件中 hwclock -w ``` + +## 设置时区 + +将时区设置为东8区的时间,虽然服务器在全球的不同地方,但是我们人在中国,看着中国的时间比较有感觉。 + +```bash +cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime +2017年12月11日 星期一 12时28分26秒 CST +``` + +## 服务器列表 + +一级服务器列表: + +二级服务器列表: + +清华大学:ntp.tuna.tsinghua.edu.cn + +微软:time.windows.com + +## 设置每日自动更新 + +Alternatively, enable ntpdate.service to synchronize time once (option -q) and non-forking (option -n) per boot. + +```bash +systemctl enable ntpdate.service +systemctl start ntpdate.service +``` + +如果需要同步时间到 hardware clock,则需要在 start ntpdate.service 之前创建并编辑 /etc/systemd/system/ntpdate.service.d/hwclock.conf,内容如下: + +```bash +[Service] +ExecStart=/usr/bin/hwclock -w +```