Raspberry Pi で NTPd を設定していても、起動後に時刻が同期するまでに時間がかかる。
一旦、ntpdate で同期するように設定。
ntpdate をインストール
# apt -y install ntpdate
自動起動するように設定。
# vi /etc/systemd/system/ntpdate.service (下記のように記述) [Unit] Description=Set time with ntpdate After=network.target [Service] # use -u to avoid conflict with ntpd ExecStart=/usr/sbin/ntpdate -u ntp.nict.jp # we may not have network yet, so retry until success Restart=on-failure RestartSec=60s [Install] WantedBy=multi-user.target
ntpdate.service を有効にする。 再起動して、時刻が同期されることを確認。
# systemctl enable ntpdate.service
● Raspberry Pi, Ubuntu, server, ntpdate, 時刻同期, ntp, 起動時
0 件のコメント:
コメントを投稿