From d0341b8d2810b3c7b75f7feedd1c19a0c7cac9de Mon Sep 17 00:00:00 2001 From: "rick.chan" Date: Fri, 24 Jul 2020 09:42:57 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20NTP=20=E5=90=8C=E6=AD=A5?= =?UTF-8?q?=E7=BD=91=E7=BB=9C=E6=97=B6=E9=97=B4.?= 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 | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Software/Applications/NTP/NTP_同步网络时间.md diff --git a/Software/Applications/NTP/NTP_同步网络时间.md b/Software/Applications/NTP/NTP_同步网络时间.md new file mode 100644 index 0000000..07fa63a --- /dev/null +++ b/Software/Applications/NTP/NTP_同步网络时间.md @@ -0,0 +1,21 @@ +# NTP 同步网络时间 + +Linux 使用 NTP 协议进行网络时间同步。使用 ntpdate 命令可进行网络时间同步。 + +## 安装 + +首先需要安装 NTP 协议和相关工具。 + +```bash +# Manjaro +pacman -S ntp +``` + +## 同步网络时间 + +```bash +# 同步网络时间 +ntpdate 0.cn.pool.ntp.org +# 将系统时钟写到硬件中 +hwclock -w +```