[Linux] timezone을 KST시간으로 변경

제이브로·2024년 6월 5일
0

Linux

목록 보기
25/26
post-thumbnail

1. 현재 시간 확인

$ date
  • Wed Oct 21 05:03:15 UTC 2020

2. 현재 타임존 확인

$ ls -al /etc/localtime
  • /usr/share/zoneinfo/Etc/UTC

3. 타임존을 한국 표준시(KST)로 변경

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

4. 변경된 타임존 확인

$ ls -al /etc/localtime
  • /usr/share/zoneinfo/Asia/Seoul

5. 시스템의 TimeZone 변경

$ echo 'Asia/Seoul' >/etc/timezone

6. References

  1. frody
  2. globaltek
profile
기록하지 않으면 기록되지 않는다.

0개의 댓글