2014年5月10日土曜日

fedora20で時間がずれていた件


お名前.comのVPSをfedora20 に変えてみたら時間が9時間ずれていた件。

$ date
2014年  5月 10日 土曜日 17:01:30 JST
と表示される。スマホでは朝の8時。
JST と表示されているので、タイムゾーンは正しいみたい。

$cat /etc/adjtime
0.0 0 0.0
0
UTC

検索すると、UTC ---> LOCAL と変更すればいいみたい。
/etc/adjtime を直接変更していいものか?

直接編集してもいいみたいだけど、
$ timedatectl set-local-rtc true
で、変更された。ただしワーニングあり。

$ timedatectl status
      Local time: 金 2014-05-30 09:53:48 JST
  Universal time: 金 2014-05-30 00:53:48 UTC
        RTC time: 金 2014-05-30 09:53:48
        Timezone: Asia/Tokyo (JST, +0900)
     NTP enabled: n/a
NTP synchronized: no
 RTC in local TZ: no
      DST active: n/a

$ timedatectl status
      Local time: 金 2014-05-30 09:55:30 JST
  Universal time: 金 2014-05-30 00:55:30 UTC
        RTC time: 金 2014-05-30 09:55:30
        Timezone: Asia/Tokyo (JST, +0900)
     NTP enabled: n/a
NTP synchronized: no
 RTC in local TZ: yes
      DST active: n/a

Warning: The RTC is configured to maintain time in the local timezone. This
         mode is not fully supported and will create various problems with time
         zone changes and daylight saving adjustments. If at all possible use
         RTC in UTC, by calling 'timedatectl set-local-rtc 0'.


$ date
2014年  5月 10日 土曜日 08:23:10 JST
と正しく表示された。

$ cat /etc/adjtime
0.0 0 0.0
0
LOCAL


とりあえず、良しとしよう。。。

0 件のコメント:

コメントを投稿