Mouse clicks suddenly stopped working in Ubuntu

77

24

This is a weird one. For some reason, last night my mouse partially stopped working. Movement is fine, but the mouse buttons don't work. Mainly it's the left button, but occasionally the right click and scroll-wheel fail too.

Initially I thought it could be the mouse itself (the left button seemed to get a bit "soft" recently), but I tried another mouse and had the same issue. Both are USB wireless optical mice. The keyboard is working okay 95%, only problem is Alt+Tab doesn't seem to work. Both keys work fine independently.

At the time it happened I was using Chrome, I dragged to scrollbar to scroll and when I released the mouse it was still holding scrollbar.

I'm using Ubuntu 9.10, I upgraded weeks ago and everything was working fine so I don't think it's related to that. I also hadn't run any updates (I have now just in case something fixed it). But no luck.

Any ideas?

DisgruntledGoat

Posted 2009-11-18T12:50:37.707

Reputation: 4 068

1To those trying to figure out why this happens, I observed that Spotify for Ubuntu seems to trigger this. Leave a Spotify client open for too long without playing anything (generally overnight) then go back to play something. Clicking on the green "Play" button of playlists causes the clicks to register no more. – skytreader – 2016-01-28T07:25:08.093

Answers

8

I found that this was just a problem with the mouse. The left button has pretty much stopped working. Other buttons seemed to stop working because the left button gets "jammed". After restarting with the other mouse plugged in, it worked fine.

Damn, I seem to have gone through so many mice and/or keyboards recently...

DisgruntledGoat

Posted 2009-11-18T12:50:37.707

Reputation: 4 068

A variation on "just a problem with the mouse" - I got my wireless mouse to work again after switching it off (little slider on the underside) and back on.... Simple thing but easy to forget or just no know there is such a switch, and I'd wasted a couple hours on software hackery and reboots beforehand... :-(. – Tony D – 2016-01-09T01:54:59.653

I have the same problem, but for some reason my mouse works find if I boot into Windows. It is really stupid to have exactly this answer as accepted. – h22 – 2016-02-18T18:47:36.103

3ha! sadly, hardware problems like this are never the first thing we think of. it must be the software, mice don't go bad... :) – quack quixote – 2009-12-10T01:58:44.047

79

Got this one too. The odd thing is, it doesn't take clicks from my mouse, but it fully recognizes my touchpad.

Anyway, opening a terminal (e.g., with Ctrl+Alt+T) and typing:

metacity --replace &

will make it work if you're using compiz. If you want compiz back, type:

compiz --replace &

and the mouse will work again.

It's easier getting to the terminal if you have Gnome-Do or if you assign a hotkey to it (like the super/windows key or tilde (~).

WARNING: Don't stop metacity/compiz commands once started or you'll be in worse situation than you were before.

user37966

Posted 2009-11-18T12:50:37.707

Reputation:

if it is not possible to do anything in your current environment you can login to another console: [CTRL]+[ALT]+[6] and killall compiz start it with compiz --replace --display :0 go back with [CTRL]+[ALT]+[7] and restart compiz with compiz --replace &; in a console. did the job for me – syss – 2014-09-10T13:20:08.183

3Better to run the command from Alt+F2 if that works, so you don't have to worry about closing the terminal. – Nick – 2014-10-06T09:53:32.207

6And for newer versions: unity --replace – jmiserez – 2014-10-06T10:43:30.557

1What helped me was simply disabling the touchpad(laptop). It was dead long time ago but somehow Synaptics drivers were interfering with external mouse. They did cause issues on Windows but in a different way. As soon as I disabled trackpad, tested clicks on the mouse and "oh Yeah"! – Aubergine – 2015-02-26T04:30:03.250

7perfect for me , but it s strange that in 2015 with a mature os ( ubuntu 15 ) there are still issues like this . – Charles-Antoine Fournel – 2015-06-16T07:22:58.767

6This is a workaround, not a solution. Any ideas about how to fix it permanently? – jvriesem – 2016-02-22T21:17:33.190

I tried this on 14.04 after experiencing identical problems and it didn't do anything. I had to install metacity. – amphibient – 2016-07-26T01:40:58.680

Works only for a few seconds... :-( – ffonz – 2018-03-23T08:55:55.540

Detach with unity --replace & and then you don't have to worry about closing the terminal. – davidA – 2018-08-29T21:28:26.327

6If you stop the metacity --replace command, you'll be in a worse position than when you started, with even less functionality working. As a warning to others, don't stop the metacity process once started. I found this out the hard way. – Dennis – 2011-10-18T10:29:44.417

@Dennis the compiz --replace should solve most of those issues. gnome-panel --replace might help others. XFCE has a similar option if I am not mistaken. – matchew – 2012-10-10T14:57:12.310

23

For what it's worth, I went into the package manager and searched for, 'mouse'. After that, I clicked on all the already installed applications (there aren't that many) and reinstalled all of 'em. Then I searched for 'keyboard' and did the same thing. Not much change there, either. Finally, I searched for 'input' and found a file called, 'inputattach'. Reinstalled it and my mouse problems are solved. Works like it did on the day I installed 10.04. It's so nice to have a mouse that behaves itself and works like it should, again.

I'm a relatively new Ubuntu user, but instead of asking a lot of questions and then waiting for someone to reply, I decided to try and do something about it on my own, and solved my mouse problems (computer mouse, that is...;)

What the file re-installation cleared up, was the need to click several times to open up a folder, having to hold the button down for sometimes as long as three or four seconds before the click would be activated, or having to right click to open a folder or open a file with a particular application.

Just wanted to share this with you since the 'input' of my mouse now seems to once again, be completely and fully 'attached' to my computer.

Cubby

Posted 2009-11-18T12:50:37.707

Reputation: 231

5tl;dr sudo apt get install --reinstall inputattach – user1526247 – 2016-11-12T14:24:30.070

1sudo apt-get install --reinstall inputattach; # work like a charm) Lubuntu(Ubuntu) 18.04. Tnx! – user3439968 – 2018-11-13T14:24:05.007

2Upvoted for solving your own problem, and sharing the solution with others. – Jake – 2011-07-13T18:20:19.847

1I had the same exact problem described here, <kbd>alt</kbd><kbd>tab</kbd> plus mouse functions frozen (not only clicks are not working but also the shape of the mouse is not changing and they where always unfrozen after <kbd>Ctrl</kbd><kbd>Q</kbd> over firefox and then <kbd>Alt</kbd><kbd>F1</kbd> over the desktop to activate menus). I just reinstalled the inputattach package, as @Cubby described and the problems stopped. – None – 2011-02-16T02:49:37.137

14

Some things to try:

  • Switch to and from a virtual terminal Ctrl + Alt + F1,Alt + F7.
  • Activate the screen-lock Ctrl + Alt + L to hopefully reset the X11 window manager.
  • Restart the window manager with something like ( DISPLAY=0.0 marco --replace ). You need to replace marco with whatever window manager you are running (compiz, unity, metacity, ...).
  • Close any virtual machines, VNC clients, games, etc. that might have grabbed the mouse. For example: killall vmplayer might initiate a virtual-machine suspend operation.

nobar

Posted 2009-11-18T12:50:37.707

Reputation: 530

Switching to a text mode and back worked for me on Ubuntu 15.10 Mine is a fairly vanilla install and config, and the problem occurred after a regular startup, not after any particular updates that I can recall. – John T – 2016-04-27T23:05:34.650

Switching to a virtual terminal worked in 16.10 as well. Thanks, you just saved med a restart :-) – Kimble – 2017-04-24T18:03:47.023

3restarting Virtual Machine (windows) worked for me. – Champ – 2017-08-22T15:46:07.373

2Is there a permanent fix for this? It happens to me every 15-20 minutes now and switching to virtual terminal fixes it. – Ashwini Chaudhary – 2018-05-24T09:28:39.970

13

from personal experience (Ubuntu 14.04, logitech wireless mouse) :

2 ways to get it working again for a short time 1 - unplugging and replugging the mouse, 2 - alt-F1 to switch to text mode then alt-F7 (or F8) to switch back to graphics

very recently completely removing "mousetweeak" seems to have resolved a particularly nasty case of "no left click"

my problems used to be infrequent and unplugging the mouse would fix it for a few days, but the most recent case had me working the USB plug every 2 minutes.

for now after the above mentioned uninstall - it seems to be working

EDIT: spoke too soon, problem persists

Tjunkie

Posted 2009-11-18T12:50:37.707

Reputation: 431

1Switching to a text mode and back worked for me. Ubuntu 15.10, fairly vanilla instal and config. – John T – 2016-04-27T23:04:27.383

Why did switch to text mode and comes back make it work? OMG! Works perfectly thanks, lol – deFreitas – 2016-05-17T03:19:01.567

2as of Ubuntu 16.04 the switching is done CTRL-alt-F1 / [CTRL]-alt F7 (ctrl needed on the way out of the GUI, optional on the way back) – Frank Nocke – 2016-10-19T00:15:37.917

2

I've had, perhaps a similar issue, thought I would chime in on what I did that seems to have worked. BTW, I'm using a wireless Logitech trackball on Ubuntu 10.04.

My issue was that the left button on my Logitech wireless trackball mouse would give me lots of problems. Sometimes it would be severe, sometimes barely noticeable. Clicking would sometimes register as a left click, sometimes register as a double click, and many, many times it would fail to register at all. Dragging and dropping and copy and paste became almost impossible. I could almost never manage to highlight text. In short, life with this mouse became unbearable. This problem affected all programs and windows.

I assumed the problem was with the mouse, even though I've only had it since June or July this year (2010). I focused my efforts on trying to fix the mouse. In the end, I essentially gimped up this mouse trying to make it work, but to no avail.

Finally, I stopped using the mouse completely, and switched to a wired trackball that had never previously given me any problems before. However, after using the wired mouse for a few days, I started to notice that it was having the exact same problem. So, then I realized that in all likelihood, this is a problem with 10.04.

After looking around online for some time trying to come across a solution that worked for me, I stumbled across the post above about using metacity --replace. So, based on that, I was pretty certain that Compiz was the root of my mouse issues. After playing around with Ubuntu Tweak, one of the menu options, "Enable Metacity's compositing feature", mentioned that I had to manually disable visual effects in appearance.

So, after disabling Visual Effects (System>Preferences>Appearance>Visual Effects then select None), the mouse is suddenly working again. I don't know if this will be a permanent solution or if it will start giving me problems again, but I thought I'd mention this solution.

Brian

Posted 2009-11-18T12:50:37.707

Reputation: 21

2

From the bug mentioned by Joe above (emphasis mine):

So here the bug and workarounds.

For example on youtube, whilst it recognises my mouse moving over various buttons, actual mouse clicks are not recognised. I can navigate using 'tab' but this is very painful. I can also right click. The problem doesn't occur with other flash players, e.g. swfdec-mozilla.

WORKAROUND 1: Disable compiz
WORKAROUND 2: Remove flashplugin-nonfree / flashplugin-installer and install from adobe
WORKAROUND 3: Open a terminal and enter:

   gksudo gedit /usr/lib/nspluginwrapper/i386/linux/npviewer

Then add: export GDK_NATIVE_WINDOWS=1 before the last line of text.

Note: The only workaround for Chrome/Chromium users is to disable compiz.

quack quixote

Posted 2009-11-18T12:50:37.707

Reputation: 37 382

1

If you are running the gnome variant or the new unity that used gnome as the default:

alt + f2
gnome-shell --replace

Happened to me while experimenting with a graphics API (vulkan). I have seen it happen other time as well

Adnan Y

Posted 2009-11-18T12:50:37.707

Reputation: 191

1

It would happen to my ubuntu 10.04 every now and then too, and it only worked again after I clicked the touchpad button. However, it has never happened again ever since I changed my touchpad setting. I deactivated the tap-click of my touchpad, and now the "real" mouse never stalls.

wawan eko yulianto

Posted 2009-11-18T12:50:37.707

Reputation: 11

1

Mostly this may be reason :

The bug is well known. Look for example here:

Bug Link

A common workaround is exporting GDK_NATIVE_WINDOWS=1 before running the application with click problems.

(source)

joe

Posted 2009-11-18T12:50:37.707

Reputation: 11 615

0

Did not have any mouse issues until a recent update manager update. Suspected my wireless mouse, but had the same effects with a regular wired mouse: left mouse button would work on and off.

Reinstalling the xorg mouse input drivers which were already installed by default (xserver-xorg-input-mouse, xserver-xorg-input-evdev) did not change anything, but, seeing how many mouse drivers were installed by default made me wonder: will I ever use a Synaptics Touchpad on this desktop? I realized this is not Gentoo, and, many unnecessary drivers are installed by default to Ubuntu work across a wide hardware spectrum.

What solved my issue was to uninstall all xorg mouse drivers for devices which were very unlikely to ever be connected to my system. As soon as the superfluous drivers were uninstalled, my mouse clicks were back to normal.

I would also like to add that I have never needed the workaround mentioned above, i.e. setting the GDK_xxxxx environment variable. I have been running Compiz and Chrome on this system without ever needing this workaround. The only application that does not appear to like the mouse in conjunction with Compiz is Blender3d.....mouse clicks in this application are off by some 20 pixels vertically.

Hans

Posted 2009-11-18T12:50:37.707

Reputation: 1