Logitech has a Unifying receiver that you can add several devices using the same USB device. Is this supported in Ubuntu and if so do I have to additionally configure something so that when adding a new wireless device it gets recognized by the same receiver.
I've a Logitech Illuminated Keyboard and M525 mouse here, both are using the Logitech Unifying USB receiver. They works out-of-the box, Plug & Play!
lsusb | grep Logitech
:dmesg | grep Logitech
:Having that said, Logitech only supports Unifying software for Windows and Mac OS X. For Linux, I have created the
ltunify
tool which is described in detail on my article Logitech Unifying for Linux: Reverse Engineering and unpairing tool. Quick installation instructions if you are in a hurry:This will fetch the sources and install the program to
$HOME/bin/ltunify
, if$HOME/bin
did not exist before, then you may have to re-login or reopen your terminal. After doing so, you can pair a new device with thesudo ltunify pair
command and unpair devices with a command likesudo ltunify unpair mouse
(be sure to have a second device that you can use after detaching your Unifying device!).A graphical tool is also available, Solaar. It has better support for functionality of newer devices such as swapping the functionality of FN keys. It is available though the
ppa:daniel.pavel/solaar
PPA (if you do not know how to install such a "PPA", see What are PPAs and how do I use them?). After installation, you can search for Solaar in the applications menu and start it from there.I would like to complement Lekensteyn's answer by including a feature I did not know about. I have a Logitech Anywhere MX mouse and when the batteries were almost out, I got the following message:
So the Unifying receiver is not only supported by it offers (Depending on the device) several features like the image above. This image was with Ubuntu 12.10
On Ubuntu 14.04 with version 0.9.2 you can see the following:
I recommend to read this excellent article about Logitech Unifying Technology written by Lekensteyn.
Note that on latest versions, there is no need for the PPA as this already comes in the Universe Repository with the
solaar-gnome3
(For Gnome3/Unity) andsolaar
packages.Also see the list of current supported devices and to install it if you are not on a latest Ubuntu version simply run the following lines:
Logout and login again and Solaar should appear on your top panel. You can also execute the app from the Dash by typing "Solaar".
Here are some images of several Logitech mice working together with one unified receiver:
Solaar offers an easier way to know how much battery you have left, how much time you have let, which mouse you are using and more. It also offers special features like detecting if the battery is charging:
The following 2 images are from Ubuntu 16.04 64-bit With Solaar:
The first device you plug in just works, but if you get another keyboard or mouse then you need to pair it with the existing receiver. Here's a script you can use to pair your devices on Linux:
Works great.
One of the strengths of Linux is that if you have a problem, someone will find an elegant solution to that problem - and they'll share it.
In this case, a gentleman named Daniel Pavel created an application called Solaar. This application provides a very elegant interface to manage the Logitech Unifying Receiver and the devices attached to it.
This article describes the application and provides installation instructions: http://www.webupd8.org/2013/07/pair-unpair-logitech-unifying-devices.html
I have been using Solaar for a while and I have found it to be very useful.
I hope this helps,
I have a Logitech K360 Keyboard, Logitech Wireless Trackpad, and a Logitech M510 Wireless Mouse, all working through the same unifying receiver.
I configured the devices initially on a Windows machine, then moved the unifying receiver to my Linux box (running ubuntu 12.04). All of the devices work well most of the time.
I have encountered two issues:
The first issue is that I would like to configure different speeds for the trackpad and the mouse, but they are jointly recognised as a mouse, so there is only one configuration possible.
The second issue is that from time-to-time, I appear to lose the signal. In other words, none of the devices will work - or they will stop working. I encounter this on Windows as well - just one of those things. I pull the receiver from the usb slot and then re-insert it and the signal is restored - the devices work.
I am happy with the arrangement, although I do wish that I could find a solution to the first issue.
Hope this helps,
if you are more new to Ubuntu , follow these steps this is the same answer as above but in steps using: https://github.com/treeder/logitech_unifier
click on the files autopair.sh and then click on raw, then save as, save it in any path you like. now go back and download unify.c the same way and put it into the same folder. now either right click on the autopair.sh and in permissions allow excuting it. now you should be able to run it by double clicking if not , press ctrl+L and copy that path push ctrl+shift+t write cd then push ctrl+shift+v and press enter now write
and press enter now you can run it by writing ./autopair.sh and pressing enter
that should be all telling you to turn off the device and press enter then you turn on the device and that's it , repeat for more devices. I could guess if the compiler doesnt work you need to install build essentials. by running
now do the above instructions again . if it still is no go, maybe you can pair using another computer.
Building on the answer from @Lekensteyn you can build the
ltunify
program in docker - if you don't want to install all kinds of dependencies for one-off tasks:Verified on the
ubuntu:20.04
docker image. The binary worked well in adding a Logitech K520 keyboard in addition to my mouse to my laptop running Ubuntu 20.04 LTS.