页首自改代码

Hey, Nice to meet You.  why ?

☆☆☆所谓豪杰之士,必有过人之节.人情有所不能忍者,匹夫见辱,拔剑而起,挺身而斗,此不足为勇也,天下有大勇者,猝然临之而不惊,无故加之而不怒.此其所挟持者甚大,而其志甚远也.          
返回顶部

解决Centos7本机时间与实际时间相差8小时

GPS系统中有两种时间区分,UTC就0时区的时间,CTS为本地时间,如北京为早上八点(东八区),UTC时间比北京时晚八小时;

CTS:China Standard Time,UTC+8:00 中国沿海时间(北京时间) 

UTC:Universal Time Coordinated 世界协调时间

# timedatectl

Local time: 五 2017-12-15 21:42:38 UTC
Universal time: 五 2017-12-15 13:42:38 UTC
RTC time: 一 2017-12-18 20:23:57
Time zone: Asia/Shanghai (CST, +0800)
NTP enabled: n/a
NTP synchronized: no
RTC in local TZ: no
DST active: n/a

# rm -rf /etc/localtime

当需要配置UTC时间,做以下链接:

# ln -sv /usr/share/zoneinfo/Universal /etc/localtime

当需要配置CTS时间,做以下链接:

# ln -sv /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

# timedatectl

Local time: 五 2017-12-15 13:45:01 CTS
Universal time: 五 2017-12-15 13:45:01 UTC
RTC time: 一 2017-12-18 20:26:21
Time zone: Universal (UTC, +0000)
NTP enabled: n/a
NTP synchronized: no
RTC in local TZ: no
DST active: n/a

posted on 2017-12-18 20:39  罗穆瑞  阅读(4651)  评论(0)    收藏  举报

导航