Sto eseguendo Ubuntu in una macchina virtuale. Come disabilito ntpd?
Sto eseguendo Ubuntu in una macchina virtuale. Come disabilito ntpd?
Risposte:
Per interrompere ntpd:
sudo /etc/init.d/ntp stop
o
sudo service ntp stop
Per impedirne l'avvio all'avvio:
sudo update-rc.d -f ntp remove
Con systemd, i due comandi sono:
sudo systemctl stop ntp
sudo systemctl disable ntp
Output (penso che l'avviso possa essere ignorato)
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).
Dai un'occhiata:
systemctl is-enabled ntp
Produzione
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
.