hi everyone.
what is the easiest way to keep my computer time accurate? For some reason best known to itself the time drifts a lot (5 mins a day) and I wonder what time service everyone else uses (or enables).
Or perhaps your computer clock is solid!
Any tips or suggestions appreciated.
thanks!
auto clock setting? so what does everyone else do?
NTP should already be installed, you just have to configure it for use and start the service.
You will need to setup the servers to contact in the /etc/ntp.conf which is really easy.
add:
server pool.ntp.org
and save the file.
then start the ntpd service. It's also posible that there are servers preconfigured so you might not even have to add an entry.
service ntpd start
You can also have it start automaticly:
chkconfig --levels 345 ntpd on
The other alternitive would be to sync with a GPS if the machine is not on the net. I thought I should mention it as it is another method that is used. More info on ntp can be had at ntp.org
You will need to setup the servers to contact in the /etc/ntp.conf which is really easy.
add:
server pool.ntp.org
and save the file.
then start the ntpd service. It's also posible that there are servers preconfigured so you might not even have to add an entry.
service ntpd start
You can also have it start automaticly:
chkconfig --levels 345 ntpd on
The other alternitive would be to sync with a GPS if the machine is not on the net. I thought I should mention it as it is another method that is used. More info on ntp can be had at ntp.org