#author("2018-09-05T19:57:26+09:00","default:regex","regex") *Ubuntu12.04の時計合わせについて [#d4d98d27] いつも通りWebサーバ用のNotePCを、アップデート。~ あら?(木曜日)って、時間がずれてるじゃん。~ そういやUbuntuのntpってどうなってるんだろか・・・~ 一応調べてみると。/etc/default/ntpdateにあるらしい。~ $sudo sed -i.bak 's/"ntp.ubuntu.com"/"ntp.nict.jp"/g' /etc/default/ntpdate~ $sudo sed -i.bak 's/"ntp.ubuntu.com"/"ntp.nict.jp"/g' /etc/default/ntpdate sedかぁ、なつかしいなぁ、もともとntp.ubuntu.comをntp.nict.jpに置き換えということか。~ どれどれ~ $ cat /etc/default/ntpdate # The settings in this file are used by the program ntpdate-debian, but not # by the upstream program ntpdate. # Set to "yes" to take the server list from /etc/ntp.conf, from package ntp,~ # so you only have to keep it in one place. NTPDATE_USE_NTP_CONF=yes ~ # List of NTP servers to use (Separate multiple servers with spaces.) # Not used if NTPDATE_USE_NTP_CONF is yes. NTPSERVERS="ntp.nict.jp" ~ # Additional options to pass to ntpdate NTPOPTIONS=""~ $ cat /etc/default/ntpdate # The settings in this file are used by the program ntpdate-debian, but not # by the upstream program ntpdate. # Set to "yes" to take the server list from /etc/ntp.conf, from package ntp, # so you only have to keep it in one place. NTPDATE_USE_NTP_CONF=yes # List of NTP servers to use (Separate multiple servers with spaces.) # Not used if NTPDATE_USE_NTP_CONF is yes. NTPSERVERS="ntp.nict.jp" # Additional options to pass to ntpdate NTPOPTIONS=""~ 以上~ おお、置き換わってる。~ そして再起動~ おお直った。~ ~ ところで、ntp合わせの頻度は?~ って起動時だけ見たい・・・うううそりはちょっと不安だ~ 手動では~ ~ $ sudo /etc/network/if-up.d/ntpdate ~ $ date~ 2010年 7月 1日 木曜日 16:33:14 JST~ $ tail -f /var/log/syslog ~ …~ Apr 22 20:50:03 ******-VY16MRFEJHHXSCC ntpdate[2128]: adjust time server 133.243.238.244 offset 0.330159 sec $ sudo /etc/network/if-up.d/ntpdate $ date 2010年 7月 1日 木曜日 16:33:14 JST $ tail -f /var/log/syslog … Apr 22 20:50:03 ******-VY16MRFEJHHXSCC ntpdate[2128]: adjust time server 133.243.238.244 offset 0.330159 sec ~ うまくいく~ cron.dailyに入れて様子を見ることにしました。~ cd /etc/cron.daily/~ sudo ln -s /etc/network/if-up.d/ntpdate~ ~ [[ノートPC2つめ]]へ戻る。