在我的 Linux 发行版中启用了该服务systemd-timesyncd.service
。
下面显示的是/etc/systemd/timesyncd.conf
文件(见这个帖子查找以下命令):
[Time]
#NTP=
#FallbackNTP=time1.google.com time2.google.com time3.google.com time4.google.com
#RootDistanceMaxSec=5
PollIntervalMinSec=32
#PollIntervalMaxSec=2048
下面我展示的是命令序列我需要明白:
####### stop synchronization with NTP server
$ timedatectl set-ntp false
####### Set tha datetime in the past
$ timedatectl set-time "2022-09-29 00:00:00"
####### restart synchronization with NTP server
$ timedatectl set-ntp true
###### immediately execution of the following command
$ date
最后一个命令date
(命令之后立即执行timedatectl set-ntp true
)提供已与 NTP 服务器同步的日期和时间。
相反,我假设通过设置PollIntervalMinSec = 32
(参见timesyncd.conf
文件)至少在 32 秒后联系 NTP 服务器,但显然事实并非如此。
/etc/systemd/timesyncd.conf
有人可以帮我找到可以设置连接 NTP 服务器之前延迟的文件参数吗?
谢谢