Install time synchronization with NTP server on Free BSD:


View current date and time with this command to see if it works:
"date"
---------------------------------------------------------

Install NTP client if needed:

sudo pkg install ntp
sudo ntpdate -v -b time.nrc.ca

In your /etc/rc.conf file add these lines to sync at boot:
ntpdate_enable="YES"
ntpdate_hosts="time.nrc.ca"


--------------------------------------------------------
From | Date: February 15th, 2021

Back