728x90
300x250

[GNU(리눅스)] - Ubuntu 22.04 한국 시간으로 변경 및 시간 동기화 설정

 

그림 1. 리눅스의 미국 시간과 한국 시간(2023-05-06)
그림 2. 미국 시간에서 한국 시간(서울)으로 변경

* 타임존 변경하기
# date (현재 시간 확인) 
(변경방법 1) # sudo ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
(변경방법 2) # sudo timedatectl set-timezone 'Asia/Seoul'
(변경방법 3) # tzselect > 4 > 23
(변경방법 4) # echo "TZ='Asia/Seoul'; export TZ" >> .profile
                        # source ~/.profile

 

* NTP 설치 및 동기화

그림 3. 우분투의 ntp 설치하기

# sudo apt-get install ntp
# sudo vi /etc/ntp.conf

그림 4. vi /etc/ntp.conf 파일 - 수정한 모습

    pool 앞에 # 주석처리
    # pool 0.ubuntu.pool.ntp.org iburst
    # pool 1.ubuntu.pool.ntp.org iburst
    # pool 2.ubuntu.pool.ntp.org iburst
    # pool 3.ubuntu.pool.ntp.org iburst
    # pool ntp.ubuntu.com


   적당한 위치에 시간 동기화 할 주소 입력
    server time.bora.net

 

# sudo service ntp restart
$ ntpq -p

그림 5. sudo, ntpq -p 명령어 사용한 모습


remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
*time.bora.net  203.248.240.140   3 u   24   64  277   79.712   28.943  19.419
시간이 좀 지나서 서버주소 앞에 (*) 나타나면 정상

 

[참고 자료]

1. ubuntu 한국시간으로 변경 및 시간 동기화 설정, https://infrabank.kr/oneminutes/?mod=document&uid=30, 인뱅매니저, 2021-03-24 08:39

반응형

+ Recent posts