Skip to content

Instantly share code, notes, and snippets.

@mariotpc
Created February 2, 2024 18:16
Show Gist options
  • Save mariotpc/8ad98f8555e50c1710e9b66e443e3423 to your computer and use it in GitHub Desktop.
Save mariotpc/8ad98f8555e50c1710e9b66e443e3423 to your computer and use it in GitHub Desktop.
Mouse Logitec not connect on Linux
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