6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ubuntu20で時刻合わせに失敗する

Last updated at Posted at 2022-09-01

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

これで今回は解決しました。
最初からはインストールされてないのね。。。

参考リンクはこちら

6
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?