0

I am trying to find where the program gpsd is saved because I need to edit a file to get my pi and gps to talk.

I have been following instructions from http://www.instantsupportsite.com/self-help/raspberry-pi/raspberry-globalsat-353s4-install/.

I believe my target file (gpsd.hotplug) is saved somewhere else then what my instructions suggest because when I enter nano /lib/udev/gpsd.hotplug, I get a new blank text file.

How do I track down gpsd.hotplug and more generally, the location gpsd is installed?

I have tried find gpsd.hotplug but was greeted with find: 'gpsd.hotplug': No such file or directory.

I am running raspbian version 4.1.13.

Thanks for your help!

SDsolar
  • 2,378
  • 8
  • 26
  • 43

2 Answers2

0

When using find, a directory is needed as well. The command you should be using is:

find gpsd.hotplug /

or:

sudo ls -aR / | grep "gpsd.hotplug" -B 15
Patrick Cook
  • 6,365
  • 8
  • 38
  • 63
0

You can find all the files by using this command:

sudo find / gpsd | grep gpsd

Here are the results on my system: enter image description here

enter image description here

SDsolar
  • 2,378
  • 8
  • 26
  • 43