1. 程式人生 > >CentOS 7 時鐘和時區

CentOS 7 時鐘和時區

time har 一個 emctl true clas sys light alt

在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

CentOS 7 時鐘和時區