![]() |
ubuntu.com - launchpad.net - ubuntu help
|
|
|||||||
|
Tutorials & Tips The place to find Ubuntu related Tips & Tricks. |
|
|
Thread Tools | Display Modes |
|
|
|
|
#1 |
|
Way Too Much Ubuntu
![]() Join Date: Apr 2007
Location: Southwest Idaho
Beans: 264
|
HOWTO: Get 7 working buttons on MX510
This works for my MX510 running fiesty 7.04
Users report that the following mouse devices also work: *LogiTech G5 *LogiTech wireless Media Play *MX600 cordless laser *MX610 laser backup xorg.conf naming the backup with an identifier such as date, name, pets name... Code:
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.<my_backup_name> Code:
sudo gedit /etc/X11/xorg.conf the red indicates code that makes this all work Code:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto"
Option "Buttons" "7"
Option "ZAxisMapping" "4 5"
Option "ButtonMapping" "1 2 3 6 7 4 5 6"
EndSection
the ZAxixMapping tells the wheel to emulate the up/down scroll/cruise buttons the order of the mapping is crucial - see below save your changes Code:
ctrl-s Code:
ctrl-q Code:
Ctrl+Alt+Backspace That's it! Done! Now, test the changes Code:
login Test all of your buttons. The only ones that don't work (for me) are the second button from the bottom of the wheel and pressing the wheel to get smooth scrolling, but I'm working on that one. The button mapping is as follows: Code:
1 - left click 2 - middle click/scroll up/scroll down 3 - right click 4 - button above the wheel: scroll up 5 - button directly below the wheel: scroll down 6 - lower side button: go back 7 - upper side button: go forward 8 - the zen button: nothingness If this is a dismal failure then restore your backup. You did make a backup, didn't you? Code:
sudo cp /etc/X11/xorg.conf <my_backup_name> /etc/X11/xorg.conf bobland Last edited by BobLand; July 13th, 2007 at 10:56 AM.. |
|
|
|
|
|
#2 |
|
Just Give Me the Beans!
![]() Join Date: Feb 2006
Beans: 65
|
Re: HOWTO: Get 7 working buttons on MX510
I can report that this howto works to enable the Back/Forward buttons on the Logitech G5 mouse as well with no modifications.
Thank you very much for your contribution, BobLand. |
|
|
|
|
|
#3 |
|
A Carafe of Ubuntu
![]() Join Date: Jun 2007
Beans: 121
|
Re: HOWTO: Get 7 working buttons on MX510
worked perfect for me also!
thanks! |
|
|
|
|
|
#4 |
|
First Cup of Ubuntu
![]() Join Date: Jul 2007
Beans: 2
|
Re: HOWTO: Get 7 working buttons on MX510
Worked well on a Logitech wireless "Media Play" mouse too. Not interested in all the media buttons themselves but sorely missed the forward and backward buttons. Now they work great!
Thanks!!! |
|
|
|
|
|
#5 |
|
First Cup of Ubuntu
![]() |
Re: HOWTO: Get 7 working buttons on MX510
Thanks mate, now all my buttons work, i have an mx510 so now i can finally use it for what its worth
However, you are right about button 4 becoming button 6 when reaching the top of the page. very annoying, but i hardly use those buttons anymore due to the fact they are worn out Thanks again for a very good guide
__________________
Thor the mighty, Thor the brave. Crushing all enemies in his way! |
|
|
|
|
|
#6 |
|
First Cup of Ubuntu
![]() Join Date: Jul 2007
Beans: 3
|
Re: HOWTO: Get 7 working buttons on MX510
When i follow this guide my X wont start again.
Is there other things you can try to make it work also? (kinda new to ubuntu) |
|
|
|
|
|
#7 | |
|
Tall Cafè Ubuntu
![]() Join Date: May 2007
Location: Charlotte, NC, USA
Beans: 2,541
Ubuntu 9.10 Karmic Koala
|
Re: HOWTO: Get 7 working buttons on MX510
Quote:
I followed your guide and it did get my side buttons working for forward/back. None of the other buttons (aside from left/right click) do anything. What am I doing wrong here?
__________________
AMD ATHLON 64 X2 4800+ @ 2.6 GHz - Ubuntu Jaunty 9.10 MSI K8N Neo4 Platinum/SLI - BIOS 3.11 - 4 GB Curcial DDR MSI 8800 GT -- Plextor PX-880SA -- Pioneer DVR-115D 2x 74 GB WD Raptors SATA , 2x 250 GB Hitachi SATA (Data) |
|
|
|
|
|
|
#8 |
|
First Cup of Ubuntu
![]() Join Date: Jun 2007
Beans: 3
|
Re: HOWTO: Get 7 working buttons on MX510
Also works with MX600 laser cordless mouse. Thanks!
|
|
|
|
|
|
#9 |
|
Way Too Much Ubuntu
![]() Join Date: Apr 2007
Location: Southwest Idaho
Beans: 264
|
Re: HOWTO: Get 7 working buttons on MX510
Coopish,
When you say your X wont start, are you forced on the command line? What are you doing to recover? If you have the patience, restore the InputDevice section in xorg.conf and change each parameter one at a time until you find the line that doesn't work. I would start in order, that is, Code:
Option "Protocol" "auto" Also try the process I outlined below to verify your buttons are read correctly. Are you sure that nothing else was changed in your xorg.conf? This is a very fussy file and the slightest change can put you in the dark ages. Make sure you have a clean, unchanged, original xorg.conf lying around somewhere. Never touch it, just copy it. Create a backup directory Code:
sudo mkdir /etc/X11/backed_up_original_conf <or whatever name suits you> Code:
sudo cp /etc/X11/xorg.conf /etc/X11/backed_up_original_conf <whatever>/xorg.conf.original Let me know how this works for you. crjackson Try this. Open a terminal and type in Code:
xev Press the buttons that are not working. In the terminal you will see a lot of code that displays events. You want to find the ButtonPress event, not the ButtonRelease event. Look for the code in red Code:
ButtonPress event, serial 29, synthetic NO, window 0x4a00001,
root 0x156, subw 0x4a00002, time 951412529, (41,48), root:(1491,96),
state 0x10, button 1, same_screen YES
If this still doesn't work, let me know and we'll try something else. bobland |
|
|
|
|
|
#10 | |
|
Tall Cafè Ubuntu
![]() Join Date: May 2007
Location: Charlotte, NC, USA
Beans: 2,541
Ubuntu 9.10 Karmic Koala
|
Re: HOWTO: Get 7 working buttons on MX510
Bobland
Quote:
All other buttons work as normal.
__________________
AMD ATHLON 64 X2 4800+ @ 2.6 GHz - Ubuntu Jaunty 9.10 MSI K8N Neo4 Platinum/SLI - BIOS 3.11 - 4 GB Curcial DDR MSI 8800 GT -- Plextor PX-880SA -- Pioneer DVR-115D 2x 74 GB WD Raptors SATA , 2x 250 GB Hitachi SATA (Data) |
|
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|