标签:ntp class inf emc chrony 硬件时钟 cti 程序 zed
在CentOS 7中引入了一个timedatectl 时间管理程序
$timedatectl
Local time: Fri 2017-07-21 11:25:06 CST Universal time: Fri 2017-07-21 03:25:06 UTC RTC time: Fri 2017-07-21 03:25:06 Time zone: Asia/Shanghai (CST, +0800) NTP enabled: yes NTP synchronized: yes RTC in local TZ: no DST active: n/a
$timedatectl set-local-rtc 0 # 将硬件时钟调整为与本地时钟一致, 0 为设置为 UTC 时间
$timedatectl set-timezone Asia/Shanghai # 设置系统时区为上海
$timedatectl list-timezones #列出所有时区
直接修改时区方法
$cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
CentOS 7 使用chrony管理时间
$systemctl start chronyd.service #启动chrony服务
$systemctl restart chronyd.service #重启chrony服务
$systemctl enable chronyd.service
$systemctl disable chronyd.service
标签:ntp class inf emc chrony 硬件时钟 cti 程序 zed
原文地址:http://www.cnblogs.com/linsanity1/p/7217232.html