红联Linux门户
Linux帮助

Ubuntu自动更新系统时间

发布时间:2016-08-26 16:56:56来源:linux网站作者:bloong
一、安装ntpdate
apt-get install ntpdate
 
二、选择其中一个服务器更新系统时间
$ sudo ntpdate ntp.ubuntu.com
$ sudo ntpdate pool.ntp.org
$ sudo ntpdate de.pool.ntp.org
$ sudo ntpdate us.pool.ntp.org
 
三、设定自动更新周期
设定crontab计划任务
写在/etc/crontab里
10 5    * * *   root    ntpdate -dv ntp.ubuntu.com ; hwclock -w
Ubuntu自动更新系统时间
 
本文永久更新地址:http://www.linuxdiyf.com/linux/23645.html