newermt
是一个用于查询 NTP 服务器时间的命令行工具,但它本身并不提供与 NTP 服务器同步的功能
sudo apt-get update
sudo apt-get install ntp
在 CentOS 或 RHEL 系统上,可以使用以下命令安装:
sudo yum install ntp
sudo systemctl start ntp
sudo systemctl enable ntp
在 CentOS 或 RHEL 系统上,可以使用以下命令:
sudo systemctl start ntpd
sudo systemctl enable ntpd
newermt
查询 NTP 服务器时间。例如,要查询 pool.ntp.org
的时间,可以运行:newermt pool.ntp.org
这将显示当前时间与 NTP 服务器的时间差以及同步状态。
cron
定时任务来实现。首先,打开当前用户的 crontab
配置文件:crontab -e
然后,添加一行以每分钟查询一次 NTP 服务器时间:
* * * * * newermt pool.ntp.org > /dev/null 2>&1
保存并退出编辑器。现在,你的系统将每分钟与 NTP 服务器同步一次时间。
请注意,这些步骤适用于大多数 Linux 发行版。根据你的具体发行版和环境,可能需要进行一些调整。