timezonectl 사용

한국으로 설정

timedatectl set-timezone 'Asia/Seoul'
CODE

GMT 로 설정

timedatectl set-timezone 'GMT'
CODE


전체 타임존 목록은 list-timezones 옵션 사용

timedatectl list-timezones
CODE


tzdata 를 ln 으로 링크

tzdata 설치

sudo apt install tzdata
CODE


symbolic link

한국

ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
CODE

GMT

ln -sf /usr/share/zoneinfo/GMT /etc/localtime
CODE

Windows 와 Ubuntu 듀얼 부팅시 시간 동기화

듀얼 부팅(dual boot) 으로 linux 와 windows 를 사용할 때 컴퓨터 시간 동기화하기 참고


Ref