51-coinkite.rules (618B)
1 # Linux udev support file. 2 # 3 # This is a example udev file for HIDAPI devices which changes the permissions 4 # to 0666 (world readable/writable) for a specific device on Linux systems. 5 # 6 # - Copy this file into /etc/udev/rules.d and unplug and re-plug your Coldcard. 7 # - Udev does not have to be restarted. 8 # 9 10 # probably not needed: 11 SUBSYSTEMS=="usb", ATTRS{idVendor}=="d13e", ATTRS{idProduct}=="cc10", GROUP="plugdev", MODE="0666" 12 13 # required: 14 # from <https://github.com/signal11/hidapi/blob/master/udev/99-hid.rules> 15 KERNEL=="hidraw*", ATTRS{idVendor}=="d13e", ATTRS{idProduct}=="cc10", GROUP="plugdev", MODE="0666" 16