1

Trying to install code to let Logitech Unifying software install so my mouse will work on my new Ubuntu laptop.

I think I found the program ltunify but can't get it to work.

I have ubuntu 12.04 LTS installed and I am not a programmer.

Initially I tried to follow the instructions from the link - Is Logitech's Unifying receiver supported?

I followed the quick install instructions typing in all four lines of code. It appears to load and create the ltunify directory which is says is not empty. It appears to contain hidpp20.c keyboard.txt notes.txt readme.txt usbmon.awk hidraw.c ltunify.c read-dev-usbmon.c registers.txt.

When I enter sudo ltunify pair I get a command not found error. I have rebooted machine.

Thanks!

Asus99999
  • 21
  • 1
  • 3

1 Answers1

0

It sounds like your execution path does not contain $HOME/bin. Open the .profile file in your home folder and append the following block if it does not already exist:

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
fi
Lekensteyn
  • 178,446