Linux自动同步时间
程序员文章站
2022-05-28 14:28:15
一、安装时间同步工具 二、同步时间 1、修改时区 2、同步时间 3、写入硬件时间 4、自动时间同步 ......
一、安装时间同步工具
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
上一篇: OpenCV-Python 形状轮廓拟合
下一篇: 领导的慰问