New comment by JBKingdon on void-packages repository https://github.com/void-linux/void-packages/issues/23580#issuecomment-1474974796 Comment: Since this issue is one of the top hits for people searching for sigrok udev problems, I thought it might be useful to add this. I couldn't get the existing udev rules from the contrib directory working on RHEL 8.7, and unfortunately I find the udev system a little difficult to figure out. I eventually gave up and created a smaller udev rule for the specific device I have and this works for me, with replaced with the default group for my userid. I created this as `/usr/lib/udev/rules.d/99-dslogic.rules` ``` ACTION!="add|change", GOTO="libsigrok_rules_end" SUBSYSTEM!="usb|usbmisc|usb_device|hidraw", GOTO="libsigrok_rules_end" # DreamSourceLab DSLogic Plus ATTRS{idVendor}=="2a0e", ATTRS{idProduct}=="0020", MODE="0660", GROUP="" LABEL="libsigrok_rules_end" ```