- TZ=Asia/Taipei date
上面的TZ是time zone的意思,後面接的是地區。地區列表則是參考 /usr/share/zoneinfo 下面的資料夾與檔案。若是要永久將時區改成台灣地區,那麼使用下面的指令:
- cd /etc && ln -s ../usr/share/zoneinfo/Asia/Taipei localtime
若沒有管理者權限,那就修改個人的環境變數。以Bash為例,修改~/.bashrc
- export TZ=Asia/Taipei
這樣登入以後直接打date就會顯示台灣時區
參考資料
- Set Time, Date Timezone in Linux from Command Line or Gnome | Use ntp
- How can I have `date` output the time from a different timezone?
- 維基百科的《時區列表》:所有使用的時區。注意CST其實有代表多個地區
- 中原標準時間,Chungyuan Standard Time
- 北京時間,China Standard Time
- 澳洲中部時間,Central Standard Time (Australia)
- 北美中部時區,Central Standard Time (North America)
- 古巴標準時間,Cuba Standard Time,參見北美東部時區
export TZ="UTC-08:00"
回覆刪除