I set Ubuntu 20.04 to recognize MX Master 3

Install Solaar

$ sudo add-apt-repository ppa:daniel.pavel/solaar
$ sudo apt-get update
$ sudo apt-get install solaar
$ sudo apt-get install solaar-gnome3

Create the following file.

sudo vi /etc/udev/rules.d/42-logitech-unifying-receiver.rules

/etc/udev/rules.d/42-logitech-unifying-receiver.rules


# This rule was added by Solaar.
#
# Allows non-root users to have raw access to Logitech devices.
# Allowing users to write to the device is potentially dangerous
# because they could perform firmware updates.

ACTION != "add", GOTO="solaar_end"
SUBSYSTEM != "hidraw", GOTO="solaar_end"

# USB-connected Logitech receivers and devices
ATTRS{idVendor}=="046d", GOTO="solaar_apply"

# Lenovo nano receiver
ATTRS{idVendor}=="17ef", ATTRS{idProduct}=="6042", GOTO="solaar_apply"

# Bluetooth-connected Logitech devices
KERNELS == "0005:046D:*", GOTO="solaar_apply"

GOTO="solaar_end"

LABEL="solaar_apply"

# Allow any seated user to access the receiver.
# uaccess: modern ACL-enabled udev
# udev-acl: for Ubuntu 12.10 and older
TAG+="uaccess", TAG+="udev-acl"

# Grant members of the "plugdev" group access to receiver (useful for SSH users)
#MODE="0660", GROUP="plugdev"

LABEL="solaar_end"
# vim: ft=udevrules

Contents of this file: https://raw.githubusercontent.com/pwr/Solaar/master/rules.d/42-logitech-unify-permissions.rules

Reconnect the USB receiver.

reference: https://askubuntu.com/questions/588197/solaar-loses-permissions-after-reboot-need-to-unplug-unifying-receiver-each-ti

Recommended Posts

I set Ubuntu 20.04 to recognize MX Master 3
I want to install PHP 7.2 on Ubuntu 20.04.
I tried to set tomcat to run the Servlet.
When I tried to use a Wacom tablet with ubuntu 20.04, I didn't recognize it.
I want to redirect sound from Ubuntu with xrdp
Set RSpec to DRY
Make ubuntu 20.04 recognize WI-U2-433DMS
I want to set devise_parameter_sanitizer individually when I create two devises
I want to set the conditions to be displayed in collection_check_boxes
I want to use screen sharing on the login screen on Ubuntu 18
I tried to automate LibreOffice Calc with Ruby + PyCall.rb (Ubuntu 18.04)