当前位置: 首页>>技术教程>>正文


什么是从互联网更新时间和日期的命令

,

问题描述

什么是从互联网更新时间和日期的命令。是否有任何应用程序允许我以图形方式执行此操作?

最佳解决思路

您可以使用sudo ntpdate time.nist.gov其他服务器包括time.windows.com等。

http://www.pool.ntp.org/在世界各地列出时间服务器。

次佳解决思路

这是一个很好的小代码,我发现它会在ntp出现问题时更新您的时间:

sudo date -s "$(wget -qSO- --max-redirect=0 google.com 2>&1 | grep Date: | cut -d' ' -f5-8)Z"

第三种解决思路

从命令行设置非常简单:https://help.ubuntu.com/lts/serverguide/NTP.html从该链接开始:

Ubuntu comes with ntpdate as standard, and will run it once at boot time to set up your time according to Ubuntu’s NTP server: ntpdate -s ntp.ubuntu.com

这里是GUI例子https://help.ubuntu.com/community/UbuntuTime#Time_Synchronization_using_NTP

第四种思路

在终端sudo dpkg-reconfigure tzdata应该做的伎俩

我想,通过点击时钟并通过其选项,您可以以图形方式添加额外的时区

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/825.html,未经允许,请勿转载。