49-greaseweazle.rules 1.1 KB

1234567891011121314151617181920212223242526
  1. # UDEV Rules for Greaseweazle
  2. #
  3. # This file must be placed at:
  4. #
  5. # /etc/udev/rules.d/49-greaseweazle.rules (preferred location)
  6. # or
  7. # /lib/udev/rules.d/49-greaseweazle.rules (req'd on some broken systems)
  8. #
  9. # To install, type this command in a terminal:
  10. # sudo cp 49-greaseweazle.rules /etc/udev/rules.d/49-greaseweazle.rules
  11. #
  12. # After this file is installed, physically unplug and reconnect Greaseweazle.
  13. #
  14. ATTRS{manufacturer}=="Keir Fraser", ATTRS{product}=="GreaseWeazle", \
  15. ENV{ID_MM_DEVICE_IGNORE}="1"
  16. ATTRS{manufacturer}=="Keir Fraser", ATTRS{product}=="GreaseWeazle", \
  17. ENV{MTP_NO_PROBE}="1"
  18. ATTRS{manufacturer}=="Keir Fraser", ATTRS{product}=="GreaseWeazle", \
  19. SUBSYSTEMS=="usb", MODE:="0666"
  20. ATTRS{manufacturer}=="Keir Fraser", ATTRS{product}=="GreaseWeazle", \
  21. KERNEL=="ttyACM*", MODE:="0666"
  22. #
  23. # If you share your linux system with other users, or just don't like the
  24. # idea of write permission for everybody, you can replace MODE:="0666" with
  25. # OWNER:="yourusername" to create the device owned by you, or with
  26. # GROUP:="somegroupname" and mange access using standard unix groups.