Ich habe einen BU-353S4 USB-GPS-Empfänger. Ich verwende Kubuntu 18.04. Wenn ich gpsd manuell mit ausführe gpsd /dev/ttyUSB0
, wird das Gerät korrekt identifiziert und ein Fix durchgeführt, wenn eines verfügbar ist.
Wenn ich es gpsd
automatisch laufen lasse, klappt das nicht. Es scheint, dass gpsd das Gerät nicht findet und auch nicht versucht, es zu öffnen.
Wenn ich /dev/ttyUSB0 hinzufüge /etc/defaults/gpsd
und den Dienst starte, funktioniert das GPS. Wenn ich das GPS jedoch trenne und wieder anschließe, findet der Daemon es nicht mehr.
Mein /etc/defaults/gpsd
sagt:
# 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=""
Was mache ich falsch?