增加 NTP 同步网络时间.
Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
parent
6f18adef31
commit
d0341b8d28
|
@ -0,0 +1,21 @@
|
|||
# NTP 同步网络时间
|
||||
|
||||
Linux 使用 NTP 协议进行网络时间同步。使用 ntpdate 命令可进行网络时间同步。
|
||||
|
||||
## 安装
|
||||
|
||||
首先需要安装 NTP 协议和相关工具。
|
||||
|
||||
```bash
|
||||
# Manjaro
|
||||
pacman -S ntp
|
||||
```
|
||||
|
||||
## 同步网络时间
|
||||
|
||||
```bash
|
||||
# 同步网络时间
|
||||
ntpdate 0.cn.pool.ntp.org
|
||||
# 将系统时钟写到硬件中
|
||||
hwclock -w
|
||||
```
|
Loading…
Reference in New Issue