요약


1. Common Configuration

1-1. Timezone Configuration.

정확한 시간을 유지합니다.

# Timezone Setting
sudo timedatectl set-timezone Asia/Seoul

# check (NTP service: active)
timedatectl

1-2. Locale Configuration.

언어 패키지를 설정합니다.


# 현재 locale 확인
locale

# 한글 패키지 다운
sudo apt-get install -y language-pack-ko

# 한글 추가
sudo locale-gen ko_KR.UTF-8

# 한글 적용
sudo update-locale LANG=ko_KR.UTF-8 LC_MESSAGE=POSIX

# 적용 확인
sudo reboot