timedatectlを利用するのが基本
基本
sudo vi /etc/systemd/timesyncd.conf
[Time]
NTP=ntp.nict.jp
sudo systemctl restart systemd-timesyncd.service
で行くはずが、
エラー
Failed to restart systemd-timesyncd.service: Unit systemd-timesyncd.service is masked.
このエラーになりました。
timedatectl
を打つと
NTP service: active
となっていたり
NTP service: N/A
となっていたり
下記を実行すると
timedatectl set-ntp true
Failed to set ntp: NTP not supported
このエラーになりました。
今回解決した方法
sudo apt install systemd-timesyncd
これでインストールをし直して、
sudo timedatectl set-ntp true
sudo systemctl restart systemd-timesyncd.service
これで今回は解決しました。
最初からはインストールされてないのね。。。
参考リンクはこちら