Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 355 Bytes

File metadata and controls

14 lines (10 loc) · 355 Bytes

Change Time Zone

List of tz database time zones

예: Time zone을 Asia/Seoul로 변경

export DEBIAN_FRONTEND=noninteractive
export TZ="Asia/Seoul"

apt update && apt install -y tzdata
ln -fs /usr/share/zoneinfo/$TZ /etc/localtime
dpkg-reconfigure -f noninterative tzdata