Home USB (UDEV) konfigurieren USB-Scanner Festplatte
   Handbuch Linux
 System
 Hardware
 USB (UDEV) konfigurieren

10.5.2.3 Garmin-GPS-Gerät

To keep the OS from loading the (frequently dysfunctional) kernel garmin_gps module, edit
/etc/modprobe.d/blacklist and add the lines

# stop garmin_gps serial from loading for USB garmin devices
blacklist garmin_gps

To allow the USB devices to be read and written by a non-priveleged user, create a named
/etc/udev/rules.d/51-garmin.rules with the following contents

# allow Garmin USB devices read and written by a non-privileged users
SUBSYSTEM!="usb", GOTO="garmin_rules_end"
ACTION!="add", GOTO="garmin_rules_end"
ATTRS{idVendor}=="091e", ATTRS{idProduct}=="0003", MODE="0660", GROUP="plugdev"
LABEL="garmin_rules_end"


Alle Benutzer, die auf das Gerät zugreifen wollen, müssen der Gruppe plugdev zugeordnet werden.


Copyright © Stefan Baireuther & Michael Petri
Letzte Aktualisierung am 21. Mai 2012
Home USB (UDEV) konfigurieren USB-Scanner Festplatte