由于某些原因,系统时间有时候不对了.
freebsd 如何同步时间.
- 手动同步:
ntpdate -b pool.ntp.org
几秒钟后, 时间就同步了.
- 启动系统 Ntpd 服务, 自动同步:
编辑系统的文件:/etc/ntpd.conf
server pool.ntp.org
driftfile /etc/ntp.drift
logfile /var/log/ntpd.log
然后编辑: /etc/rc.conf
加入一行:
ntpd_enable="YES"
ntpdate_enable="YES"
启动ntpd 服务:
service ntpd start
参考:
1. http://www.surlyjake.com/blog/2008/11/17/freebsd-time-updates-with-ntpdate-and-ntpd/
1. https://www.cyberciti.biz/tips/freebsd-timeclock-synchronization-with-ntp-server.html