OS/Linux

[Linux] Linux timezone 설정 명령어

Background

  • 다른 실습 중 conf 파일을 파일명+date.bak으로 백업해서 진행중이다.
  • Linux 배포판 초기에는 UST/PST 등의 기준으로 설정되어있다.



Common Ubuntu and CentOS

  • Ubuntu version >= 16.04
  • CentOS >= 7
$ date
Mon Jan 11 09:17:45 KST 2021

Version 1. tzdata를 ln으로 링크

  • /usr/share/zoneinfo 파일에서 나라별 timezone을 확인할 수 있다.

  • /usr/share/zoneinfo 경로의 파일과 링크
$ ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime

Version 2. timezonectl 이용

$ timedatectl set-timezone 'Asia/Seoul'
  • timezone 전체 목록 출력
$ timedatectl list-timezones
Africa/Abidjan
Africa/Accra
Africa/Algiers
Africa/Bissau
Africa/Cairo
Africa/Casablanca
... (생략)

'OS > Linux' 카테고리의 다른 글

[vagrant]생성 후 Permission denied(public key)나오는 오류  (0) 2021.04.12
[Linux] UTS namespace 맛보기  (1) 2021.04.01
[Linux] SSH timeout Configuration  (0) 2021.01.12