web-dev-qa-db-ja.com

ntpdを無効にするにはどうすればよいですか?

VMでUbuntuを実行しています。 ntpdを無効にするにはどうすればよいですか?

13
user12075

Ntpdを停止するには:

Sudo /etc/init.d/ntp stop

または

Sudo service ntp stop

起動時に起動しないようにするには:

Sudo update-rc.d -f ntp remove
14
Mr Shunz

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
5
knb

Ntpdがインストールされている場合はアンインストールします。 ntpdateはインストールされたままです。 (削除するのは困難です。)exit 0/etc/default/ntpdateに追加して、実行を防止します。

4
BillThor