Skip to main content

Disable NTP sync during boot (USplash) in Ubuntu Linux

The Network Time Protocol (NTP) is a protocol for synchronizing the clocks of computer systems over packet-switched, variable-latency data networks. NTP uses UDP port 123 as its transport layer. It is designed particularly to resist the effects of variable latency.
NTP sometimes greatly slows down your Ubuntu’s boot time. To disable it just do a simple code...

sudo apt-get remove ntpdate

Comments

Unknown said…
Does that mean it will never use NTP to sync the system clock, or does it merely delay it until after boot? Delaying it until later on would be a better approach to solving the problem imho.
Terence said…
NTPdate is a one time executable, not a daemon. For it to keep your system time updated constantly, it needs to be integrated into your cron system.

For a more traditional way to keep your system time updated automatically, use ntpd.

See the below for more information:
https://help.ubuntu.com/8.04/serverguide/C/NTP.html