Linux Ubuntu Timezone Change
Linux Ubuntu Timezone Change
- 현재 일시 확인
date
- /usr/share/zoneinfo/ 에서 원하는 국가 확인
cd /usr/share/zoneinfo/ ls
- 원하는 국가 설정
예시
sudo ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
sudo ln -sf /usr/share/zoneinfo/Turkey /etc/localtime
- localtime 에 있다고 나오면
이런 식으로 ln: ‘/usr/share/zoneinfo/America/Argentina/Buenos_Aires’ and ‘/etc/localtime/Buenos_Aires’ are the same file
timedatectl list-timezones | grep Buenos_Aires
이렇게 확인 하고
sudo timedatectl set-timezone America/Argentina/Buenos_Aires
Comments