linux 时间同步

centos7

1.虚拟机系统时间查看 date

自定义修改时间 date -s “日期 时间”

2.虚拟机时间矫正

yum install -y ntpdate
ntpdate ntp1.aliyun.com

3.crontab 写定时任务实时同步阿里云时间

crontab -e

*/5 * * * * /usr/sbin/ntpdate ntp1.aliyun.com
做到每五秒同步一次阿里云时间

1)crontab使用方法

一个命令crontab

01.查看定时任务编写信息:crontab -l
02.编写定时任务信息:crontab -e(带有语法检查功能)==vi /va/spool/cron/root(没有语法检查功能)推荐crontab -e

两个文件

/var/log/cron 定时任务日志文件
/var/spool/cron/用户名称 定时任务配置文件

定时任务操作信息

** * * * 五个*对应分(0-59)时(0-23)日(1-31)月(1-12)周(0(周日)-6)
00 */2 * * * 每隔两小时执行一次
00 08-10 * * * 连续时间执行定时任务
00 08,11,13 * * * 不连续的时间段执定时任务

ps:日和周的信息不能同时设置

4.hwclock 查看系统bios时间, 查看硬件时钟用命令

hwclock --show 查看硬件时钟
hwclock -w 系统时间写入硬件时钟
hwclock --hctosys 硬件时钟与系统时间同步

你可能感兴趣的:(linux 时间同步)