답변:
IST에서 GMT로 어떻게 바꾸는 지 아십니까?
UTC로 전환하려면 간단히 실행 sudo dpkg-reconfigure tzdata
하고 대륙 목록의 맨 아래로 스크롤하여 Etc
또는 None of the above
; 두 번째 목록에서을 선택하십시오 UTC
. UTC 대신 GMT를 선호하는 경우 해당 목록에서 UTC 바로 위에 있습니다. :)
Etc
입니다 None of the above
.
sudo apt install tzdata
는 필수입니다!
이전 Un * x 스타일 (SunOS, HPUX ...)에서는 다음을 수행 할 수 있습니다.
ln -fs /usr/share/zoneinfo/UTC /etc/localtime
/ usr / share / zoneinfo의 내용을 확인하여 원하는 시간대를 얻으십시오.
예를 들어 IST (Irish Summer Time)는 다음과 같이 정의 할 수 있습니다.
-rw-r--r-- 1 root root 3661 Mar 13 22:18 /usr/share/zoneinfo/posix/Eire
또는
lrwxrwxrwx 1 root root 13 Mar 13 22:18 /usr/share/zoneinfo/Europe/Dublin -> ../posix/Eire
그러나 가장 중요한 것은 timezone이 시간을 문자열로 표시 / 변환하는 데에만 사용되며 시간대를 저장하지 않고 (시간대에 관계없이 01/01과의 차이) 적절한 시계 참조 및 ntp 데몬 (예 : openntpd)을 사용하는 것입니다 / 1970은 지구상 어디에서나 동일합니다).
sudo rm /etc/localtime
, (난 이미 다음 명령으로 심볼릭 링크를 만들 수 없습니다이 파일을 가지고, 그래서 내가 먼저 삭제) sudo ln -s /usr/share/zoneinfo/Asia/Kolkata /etc/localtime
. 이것이 일반적인 해결책 인 것 같습니다.
14.04로 업데이트
시간 및 날짜 상태보기 :
$ timedatectl status
Local time: Sun 2018-07-29 15:26:03 BST
Universal time: Sun 2018-07-29 14:26:03 UTC
RTC time: Sun 2018-07-29 14:26:03
Time zone: Europe/London (BST, +0100)
System clock synchronized: yes
systemd-timesyncd.service active: yes
RTC in local TZ: no
시간대 목록보기 : 시간대 목록
(425)
$ timedatectl list-timezones
Africa/Abidjan
Africa/Accra
Africa/Addis_Ababa
...
Pacific/Tongatapu
Pacific/Wake
Pacific/Wallis
UTC
시간대를 UTC로 설정하십시오.
$ timedatectl set-timezone UTC
시간 및 날짜 상태보기 :
$ timedatectl status
Local time: Sun 2018-07-29 14:46:27 UTC
Universal time: Sun 2018-07-29 14:46:27 UTC
RTC time: Sun 2018-07-29 14:46:27
Time zone: UTC (UTC, +0000)
System clock synchronized: yes
systemd-timesyncd.service active: yes
RTC in local TZ: no*
sudo timedatectl set-timezone Asia/Dhaka
고마워 , 고마워.