我需要做一些涉及将时钟设置为未来的测试,并且我不知道如何使用 timedatectl 或其他任何方式禁用 ntp 同步,以便我可以更改时钟而不让它同步到实时。
这是 ubuntu 16.04
答案1
只需停止并禁用systemd-timesyncd
(默认安装)和ntp
(如果您已安装)。在将系统移至未来之前最好进行备份,因为当您将其带回过去时可能会发生有趣的事情。
sudo systemctl stop systemd-timesyncd && sudo systemctl disable systemd-timesyncd
sudo systemctl stop ntp && sudo systemctl disable ntp
如果系统是虚拟机,您还必须确保它未设置为与主机同步其时间。