1.安装ntpdate工具
sudo yum -y install ntp ntpdate
2.设置系统时间与网络时间同步
sudo ntpdate cn.pool.ntp.org
3.将系统时间写入硬件时间
sudo hwclock --systohc
4.查看系统时间
timedatectl
#得到
Local time: 日 2022-02-27 15:54:14 CST
Universal time: 日 2022-02-27 07:54:14 UTC
RTC time: 日 2022-02-27 07:54:14
Time zone: Asia/Shanghai (CST, +0800)
NTP enabled: yes
NTP synchronized: no
RTC in local TZ: no
DST active: n/a
如果没有执行步骤3,则Local time与RTC time显示的值可能不一样
3
3