Linux – Does NTP Daemon Set the Host Timezone?

daemonlinuxntpntpd

If I am using NTP daemon or ntpdate command, do I need to worry about changing the timezone?

Should I re-configure the timezone using cron job to guarantee the accuracy of the server time?

I am using ubuntu server.

Best Answer

You only need to set the time zone once:

tzselect

or

dpkg-reconfigure tzdata

NTP does not handle time zones. All time data handled by NTP is in UTC; your local time zone setting determines the offset from there.

Related Topic