我在将系统时间与 GPS 时间同步时遇到问题。我正在使用 U-Blox GPS 接收器。GPS 接收器通过 /dev/ttyXR4 端口工作正常。现在的问题是,我希望系统使用 NTP 客户端自动更新 GPS 时间。
我已经在我的 Gentoo 机器上安装了 gpsd 和 net-misc/ntp-client。我运行了 cgps 和 xgps,GPS 接收器工作正常。
我的 ntp.conf 看起来像这样:(我从 Ubuntu 复制了这个,因为我做了一次,它在 Ubuntu 上运行良好)
pool us.pool.ntp.org iburst
driftfile /var/lib/ntp/ntp.drift
logfile /var/log/ntp.log
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
restrict 127.0.0.1 mask 255.255.255.0
restrict -6 ::1
# GPS Serial data reference
server 127.127.28.0
fudge 127.127.28.0 time1 0.9999 refid GPS
# GPS PPS reference
server 127.127.28.1 prefer
fudge 127.127.28.1 refid PPS
# Clients from this (example!) subnet have unlimited access,
# but only if cryptographically authenticated
#restrict 192.168.123.0 mask 255.255.255.0 notrust
restrict 192.168.1.0 mask 255.255.255.0 nomodify
所以,任何人都可以指导我解决这个问题,将时间从 GPS 输入到 NTP,然后自动更改我的系统设置?
非常感谢 :)