Handbuch Linux

System


Hardware



USB (UDEV) konfigurieren
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.