linux系统修改时区、日期和时间

查看时间

[root@localhost ~]# date -R

 

先查看时区是否正确:

cat /etc/sysconfig/clock

ZONE="America/New_York"

时区为纽约,错误,修改方法如下

 

[root@localhost ~]# tzselect

然后选择Asiachinashanghai

 

[root@localhost ~]# cat /etc/sysconfig/clock

ZONE="Asia/Shanghai"
UTC=true
ARC=false

 

查看时区是否修改成功

 

删除旧的时区配置:

[root@localhost ~]# rm /etc/localtime

 

软链新的时区配置:

[root@localhost ~]# ln -s /usr/share/zoneinfo/Asia/Shanghai  /etc/localtime

 

更改日期和时间:

[root@localhost ~]# date -s 05/10/17

[root@localhost ~]# date -s 14:12:30

 

 

CST:中国标准时间(China Standard Time),这个解释可能是针对RedHat Linux

UTC:协调世界时间,又称世界标准时间,简称UTC,从英文国际时间/法文协调时间”

你可能感兴趣的:(centos)