Temp

[Ubuntu/Linux] Change timezone

ju_young 2022. 2. 8. 18:51
728x90

Linux에서 timezone을 "Asia/Seoul" 로 변경하기 위해서 다음과 같은 명령어를 입력하면 된다.

# 한국 timezone 확인
timedatectl list-timezones | grep Seoul

# timezone 설정
sudo timedatectl set-timezone Asia/Seoul

현재 설정된 timezone을 확인하기 위해서는 다음과 같은 명령어를 입력하면 된다.

# 현재 설정된 timezone 확인
timedatectl

 

[reference]

https://psychoria.tistory.com/750

728x90

'Temp' 카테고리의 다른 글

[Git] Pull Request 수정  (0) 2022.03.25
[Pytorch] How to use pytorch hooks?  (0) 2022.02.20
[Git] git clone with ssh key  (0) 2022.02.07
[Pillow] image file is truncated  (0) 2022.01.13
[Streamlit] @st.cache를 사용하여 Torchscript load하기  (0) 2021.12.17