记录一下如何配置archlinux上的时间同步。
用到三个网站:systemd-timesyncd (简体中文)、Asia — asia.pool.ntp.org和Time.is。
首先根据systemd-timesyncd,
1
systemctl enable systemd-timesyncd.service
然后修改/etc/systemd/timesyncd.conf,找到#NTP=,去掉注释并添加Asia — asia.pool.ntp.org里的NTP服务器:
1
2
3
/etc/systemd/timesyncd.conf
NTP=0.asia.pool.ntp.org 1.asia.pool.ntp.org 2.asia.pool.ntp.org 3.asia.pool.ntp.org
最后用root权限完成启动和同步:
1
2
sudo systemctl start systemd-timesyncd
sudo timedatectl set-ntp true
查看同步结果:
1
timedatectl status
同步之后可以在Time.is上面对表。