BU-353S4 USB GPS レシーバーを持っています。Kubuntu 18.04 を実行しています。 で gpsd を手動で実行するとgpsd /dev/ttyUSB0
、デバイスが正しく識別され、修正が利用可能な場合は修正が行われます。
自動的に実行させるとgpsd
、これは機能しません。gpsd がデバイスを見つけられず、開こうとしないようです。
/dev/ttyUSB0 を追加して/etc/defaults/gpsd
サービスを実行すると、GPS は動作します。ただし、その後 GPS を切断して再接続すると、デーモンは GPS を再び見つけられません。
私の/etc/defaults/gpsd
言うことは:
# Default settings for the gpsd init script and the hotplug wrapper.
# Start the gpsd daemon automatically at boot time
START_DAEMON="true"
# Use USB hotplugging to add new USB devices automatically to the daemon
USBAUTO="true"
# Devices gpsd should collect to at boot time.
# They need to be read/writeable, either by user gpsd or the group dialout.
DEVICES="/dev/ttyUSB0"
# Other options you want to pass to gpsd
GPSD_OPTIONS=""
何が間違っているのでしょうか?