LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   mouse issues with distros (https://www.linuxquestions.org/questions/linux-general-1/mouse-issues-with-distros-371930/)

chemdawg 10-11-2005 11:17 AM

mouse issues with distros
 
not sure where this belongs so i'll put it here. i have a logitech mx700 mouse that has two thumb buttons that, in mandriva, they are used to go to the previous and next web pages, respectively. actually, in mandriva, all the buttons function like they're supposed to. now, in suse, debian, fedora, slackware, these buttons don't work at all. i bet there's a way to configure that, i just dont' know how. i bet it has to do with the xorg.conf file - where you can define the number of buttons your mouse has and define which ones do z axis mapping. can someone please give more insight on how to configure this? thanks!

djortz 10-11-2005 11:55 AM

In XF86Config add the option Buttons and change ZAxisMapping to "6 7"
Code:

Section "InputDevice"
  Driver      "mouse"
  Identifier  "Mouse[1]"
  Option      "Device" "/dev/input/mice"
  Option      "Name" "Logitech USB RECEIVER"
  Option      "Protocol" "explorerps/2"
  Option      "Vendor" "Sysp"
  Option      "Buttons" "7"
  Option      "ZAxisMapping" "6 7"
EndSection


I've created a document: ~/.kde/Autostart/mouse.sh
Code:

/usr/X11R6/bin/xmodmap -e "pointer = 1 2 3 6 7 4 5"
Perhaps that could be done with .Xmodmap as well

chemdawg 10-11-2005 12:56 PM

i tried exactly what you said (except for that last part), and what happened is my thumb buttons acted like a scroll wheel. will that last part fix that?

djortz 10-11-2005 02:34 PM

I think you've figured out by now that the last part does fix that
It actually replaces the buttons 4&5 for 6&7

chemdawg 10-11-2005 10:29 PM

wow - that worked like a charm! thanks for that reply!

chemdawg 10-24-2005 02:10 PM

still doesn't work with Debian/Slackware
 
OK this fixed the problem for my Mandriva and Suse, but not for Debian and Slackware. Any ideas why??? the only think i noticed is that the Debian uses an XF86Config-4 file rather than a xorg.conf. What does it matter?

djortz 10-24-2005 02:15 PM

Well, my first guess would be that you don't use KDE on Debian and Slackware. I bet it will work when you run ~/.kde/Autostart/mouse.sh manually

chemdawg 10-24-2005 02:51 PM

Actually I do run KDE on both. And I should correct myself - it does work with Slackware 10.2, but not with Debian. I will try running it manually and see what happens.


All times are GMT -5. The time now is 12:29 PM.