web-dev-qa-db-fra.com

Comment désactiver ntpd?

J'exécute Ubuntu dans une machine virtuelle. Comment désactiver ntpd?

13
user12075

Pour arrêter ntpd:

Sudo /etc/init.d/ntp stop

ou

Sudo service ntp stop

Pour l'empêcher de démarrer au démarrage:

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

Avec systemd, les deux commandes sont:

Sudo systemctl stop ntp
Sudo systemctl disable ntp

Sortie (je pense que l'avertissement peut être ignoré)

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).

Vérifier:

systemctl is-enabled ntp

Sortie

ntp.service is not a native service, redirecting to systemd-sysv-install
Executing /lib/systemd/systemd-sysv-install is-enabled ntp
disabled
5
knb

Désinstallez ntpd s'il est installé. Vous aurez toujours installé ntpdate. (Il est difficile à supprimer.) Empêchez-le de s'exécuter en ajoutant exit 0 à /etc/default/ntpdate.

4
BillThor