Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make permissions permanent #11

Open
jgslade opened this issue Jul 4, 2017 · 2 comments
Open

Make permissions permanent #11

jgslade opened this issue Jul 4, 2017 · 2 comments

Comments

@jgslade
Copy link

jgslade commented Jul 4, 2017

In this section "ERROR: libusbx: error [_get_usbfs_fd] libusbx..." the fix you reccomend needs to be done each time you reboot or unplug the mouse. Using a udev rule will allow for a one time change of permissions.

I created this rule in /etc/udev/rules.d/99-logitech.rules
SUBSYSTEM=="input", ATTRS{idVendor}=="", ATTRS{idProduct}=="", MODE="0660", GROUP=""
and can be found by lsusb
is the group you want

@cc201129r
Copy link

On Ubuntu 16.04 that rule seems not working, then i wrote this rule
SUBSYSTEM=="usb", ATTR{idVendor}=="youridVendor", ATTR{idProduct}=="yourProduct", MODE="0666", GROUP="yourusername" and it works!

cheers

@krayon
Copy link
Owner

krayon commented Mar 1, 2020

@cc201129r The 0666 negates the GROUP application by making it WORLD read/write-able. I would suggest keeping the 0660 but using a group you belong to in GROUP (such as your username on some systems).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants