Installare Garmin plugin su kubuntu 14.10

Per far funzionare Garmin communicator plugin ho eseguito queste operazioni:

 

Installare Garmin communicator plugin come descritto dal sito http://www.andreas-diesner.de/garminplugin/doku.php http://www.andreas-diesner.de/garminplugin/doku.php :

1
2
3
sudo add-apt-repository ppa:andreas-diesner/garminplugin
sudo apt-get update
sudo apt-get install garminplugin

 

Creare il file

/etc/udev/rules.d/51-garmin-rules

con le regole di udev con all’interno il contenuto:

1
ATTRS{idVendor}=="091e", ATTRS{idProduct}=="0003", MODE="666"

 

Creo il file con questo comando:

1
2
sudo echo 'ATTRS{idVendor}=="091e", ATTRS{idProduct}=="0003", MODE="666"' \
> /etc/udev/rules.d/51-garmin-rules

 

Ricaricare le regole di udev con questo comando:

1
sudo udevadm control --reload-rules

 

Inserire questo contenuto nel file /home/michele/.config/garminplugin/

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<GarminPlugin logfile="" level="ERROR">
    <Devices>
         <Device>
            <Name>gpsbabel</Name>
            <StoragePath>/tmp</StoragePath>
            <StorageCommand>gpsbabel -i gpx -f %1 -o garmin -F usb:</StorageCommand>
            <FitnessDataPath></FitnessDataPath>
        </Device>
    </Devices>
    <Settings>
        <ForerunnerTools enabled="false" />
    </Settings>
</GarminPlugin>

Questo file funziona con il GPS60CSx, per altri GPS il file potrebbe essere diverso, consultare il sito http://www.andreas-diesner.de/garminplugin/doku.php per maggiori informazioni.