Linux 环境自动同步网络时间(按流程操作,一遍成功)
在Linux环境下,可以使用ntpdate
命令或timedatectl
命令来自动同步网络时间。以下是两种方法的示例:
方法1:使用ntpdate
安装
ntpdate
工具(如果尚未安装):sudo apt-get update sudo apt-get install ntpdate
同步时间:
sudo ntpdate pool.ntp.org
方法2:使用timedatectl
(适用于使用systemd的系统)
使
timedatectl
可用:timedatectl set-ntp true
如果需要,可以立即手动同步时间:
sudo timedatectl set-timezone <Your_Timezone> sudo timedatectl set-ntp true
替换
<Your_Timezone>
为你的时区,例如Europe/Berlin
。
以上两种方法任选其一即可实现自动网络时间同步。
评论已关闭