Linux(Ubuntu)同步互联网时间(ntpdate)
用 ntpdate从(互联网)时间服务器同步系统时间
·
《用 ntpdate从(互联网)时间服务器同步系统时间》
1.安装ntpdate(时间服务客户端)
如果系统没有 ntpdate 命令,可在线安装:
sudo apt-get install ntpdate
安装完了之后,配置环境变量:
export PATH=$PATH:/sbin:/usr/sbin
注意:这是临时变量,永久变量设置建议用如下两种方式之一进行:
(1)在~/.profile中添加PATH=$PATH:/sbin:/usr/sbin
;
(2)通过conda设置虚拟环境的环境变量:conda env config vars set PATH=$PATH:/sbin:/usr/sbin
;
2.同步时间
查看系统当前时间
date
(1)方式一:手动同步时间
ntpdate time.nist.gov
执行结果:
20 May 22:42:38 ntpdate[26759]: step time server 131.107.13.100 offset
2.117558 sec
通过命令date
再次查询系统时间,结果为:
2015年 05月 20日 星期三 22:43:17 CST
上面的情况表示跟网络时间同步成功。
(2)方式二:定时触发同步任务
用crontab -e
命令进入crontab的编辑状态,追加如下定时任务文本:
*/10 * * * * ntpdate time.nist.gov #域名或IP
上述命令表示,每隔十分钟同步一次。这里,推荐几个时间服务器:
ntp.ntsc.ac.cn # 国家授时中心
cn.ntp.org.cn # 中国授时
time.nist.gov
time.nuri.net
0.asia.pool.ntp.org
1.asia.pool.ntp.org
2.asia.pool.ntp.org
3.asia.pool.ntp.org
更多推荐
已为社区贡献1条内容
所有评论(0)