Ubuntu 16 , 从时间服务器更新时间

因为在公司的内网,所以不能用Ubuntu默认的服务器去更新时间。

只能改成从网关 10.182.202.2 上取时间

1) 如果没有安装ntp 的话,先安装

apt-get install ntp

2) 编辑 /etc/ntp.conf

server 10.182.208.2

3 )  执行下面的代码

sudo service ntp stop
sudo ntpd -gq
sudo service ntp start

参考:

https://askubuntu.com/questions/254826/how-to-force-a-clock-update-using-ntp

上一篇:json数据映射填充到html元素显示


下一篇:PHP 批量获取指定目录下的文件列表(递归,穿透所有子目录)