Linux 系統(tǒng)(我特指發(fā)行版, 沒說內(nèi)核) 下大部分軟件的風格就是不會仔細去考慮向后 的兼容性, 比如你上個版本能用這種程序配置, 沒準到了下一個版本, 該程序已經(jīng)不見了. 比如 sysvinit 這種東西.
設(shè)置時區(qū)同樣, 在 CentOS 7 中, 引入了一個叫 timedatectl 的設(shè)置設(shè)置程序.
用法很簡單:
# timedatectl # 查看系統(tǒng)時間方面的各種狀態(tài)
Local time: 四 2014-12-25 10:52:10 CST
Universal time: 四 2014-12-25 02:52:10 UTC
RTC time: 四 2014-12-25 02:52:10
Timezone: Asia/Shanghai (CST, +0800)
NTP enabled: yes
NTP synchronized: yes
RTC in local TZ: no
DST active: n/a
|
# timedatectl list-timezones # 列出所有時區(qū)
|
# timedatectl set-local-rtc 1 # 將硬件時鐘調(diào)整為與本地時鐘一致, 0 為設(shè)置為 UTC 時間
|
# timedatectl set-timezone Asia/Shanghai # 設(shè)置系統(tǒng)時區(qū)為上海
|
其實不考慮各個發(fā)行版的差異化, 從更底層出發(fā)的話, 修改時間時區(qū)比想象中要簡單:
# cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
|