Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

michael_aos

macrumors 6502
Original poster
Jan 26, 2004
250
0
Every so often, I'll notice the clock on my Mac Pro 6,1 is about 2-minutes fast.

If I navigate to "Date & Time" under System Preferences, it automatically (re)sets itself via NTP.

Anyone else noticed this?

I don't think it's necessarily a Mavericks issue, as I've never noticed it on my Mac Mini or MacBook Air.
--
 
Yeah, it is a known bug that apple has no interest in squashing.

You would think a computer should at least keep time, right?

Fix:

sudo crontab -e

Then paste this and save:

*/30 * * * * killall ntpd > /dev/null
 
In Terminal.app, what is the output of "ntpdc -s" when the time is wrong?

For example...

Code:
$ ntpdc -s
     remote           local      st poll reach  delay   offset    disp
=======================================================================
*time4.apple.com 192.168.1.7      2  512  377 0.02336 -0.066405 0.30530
 
$ date ; ntpdc -s
Tue May 20 11:24:48 MDT 2014
remote local st poll reach delay offset disp
=======================================================================
time6-st1.apple 192.168.0.175 2 512 377 0.06783 -18.01520 0.33772

--

After visiting the Date & Time preferences:

$ date ; ntpdc -s
Tue May 20 11:25:27 MDT 2014
remote local st poll reach delay offset disp
=======================================================================
time3-nwk.apple 192.168.0.175 16 64 0 0.00000 0.000000 4.00000
 
$ date ; ntpdc -s
Tue May 20 11:24:48 MDT 2014
remote local st poll reach delay offset disp
=======================================================================
time6-st1.apple 192.168.0.175 2 512 377 0.06783 -18.01520 0.33772

Ok, this is working. Stratum of 2 is good and expected, your lock was off by 18 seconds at this time.

After visiting the Date & Time preferences:

$ date ; ntpdc -s
Tue May 20 11:25:27 MDT 2014
remote local st poll reach delay offset disp
=======================================================================
time3-nwk.apple 192.168.0.175 16 64 0 0.00000 0.000000 4.00000

This one is not working, stratum of 16 means that the indicated time server cannot be synchronized with for some reason. Since you now only have a single NTP source and it can't be synced with your clock is going to skew without any way for ntpd to keep it in sync.

time3-nwk.apple.com does work fine for me, so there may be something blocking it for you.

Code:
$ ntpdate -q time3-nwk.apple.com
server 17.151.16.38, stratum 2, offset -0.002503, delay 0.04767
20 May 10:43:38 ntpdate[92265]: adjust time server 17.151.16.38 offset -0.002503 sec

You could also try using a different NTP server in the Date & Time prefs. You can type in a different NTP server into the drop down, you're not limited to just Apple's. Try using "time.nist.gov" and see if that works more consistently.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.