Created
February 2, 2024 18:16
-
-
Save mariotpc/8ad98f8555e50c1710e9b66e443e3423 to your computer and use it in GitHub Desktop.
Mouse Logitec not connect on Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
So far what has worked for me is simply find the file /lib/udev/rules.d/97-hid2hci.rules. | |
https://unix.stackexchange.com/questions/105585/udev-rule-for-bluetooth-device-logitech | |
Find this entry, and comment it out: | |
# Logitech devices | |
KERNEL=="hiddev*", ATTRS{idVendor}=="046d", | |
ATTRS{idProduct}=="c70[345abce]|c71[3bc]", \ | |
RUN+="hid2hci --method=logitech-hid --devpath=%p" | |
It should look like this. | |
# Logitech devices | |
#KERNEL=="hiddev*", ATTRS{idVendor}=="046d", | |
ATTRS{idProduct}=="c70[345abce]|c71[3bc]", \ | |
# RUN+="hid2hci --method=logitech-hid --devpath=%p | |
Save the file, unplug, and replug the receiver, it works fine. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment