1、停止 systemd-timesyncd
服务:
sudo systemctl stop systemd-timesyncd
2、禁用它,防止它在启动时自动运行:
sudo systemctl disable systemd-timesyncd
3、手动设置时间:
sudo date --set="2023-11-17 20:15:00"
4、检查时间是否正确设置:
date
5、如果将来您希望树莓派保持准确的时间,请记得重新启用时间同步:
sudo systemctl enable systemd-timesyncd
sudo systemctl start systemd-timesyncd