Wenn nichts festgelegt ist, sollte dies passieren, aber da ich Japaner bin und in Tokio lebe, ist die Zeit in Tokio gut.
$ date
Fri Jun 12 04:32:25 UTC 2020
--Umwelt: CentOS Linux Release 7.8.2003 (Core)
#Die Ortszeit ist mit UTC verknüpft
$ ls -la /etc/localtime
lrwxrwxrwx. 1 root root 25 Feb 29 12:11 /etc/localtime -> ../usr/share/zoneinfo/UTC
#Als ich für einen Moment nach Japan suchte, fand ich "Asien" und "Japan".
$ ls -la /usr/share/zoneinfo/ | grep -e Asia -e Japan
drwxr-xr-x. 2 root root 4096 Feb 29 12:06 Asia
-rw-r--r--. 2 root root 292 Sep 26 2019 Japan
# `Asia/Tokyo`Aber`Japan`Es scheint, dass es nicht mit verbunden ist
$ ls -la /usr/share/zoneinfo/Asia/ | grep Tokyo
-rw-r--r--. 2 root root 292 Sep 26 2019 Tokyo
Referenz: [Linux] Zeitzonenänderung --Qiita
#Überschreiben Sie die symbolische Verknüpfung in Tokio
$ ln -sf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime
$ ls -la /etc/localtime
lrwxrwxrwx. 1 root root 30 Jun 15 10:45 /etc/localtime -> /usr/share/zoneinfo/Asia/Tokyo
$ date
Mon Jun 15 10:45:55 JST 2020
Referenz: [[timedatectl] Befehl-Anzeige / Zeit einstellen: Linux-Basisbefehl Tipps (312) - @ IT](https://www.atmarkit.co.jp/ait/articles/1906/13/news007. html)
$ timedatectl
Local time: Tue 2020-06-30 06:20:07 UTC
Universal time: Tue 2020-06-30 06:20:07 UTC
RTC time: Tue 2020-06-30 06:20:07
Time zone: UTC (UTC, +0000)
...Kürzung...
#Wenn Sie nach etwas suchen, das wie Japan aussieht, "Asien"/Es gab "Tokio"
$ timedatectl list-timezones | grep -i -e japan -e tokyo
Asia/Tokyo
#Stellen Sie die Zeitzone auf "Asien" ein/Auf "Tokio" einstellen
$ sudo timedatectl set-timezone Asia/Tokyo
$ timedatectl
Local time: Tue 2020-06-30 15:21:18 JST
Universal time: Tue 2020-06-30 06:21:18 UTC
RTC time: Tue 2020-06-30 06:21:18
Time zone: Asia/Tokyo (JST, +0900)
...Kürzung...
$ date
Tue Jun 30 15:21:31 JST 2020
Recommended Posts