Ubuntu Forums ubuntu.com - launchpad.net - ubuntu help  

Go Back   Ubuntu Forums > The Ubuntu Forum Community > Forum Archive > Main Support Categories > Desktop Environments
Register Reset Password Forum Help Forum Council Search Today's Posts Mark Forums Read

Hello, Unregistered You are browsing a READ only archive of the main support categories pre 4/21/2008. You will not be able to post or reply any threads in this section.
Ubuntu 9.10 is out!!!

When downloading Ubuntu 9.10 please consider using bittorrent to get your copy of Ubuntu.

The Ubuntu Developers Summit for Lucid Lynx will be held the week of 16-Nov-2009 till 20-Nov-2009 in Dallas, TX USA. Visit the the Ubuntu wiki for more information about UDS and how to participate remotely.

Desktop Environments
Support for your Ubuntu desktop. Including Gnome, KDE and XFCE.

 
Thread Tools Display Modes
Old June 28th, 2006   #1
howipepper
First Cup of Ubuntu
 
Join Date: Oct 2005
Beans: 11
Lost Mouse Wheel!

I installed Dapper Drake last night and all was working wonderfully. I have a Microsoft IntilliMouse with the wheel, and it was detected and worked just fine. This afternoon we had a thunderstorm roll through that killed our power. I wasn't able to shut down the computer safely before the UPS died. When power finally came back on, I rebooted the computer and all seemed fine, until I tried to use the mouse wheel to scroll through some documents. It no longer worked. Everything else works just fine, just no scroll wheel. I tried unplugging the mouse (usb) and plugging back in, no good. I tried shutting down normally and turning the system back on, no good. Here's the kicker, I have an MS wireless usb mouse as well. I plugged that in and it uses the wheel.

More info: I have a Belkin four port KVM switch. I share the keyboard, monitor and mouse with three other computers. The scroll wheel on the "bad" mouse works fine on all of these other computers, just not the one running Ubuntu.

I could probably just reinstall Ubuntu and get the mouse wheel to work again, but that's not the right way to do it. Anyone have any ideas?
howipepper is offline   Reply With Quote
Old June 29th, 2006   #2
howipepper
First Cup of Ubuntu
 
Join Date: Oct 2005
Beans: 11
Re: Lost Mouse Wheel!

Never mind folks. I did a total shutdown of my entire network that was connected to the KVM switch, then "rebooted" the KVM switch and brought the computers back up one at a time. That seems to have fixed the problem.
howipepper is offline   Reply With Quote
Old November 6th, 2006   #3
reidi
5 Cups of Ubuntu
 
Join Date: Oct 2005
Beans: 19
Re: Lost Mouse Wheel with KVM - Solution

Edgy/Dapper
Belkin 2-Port KVM

Problem: Switching between computers using the KVM switch causes the mouse scroll wheel to stop functioning. (With my KVM switching is activated by issuing: ScrollLock, ScrollLock, [port #])

Solution: Per the Belkin Manual: unplug the mouse connector from the KVM for 2-3 seconds, and replace. This should restore full mouse functionality. This worked fine for me. At that point the KB stopped responding. This could well have been because I bumped the KB connector. At any rate the same trick worked for restoring KB input.

Last edited by reidi; November 6th, 2006 at 12:17 AM.. Reason: Clarity
reidi is offline   Reply With Quote
Old January 5th, 2007   #4
jp-newtolinux
First Cup of Ubuntu
 
Join Date: May 2006
My beans are hidden!
Re: Lost Mouse Wheel with KVM - Solution

Quote:
Originally Posted by reidi View Post
Edgy/Dapper
Belkin 2-Port KVM

Problem: Switching between computers using the KVM switch causes the mouse scroll wheel to stop functioning. (With my KVM switching is activated by issuing: ScrollLock, ScrollLock, [port #])

Solution: Per the Belkin Manual: unplug the mouse connector from the KVM for 2-3 seconds, and replace. This should restore full mouse functionality. This worked fine for me. At that point the KB stopped responding. This could well have been because I bumped the KB connector. At any rate the same trick worked for restoring KB input.
reidi,

Thanks. This is the first "fix" that has worked. I've tried all the remapping of buttons etc etc.

Now the question is this: Is there a code-equivalent to the 3-second unplug so I could just put it on the panel?

jp
jp-newtolinux is offline   Reply With Quote
Old February 25th, 2007   #5
StephaneLenclud
5 Cups of Ubuntu
 
Join Date: Feb 2007
Beans: 15
Re: Lost Mouse Wheel!

I have the same problem with 6.10. I'm loosing every mouse button but 1, 2 and 3 after a KVM switch.

I managed to fix that problem on openSuse 10.0 before. Actually on my KVM I have that openSuse 10.0 machine and my Ubuntu 6.10. The mouse keeps working fine for Suse but won't for Ubuntu.

I'm using the same x11 conf than with my Suse machine and tried to make it work by playing with the kernel command line. I tried the following options:
psmouse_proto=imps
psmouse_proto=imps2
psmous_proto=exps

That just won't work so far. There must be a way to fix that though!!!

Last edited by StephaneLenclud; February 25th, 2007 at 09:51 AM..
StephaneLenclud is offline   Reply With Quote
Old February 25th, 2007   #6
StephaneLenclud
5 Cups of Ubuntu
 
Join Date: Feb 2007
Beans: 15
Re: Lost Mouse Wheel!

I found some interesting reading:
http://forums1.itrc.hp.com/service/f...readId=1041517
http://ubuntuforums.org/archive/index.php/t-28643.html

Unloading/reloading psmouse module by running the following command makes the wheel work again on my Ubuntu 6.10, no need to reboot, no need to restart X:
Code:
modprobe -r psmouse
modprobe -a psmouse

Last edited by StephaneLenclud; February 25th, 2007 at 10:33 AM..
StephaneLenclud is offline   Reply With Quote
Old February 25th, 2007   #7
StephaneLenclud
5 Cups of Ubuntu
 
Join Date: Feb 2007
Beans: 15
Re: Lost Mouse Wheel!

Seems to me like all the confusion with proto=imps and KVM mouse not working properly has nothing to do with the drivers or kernel not working. It's just a misunderstanding of how module options are enabled in Ubuntu (6.10 in my case).

You can't specify module options in /etc/modules but rather just the name of the modules that need to be loaded. Using kernel command line would not work for me either.

One way to specify module option is to use /etc/modprobe.d/options.

So in our case all you need to do is:
* Edit and add the following to /etc/modules :

#Load psmouse module
psmouse

* Edit and add the following to /etc/modprobe.d/options

#Make my mouse work with KVM
options psmouse proto=imps

See https://slion.net/twiki/bin/view/Dev...ouse_work_with
StephaneLenclud is offline   Reply With Quote
Old November 5th, 2007   #8
firefly2442
A Carafe of Ubuntu
 
firefly2442's Avatar
 
Join Date: May 2005
Location: USA
Beans: 152
Send a message via AIM to firefly2442 Send a message via MSN to firefly2442
Re: Lost Mouse Wheel!

Quote:
Originally Posted by StephaneLenclud View Post
Seems to me like all the confusion with proto=imps and KVM mouse not working properly has nothing to do with the drivers or kernel not working. It's just a misunderstanding of how module options are enabled in Ubuntu (6.10 in my case).

You can't specify module options in /etc/modules but rather just the name of the modules that need to be loaded. Using kernel command line would not work for me either.

One way to specify module option is to use /etc/modprobe.d/options.

So in our case all you need to do is:
* Edit and add the following to /etc/modules :

#Load psmouse module
psmouse

* Edit and add the following to /etc/modprobe.d/options

#Make my mouse work with KVM
options psmouse proto=imps

See https://slion.net/twiki/bin/view/Dev...ouse_work_with
This worked for me, thanks. For mine, if you try switching and then move the mouse right away it behaves erratically. If you switch and then wait a couple seconds and move the mouse it should be OK. At least that's what happened when I tested it.
__________________
http://www.rivetcode.com
firefly2442 is offline   Reply With Quote

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 02:41 AM.


vBulletin ©2000 - 2009, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project. lingonberry