Como desabilito o ntpd?

13

Estou executando o Ubuntu em uma VM. Como desabilito o ntpd?

    
por muru 09.03.2011 / 16:00

3 respostas

14

Para parar o ntpd:

sudo /etc/init.d/ntp stop

ou

sudo service ntp stop

Para impedir que ele seja iniciado na inicialização:

sudo update-rc.d -f ntp remove
    
por Mr Shunz 09.03.2011 / 16:42
4

Desinstale o ntpd se ele estiver instalado. Você ainda terá o ntpdate instalado. (É difícil removê-lo.) Impeça-o de executar adicionando exit 0 a /etc/default/ntpdate .

    
por BillThor 09.03.2011 / 17:57
3

Com o systemd, os dois comandos são:

sudo systemctl stop ntp
sudo systemctl disable ntp

Saída (acho que o aviso pode ser ignorado)

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

Verifique:

systemctl is-enabled ntp

Saída

ntp.service is not a native service, redirecting to systemd-sysv-install
Executing /lib/systemd/systemd-sysv-install is-enabled ntp
disabled
    
por knb 30.03.2017 / 09:20

Tags