zoukankan      html  css  js  c++  java
  • 解决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
  • 相关阅读:
    jdk8 xp
    electron react
    electron install失败
    0511 Braft Editor和嵌套路由
    组播
    0427
    duilib自定义组件
    android 读写文件、列出根目录文件及新版本权限
    android Fragment使用RecyclerView
    Duilib 带xml的1
  • 原文地址:https://www.cnblogs.com/kazihuo/p/8059508.html
Copyright © 2011-2022 走看看