J'utilise Ubuntu sur une machine virtuelle. Comment désactiver ntpd?
J'utilise Ubuntu sur une machine virtuelle. Comment désactiver ntpd?
Réponses:
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
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
Production
ntp.service is not a native service, redirecting to systemd-sysv-install
Executing /lib/systemd/systemd-sysv-install is-enabled ntp
disabled
systemd-timesyncd.service
ntp
.