리눅스의 시간표현
리눅스에서는 다양한 표준시간으로 날짜 시간을 출력해 줍니다.
UTC 는 Universal Time Coordinated 로 세계협정시를 의미합니다.
KST 는 Korean Standard Time 으로 한국 표준 시간을 의미합니다.
KST 는 UTC 시간에서 +9:00 시간 입니다.
예를들어 UTC 가 00시 00분이면 KST 는 09시 00분 입니다.
리눅스 시간변환 방법
1. 리눅스 서버에서 date 명령어를 수행하면 UTC 기준으로 출력됩니다.
1
2
|
[root@ ~]# date
Mon Mar 8 03:50:57 UTC 2021
|
cs |
2. UTC 로 출력되는 이유는 localtime 에 UTC 로 설정되어 있기 때문입니다.
1
2
3
|
[root@ ~]# cat /etc/localtime
TZif2UTCTZif2
UTC0
|
cs |
3. 리눅스에서는 다양한 표준시간을 지원하고 있습니다.
/usr/share/zoneinfo 경로에 보면 나라별로 시간이 설정되어 있습니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[root@ ~]# cd /usr/share/zoneinfo
[root@ zoneinfo]# ls -al
total 400
drwxr-xr-x 20 root root 4096 Jan 26 13:14 .
drwxr-xr-x 75 root root 4096 Jan 26 13:15 ..
drwxr-xr-x 2 root root 4096 Jan 26 13:14 Africa
drwxr-xr-x 6 root root 8192 Jan 26 13:14 America
drwxr-xr-x 2 root root 187 Jan 26 13:14 Antarctica
drwxr-xr-x 2 root root 26 Jan 26 13:14 Arctic
drwxr-xr-x 2 root root 4096 Jan 26 13:14 Asia
drwxr-xr-x 2 root root 196 Jan 26 13:14 Atlantic
drwxr-xr-x 2 root root 4096 Jan 26 13:14 Australia
drwxr-xr-x 2 root root 59 Jan 26 13:14 Brazil
drwxr-xr-x 2 root root 136 Jan 26 13:14 Canada
-rw-r--r-- 1 root root 2102 Dec 8 08:18 CET
drwxr-xr-x 2 root root 45 Jan 26 13:14 Chile
-rw-r--r-- 1 root root 2294 Dec 8 08:18 CST6CDT
-rw-r--r-- 2 root root 2437 Dec 8 08:18 Cuba
-rw-r--r-- 1 root root 1876 Dec 8 08:18 EET
-rw-r--r-- 2 root root 1972 Dec 8 08:18 Egypt
-rw-r--r-- 2 root root 3543 Dec 8 08:18 Eire
|
cs |
4. KST 에 맞는 시간을 localtime 파일로 링크합니다.
1
2
3
4
|
[root@ ~]# ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
[root@ ~]# date
Mon Mar 8 12:50:57 KST 2021
|
cs |
'Linux > 개념' 카테고리의 다른 글
[LINUX] crontab 기본 편집기 설정&변경하는 방법 (0) | 2021.03.09 |
---|---|
[LINUX] Ubuntu 'kr.archive.ubuntu.com'의 주소를 알아낼 수 없습니다 해결하기 (0) | 2020.12.19 |
[LINUX] Ubuntu /var/lib/dpkg/lock-frontend 잠금 파일을 얻을 수 없습니다 오류 해결하기 (0) | 2020.12.19 |
[LINUX] 리눅스 sudo 패스워드 없이 사용하는 방법 (feat. NOPASSWD) (0) | 2020.11.12 |
[LINUX] 리눅스 sudo 사용자 등록하는 방법 ( user is not in the sudoers file ) (0) | 2020.11.12 |