Linux自动同步时间
程序员文章站
2022-10-27 17:37:45
一、安装时间同步工具 二、同步时间 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
上一篇: 月经期吃什么好排污血这个3个东西要多吃
下一篇: 海蜇是水母吗,鲜海蜇如何做菜
推荐阅读
-
Python语言编写电脑时间自动同步小工具
-
linux 可执行文件与写操作的同步问题(文件读写操作产生的锁机制)
-
Linux下自动化部署ASP.NET CORE 3.1(Docker+Jenkins+Nginx)
-
linux下自动备份MySQL数据并上传到FTP上的shell脚本
-
linux下实现ftp自动备份shell脚本
-
linux 服务器自动备份脚本的方法(mysql、附件备份)
-
Linux VPS vsftp/proftpd FTP时间差八小时的解决方法
-
linux格式化新硬盘并挂载并设置开机自动挂载
-
Linux date 时间设置同步命令分享
-
详解Linux下自动化部署工具Puppet 的注册方式与常用命令