Używam Ubuntu na maszynie wirtualnej. Jak mogę wyłączyć NTTP?
Używam Ubuntu na maszynie wirtualnej. Jak mogę wyłączyć NTTP?
Odpowiedzi:
Aby zatrzymać ntpd:
sudo /etc/init.d/ntp stop
lub
sudo service ntp stop
Aby uniemożliwić uruchomienie go przy rozruchu:
sudo update-rc.d -f ntp remove
W przypadku systemd dwa polecenia to:
sudo systemctl stop ntp
sudo systemctl disable ntp
Dane wyjściowe (myślę, że ostrzeżenie można zignorować)
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).
Czek:
systemctl is-enabled ntp
Wynik
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
.