> CentOS > CentOS运维 >

centos7 查看、修改系统时间、时区

1、查看当前系统时间
 
[root@it.net.cn ~]# date
Thu Dec 27 15:46:19 CST 2018

 
2、查看当前时区
 
[root@it.net.cn ~]# timedatectl status
      Local time: Thu 2018-12-27 15:49:12 CST
  Universal time: Thu 2018-12-27 07:49:12 UTC
        RTC time: Thu 2018-12-27 07:49:10
       Time zone: Asia/Shanghai (CST, +0800)
     NTP enabled: no
NTP synchronized: no
 RTC in local TZ: no
      DST active: n/a


 
3、修改时间
 
[root@it.net.cn ~]# date -s "2018-2-22 19:10:30"
Thu Feb 22 19:10:30 CST 2018
[root@it.net.cn ~]# date
Thu Feb 22 19:10:33 CST 2018


 
4、修改时区(立即生效)
 
[root@it.net.cn ~]# timedatectl set-timezone Asia/Shanghai


 
5、查看硬件时间
 
[root@it.net.cn ~]# hwclock --show
Thu 27 Dec 2018 04:14:21 PM CST  -0.490938 seconds


 
6、同步系统时间和硬件时间(系统时间为标准,重启init6/reboot生效)
 
[root@it.net.cn ~]# hwclock --hctosys

 
7、本地时间写入硬件时间(立即生效)
 
[root@it.net.cn ~]# timedatectl set-local-rtc 1
 


 


(责任编辑:IT)