VMでUbuntuを実行しています。 ntpdを無効にするにはどうすればよいですか?
Ntpdを停止するには:
Sudo /etc/init.d/ntp stop
または
Sudo service ntp stop
起動時に起動しないようにするには:
Sudo update-rc.d -f ntp remove
Systemdの場合、2つのコマンドは次のとおりです。
Sudo systemctl stop ntp
Sudo systemctl disable ntp
出力(警告は無視できると思います)
ntp.service is not a native service, redirecting to systemd-sysv-install
Executing /lib/systemd/systemd-sysv-install disable ntp
insserv: warning: current start runlevel(s) (empty) of script `ntp' overrides LSB defaults (2 3 4 5).
insserv: warning: current stop runlevel(s) (1 2 3 4 5) of script `ntp' overrides LSB defaults (1).
insserv: warning: current start runlevel(s) (empty) of script `ntp' overrides LSB defaults (2 3 4 5).
insserv: warning: current stop runlevel(s) (1 2 3 4 5) of script `ntp' overrides LSB defaults (1).
小切手:
systemctl is-enabled ntp
出力
ntp.service is not a native service, redirecting to systemd-sysv-install
Executing /lib/systemd/systemd-sysv-install is-enabled ntp
disabled
Ntpdがインストールされている場合はアンインストールします。 ntpdateはインストールされたままです。 (削除するのは困難です。)exit 0
を/etc/default/ntpdate
に追加して、実行を防止します。