Sunday, April 23, 2017

Enable NTP and set Eastern Time

Once in a while I need to fix ntp and the date/time on my machine.
  • rm /etc/localtime
  • ln -sf /usr/share/zoneinfo/EST /etc/localtime
  • apt-get update && apt-get install ntp
  • systemctl enable ntp
  • systemctl stop ntp
  • ntpdate -sb time.nist.gov
  • systemctl start ntp
  • date

No comments:

Post a Comment