FreeBSD 時刻合わせ

・システム時刻を日本標準時にする

# cp /usr/share/zoneinfo/Asia/Tokyo /etc/localtime

・適当なNTPサーバで時刻合わせ

# ntpdate -s 0.freebsd.pool.ntp.org 

・システム起動時に時刻合わせをする

# vi /etc/rc.conf
ntpdate_enable="YES"
ntpdate_flags="-s 0.freebsd.pool.ntp.org"

・定期的に時刻合わせをする

# vi /etc/crontab
10 */8 * * *      root    /usr/sbin/ntpdate -s 0.freebsd.pool.ntp.org
※8時間おきに時刻合わせする