以前一直使用 ntp
, ntpdate
和 ntpsec-ntpdate
来同步系统时间,虽然功能很强大但是我只想同步时间而已,并不需要其他的附加功能。
systemd-timesyncd
就是这样简单的时间同步服务。
安装:
sudo apt install systemd-timesyncd
配置 NTP 服务器:
sudo vi /etc/systemd/timesyncd.conf
设置首选和备选 NTP 服务器,可以是域名也可以是 IP 地址,多个服务器之间使用空格间隔:
[Time]
NTP=ntp.tencent.com ntp.aliyun.com
FallbackNTP=time.apple.com time.windows.com
设置完成以后重启服务:
systemctl restart systemd-timesyncd