LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 01-05-2006, 04:16 PM   #1
lilili
Member
 
Registered: Jan 2006
Location: SantaBarbara
Distribution: Slackware 12.1
Posts: 196

Rep: Reputation: 30
Logitech® MX™700?


hi everyone
i have Logitech® MX™700, and it seems that not all the buttons are functioning. i can not use the wheel either.
I tried to look for linux driver in the logitech site but they don't have it
How can resolve this ?
Thank You
 
Old 01-05-2006, 05:21 PM   #2
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
Quick google search found this. http://docs.tenshu.net/Logitech-MX-Duo-mini-HOWTO/ . It shows the info needed in your xorg.conf file.

Hope this helps.
Brian1
 
Old 01-05-2006, 07:46 PM   #3
lilili
Member
 
Registered: Jan 2006
Location: SantaBarbara
Distribution: Slackware 12.1
Posts: 196

Original Poster
Rep: Reputation: 30
Thanks dude very very helpful
I follow the instruction and get the wheel to work but my thumb button do not properly
My forward doesn't do anything while backward acts like left click
when I follow the instruction to
pointer = 1 2 3 6 7 8 9 10 4 5 in .Xmodmap and xmodmap ~/.Xmodmap
it says
xmodmap: /root/.Xmodmap:1: bad number of buttons, must have 14 instead of 10
xmodmap: 1 error encountered, aborting.

so I add
pointer = 1 2 3 6 7 8 9 10 4 5 11 12 13 14 but the thumb button do not work like I want to

Thank You

Last edited by lilili; 02-12-2006 at 04:27 PM.
 
Old 02-12-2006, 04:30 PM   #4
lilili
Member
 
Registered: Jan 2006
Location: SantaBarbara
Distribution: Slackware 12.1
Posts: 196

Original Poster
Rep: Reputation: 30
I try imwheel but still no luck
this is my xorg.conf
Section "InputDevice"
Identifier "Mouse1"
# Identifier "Logitech MX700 Mouse"
Driver "mouse"
option "Dev Name" "PS2++ Logitech MX Mouse"
option "CorePointer"
# option "Protocol" "evdev"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/psaux"
# Option "Buttons" "7"
# Option "ZAxisMapping" "6 7"
#
Option "ZAxisMapping" "9 10"
Option "Buttons" "9"
Option "Resolution" "800"
Option "Emulate3Buttons" "no"
EndSection
Thanks

Last edited by lilili; 02-12-2006 at 04:40 PM.
 
Old 02-12-2006, 05:21 PM   #5
simcox1
Member
 
Registered: Mar 2005
Location: UK
Distribution: Slackware
Posts: 794
Blog Entries: 2

Rep: Reputation: 30
How many buttons have you got? Left/right, wheel + two side buttons? If so, in xorg.conf put:

---------------------------------

Option "Protocol" "ExplorerPS/2"
Option "ZAxisMapping" "6 7"

-----------------------------------
And in /etc/X11/xinit/.Xmodmap put:

pointer = 1 2 3 6 7 4 5

At the moment you've got "buttons" "9" but with zaxismapping "9 10".

Don't use the "emulate3buttons" option in xorg.conf.

If you've got more buttons it might be more complicated.
 
Old 02-12-2006, 05:36 PM   #6
lilili
Member
 
Registered: Jan 2006
Location: SantaBarbara
Distribution: Slackware 12.1
Posts: 196

Original Poster
Rep: Reputation: 30
I'm using logitech mx710.
My buttons are left , right , wheel , thumb 1, thumb2, up, down , and 1 other that works as alt + tab in windows

I try to use your config but my wheel turn to be forward and backward.
 
Old 02-12-2006, 06:21 PM   #7
j79zlr
Member
 
Registered: Dec 2005
Location: Chicago
Distribution: Gentoo, Slackware, and FreeBSD
Posts: 38

Rep: Reputation: 15
Why are you running X as root, that is a no-no.

You have the same mouse that I do, you have 11 buttons as detected by xorg 6.9. All you need to do is this:

.Xmodmap
Code:
pointer = 1 2 3 4 5 8 9 6 7 10 11
mouse section of xorg.conf

Code:
Section "InputDevice"
    Identifier  "Mouse1"
    Driver      "mouse"
    Option "Protocol"    "ExplorerPS/2"
    Option "Device"      "/dev/mouse"
EndSection
You would have to set up imwheel to map the extra alt+tab button if you want, I personally don't use it.
 
Old 02-12-2006, 07:05 PM   #8
lilili
Member
 
Registered: Jan 2006
Location: SantaBarbara
Distribution: Slackware 12.1
Posts: 196

Original Poster
Rep: Reputation: 30
Thanks dude, now it all works.
Which part of imwheelrc should I edit , if I want to make alt+tab button to open a konsole?
How do you get 11? left, right, 2 thumbs, 3 wheel, up, down, alt+tab, and 1 more?
How do you come up with pointer = 1 2 3 4 5 8 9 6 7 10 11

I add
"^konqueror$"
None, Up, Control_L|Page_Up
None, Down, Control_L|Page_Down

but konqueror still doesn't recognize thumb button. Any idea?

Thank You

Last edited by lilili; 02-12-2006 at 07:30 PM.
 
Old 02-12-2006, 07:31 PM   #9
j79zlr
Member
 
Registered: Dec 2005
Location: Chicago
Distribution: Gentoo, Slackware, and FreeBSD
Posts: 38

Rep: Reputation: 15
Since you are already using imwheel, check with xev to see which button is used for the menu button on the mouse. All you should need in imwheelrc for everything to work is this:

Code:
"(null)"
None, Button6, Alt_L|Left
None, Button7, Alt_L|Right

".*"
None, Button6, Alt_L|Left
None, Button7, Alt_L|Right
I believe that is correct, I haven't used imwheel in a while.

I am not sure why they are detected as 11 buttons, this was part of the change in 6.9
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
£700 laptop advice edgefield Linux - Laptop and Netbook 3 03-11-2005 05:14 AM
the best protocol for Logitech MX 700? spuzzzzzzz Linux - Hardware 1 08-28-2004 02:51 AM
Synaptics touchpad + USB Logitech MX 700, wheel not working under 2.6 (Mdk 10.0) stevelinton Linux - Laptop and Netbook 0 04-06-2004 09:01 AM
cannot get my logitech mx 700 to work (very close tho!) dave_blob Linux - Hardware 6 02-11-2004 01:08 AM
Post 700 Robert0380 General 6 08-13-2003 03:04 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 03:44 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration