Linux自动同步时间

别等时光非礼了梦想. 提交于 2019-11-27 23:46:28

一、安装时间同步工具

yum -y install ntp

二、同步时间

1、修改时区

cp -y /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
vim  /etc/sysconfig/clock

ZONE="Asia/Shanghai"
UTC=false
ARC=false

2、同步时间

/usr/sbin/ntpdate -u cn.pool.ntp.org

3、写入硬件时间

hwclock -r
hwclock -w

4、自动时间同步

vim /etc/rc.d/rc.local

00 10 * * * root /usr/sbin/ntpdate -u cn.pool.ntp.org > /dev/null 2>&1; /sbin/hwclock -w 

  

crontab -e

00 10 * * * /usr/sbin/ntpdate -u cn.pool.ntp.org > /dev/null 2>&1; /sbin/hwclock -w

  

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!