49-greaseweazle.rules 1.0 KB

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