如何調整 Linux 系統時區
- Leo
- 技術宅 ( tech geek)
- 2024年10月4日
目錄
在 Debian/Ubuntu 上調整時區
檢查目前的時區設定
timedatectl
列出所有可用的時區
timedatectl list-timezones
設定時區
sudo timedatectl set-timezone Asia/Taipei
sudo dpkg-reconfigure --frontend noninteractive tzdata
在 Docker 容器中調整時區
export TZ=Asia/Taipei
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime
echo $TZ > /etc/timezone
DEBIAN_FRONTEND="noninteractive" apt-get install -y tzdata