Eu tenho um receptor GPS USB BU-353S4. Estou executando o Kubuntu 18.04. Quando executo manualmente o gpsd com gpsd /dev/ttyUSB0
, ele identifica corretamente o dispositivo e obtém uma correção quando um está disponível.
Quando deixo gpsd
executar automaticamente, isso não funciona. Parece que o gpsd não encontra o dispositivo e não tenta abri-lo.
Se eu adicionar /dev/ttyUSB0 /etc/defaults/gpsd
e executar o serviço, o GPS funcionará. No entanto, se eu desconectar o GPS e reconectá-lo, o daemon não o localizará novamente.
Meu /etc/defaults/gpsd
diz:
# 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=""
O que estou fazendo de errado?