Linux设置和修改时间与时区
修改时间:
一、Linux设置系统时间
1、将系统日期设置为2017年11月3日 [root@linux-node ~]# date -s 11/03/17 2、将系统时间设置为14点20分50秒 [root@linux-node ~]# date -s 14:20:50 3、系统时间自动系统同步 ntpdate time.windows.com #清华大学时间:ntp.tuna.tsinghua.edu.cn 4、定时同步系统时间 # 每天的5点10分crontab运行一次命令,自动同步系统时间,并且同步到硬件时间 crontab -e 10 5 * * * root (/usr/sbin/ntpdate time.windows.com && /sbin/hwclock -w) &> /var/log/ntpdate.log
二、linux设置硬件时间
1、查看系统硬件时钟 [root@linux-node ~]# hwclock --show
三、同步系统时间到硬件时间
1、将系统时间设置为准,硬件时间修改为系统时间
hwclock -w
修改时区:
一、Centos7 通过命令修改时区
timedatectl set-timezone Asia/Shanghai