Linux

[linux] 리눅스 시간 변경하기

thxxyj 2022. 10. 1. 22:32
728x90

 

root@server1:~# date

Fri May 27 05:52:24 UTC 2022

root@server1:~# ll /etc/localtime

lrwxrwxrwx 1 root root 27 Apr 22 06:55 /etc/localtime -> /usr/share/zoneinfo/Etc/UTC

 

## /usr/share/zoneinfo/Asia/Seoul로 링크걸기

root@server1:~# sudo ln -sf /usr/share/zoneinfo/Asia/Seoul  /etc/localtime

root@server1:~# ll /etc/localtime

lrwxrwxrwx 1 root root 30 May 27 14:59 /etc/localtime -> /usr/share/zoneinfo/Asia/Seoul

 

## KST 변경되었음!

root@server1:~# date

Fri May 27 14:59:11 KST 2022 

728x90