增加 设置时区;

增加 服务器列表;
增加 设置每日自动更新.

Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
rick.chan 2020-07-24 11:58:43 +08:00
parent d0341b8d28
commit 8ce445463c
1 changed files with 35 additions and 0 deletions

View File

@ -19,3 +19,38 @@ ntpdate 0.cn.pool.ntp.org
# 将系统时钟写到硬件中 # 将系统时钟写到硬件中
hwclock -w hwclock -w
``` ```
## 设置时区
将时区设置为东8区的时间虽然服务器在全球的不同地方但是我们人在中国看着中国的时间比较有感觉。
```bash
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
2017年12月11日 星期一 12时28分26秒 CST
```
## 服务器列表
一级服务器列表:<http://support.ntp.org/bin/view/Servers/StratumOneTimeServers>
二级服务器列表:<http://support.ntp.org/bin/view/Servers/StratumTwoTimeServers>
清华大学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
```