Ubuntu – How to disable ntpd

ntp

I'm running Ubuntu in a VM. How do I disable ntpd?

Best Answer

To stop ntpd:

sudo /etc/init.d/ntp stop

or

sudo service ntp stop

To prevent it from starting at boot:

sudo update-rc.d -f ntp remove