在新版的ubuntu中,使用
timedatectl
替換了
ntpdate
來進行時間管理。
查看當前時間狀態timedatectl status
顯示如下
Local time: Wed 2018-11-21 01:23:33 UTC
Universal time: Wed 2018-11-21 01:23:33 UTC
RTC time: Wed 2018-11-21 01:23:33
Time zone: Etc/UTC (UTC, +0000)
System clock synchronized: yes
systemd-timesyncd.service active: yes
RTC in local TZ: no
系統顯示的時間是錯誤的,錯誤原因也是顯而易見的,使用的是Etc/UTC的時區。
因此只要修改時區就能保證時間的正確。
修改時區
所有的時區名稱存儲在/usr/share/zoneinfo文件中。
執行命令
timedatectl set-timezone "Asia/Shanghai"
就可以將時區設為上海時區。
重新查看當前時間狀態
timedatectl status
timedatectl status :timedatectl status :
Local time: Wed 2018-11-21 09:24:48 CST
Universal time: Wed 2018-11-21 01:24:48 UTC
RTC time: Wed 2018-11-21 01:24:48
Time zone: Asia/Shanghai (CST, +0800)
System clock synchronized: yes
systemd-timesyncd.service active: yes
RTC in local TZ: no
此時時間已經正常了。