시그마 삽질==six 시그마

리눅스 타임존 변경 본문

프로그래밍/Linux

리눅스 타임존 변경

Ethan Matthew Hunt 2020. 3. 14. 10:12
/usr/share/zoneinfo: This directory contains timezone files.
/etc/localtime: This file is symlink with timezone file.
/etc/timezone: This file is holding timezone name on debian based systems.
/etc/sysconfig/clock: This file is holding timezone name on RHEL based systems.

zoneinfo

 

- 타임존 확인

 

ls -al /etc/localtime 

 

ls -al /etc/localtime[ec2-user@ip-10-20-0-67 ~]$ ls -al /etc/localtime
lrwxrwxrwx 1 root root 30 Dec  1  2017 /etc/localtime -> /usr/share/zoneinfo/Asia/Seoul

 

현재 서울을 바라보고 있음.

 

-타임존 변경 (서울->UTC)

 

ln -sf /usr/share/zoneinfo/UTC /etc/localtime 

'프로그래밍 > Linux' 카테고리의 다른 글

RPM & YUM  (0) 2020.03.16
리눅스 디스크 용량 확인(df/ du)  (0) 2020.03.15
리눅스 폴더 찾기, 파일 찾기, 문자열 찾기  (0) 2020.03.14
리눅스 네트워크 설정 파일  (0) 2020.03.14
리눅스 SCP 사용법  (0) 2020.03.14
Comments