LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Mandriva
User Name
Password
Mandriva This Forum is for the discussion of Mandriva (Mandrake) Linux.

Notices


Reply
  Search this Thread
Old 04-13-2005, 10:52 AM   #1
simcox1
Member
 
Registered: Mar 2005
Location: UK
Distribution: Slackware
Posts: 794
Blog Entries: 2

Rep: Reputation: 30
logitech cordless buttons


I dont suppose anyone can help with this. I've got a new mouse which works fine except for the extra buttons. The scroll wheel can scroll sideways apparently and also zoom in. Otherwise it works fine. It's called Logitech Cordless Click! Plus rechargeable. I found a file in rpmdrake called lmctl-0.2-1mdk which is something to do with getting extra buttons to work with logitech mice. Assuming all I need to do is download it, it hasn't altered anything. It's a nice mouse by the way, and worked straight away without any problems.
 
Old 04-13-2005, 11:17 AM   #2
munthe
Member
 
Registered: Apr 2005
Location: Denmark
Distribution: Gentoo
Posts: 38

Rep: Reputation: 15
Hey, here's is a great guide to get the ekstra buttons work,
http://www.linux-gamers.net/modules/...p?articleid=46
also see here,
http://gentoo-wiki.com/HOWTO_Mouse_Nav_Buttons
write hereif it work

p.s I found this with a simple google..
 
Old 05-15-2005, 11:58 AM   #3
rgawenda
LQ Newbie
 
Registered: Mar 2005
Location: Ourense, Spain, EU
Distribution: Gentoo, Debian, Kubuntu
Posts: 29

Rep: Reputation: 15
I've got this mouse in a "Cordless Desktop LX 700" bundle, and it seems that is the same as the MX700 model. Well, I did configure it (surely not perfect) to get the bidirectional (wheel+tilt) as:
Code:
Section "InputDevice"

    Identifier                  "Logitech MX700-USB"
    Driver "mouse"
    Option "CorePointer"
    Option "Protocol"           "evdev"
    Option "Buttons"            "10"
    Option "ButtonNumber"       "10"
    Option "ZAxisMapping"       "9 10 7 6"
    Option "Resolution"         "800"
    Option "Device"             "/dev/input/event2"
    Option "Dev Name"           "Logitech USB Receiver"
    Option "Dev Phys"           "usb-0000:00:02.0-1/input1"

EndSection
and
Code:
 xmodmap -e "pointer = 1 2 3 9 10 6 7 8 4 5"
But still digging to also set the thumbbuttons to work.
 
Old 05-21-2005, 10:36 PM   #4
Dave_Van
LQ Newbie
 
Registered: Jan 2004
Location: Alexandria, VA
Distribution: Mandriva 2006- AMD 64bit
Posts: 14

Rep: Reputation: 0
Scripting MX700 butons

I'm close to getting this to work with my MX700 on the USB port. Mandriva 2005 LE 64-bit

from /etc/X11/Xorg.conf

Code:
Section "InputDevice"
    Identifier "Logitech MX700"
    Driver "mouse"
    Option "Protocol" "ExplorerPS/2"
    Option "Device" "/dev/input/mice"
    Option "ButtonNumber" "7"
    Option "Buttons" "7"
    Option "ZAxisMapping" "6 7"
EndSection

Section "ServerLayout"
    Identifier "layout1"
    InputDevice "Keyboard1" "CoreKeyboard"
    InputDevice "Logitech MX700" "CorePointer" 
    Screen "screen1"
EndSection
===========================

I can get everything to work my typing in my shell:

[dave@localhost home]$ xmodmap -e "pointer = 1 2 3 6 7 4 5"

However, I can't get this script to stick! After looking through the forums, I so far have:

/etc/X11/xinit/xinitrc :
xmodmap -e "pointer = 1 2 3 6 7 4 5"

and

/etc/X11/xinit/xinitrc.d/mouse_buttons :
xmodmap -e "pointer = 1 2 3 6 7 4 5"

and

/etc/X11/Xmodmap, as well as /home/dave/.Xmodmap
pointer = 1 2 3 6 7 4 5

What am I missing? Any help would be very much appreciated!
 
Old 05-22-2005, 01:34 PM   #5
simcox1
Member
 
Registered: Mar 2005
Location: UK
Distribution: Slackware
Posts: 794

Original Poster
Blog Entries: 2

Rep: Reputation: 30
I dont think my mouse is exactly the same as the mx700 but it's similar. It dosen't have the small buttons above and below the wheel. Just the one on top. Would your set-up work using ps/2?
 
Old 05-22-2005, 03:46 PM   #6
munthe
Member
 
Registered: Apr 2005
Location: Denmark
Distribution: Gentoo
Posts: 38

Rep: Reputation: 15
# Dave_Van

What exactly doesn't work? Try 'xev'.

I also have a mx700 mouse, and it hat 10 bottoms, why are you type in that it only hat 7?

Last edited by munthe; 05-22-2005 at 03:49 PM.
 
Old 05-22-2005, 09:44 PM   #7
Dave_Van
LQ Newbie
 
Registered: Jan 2004
Location: Alexandria, VA
Distribution: Mandriva 2006- AMD 64bit
Posts: 14

Rep: Reputation: 0
Thanks for replies. Technically, I have 10 buttons on the MX700, but I only care about 7.

My specific question is how can I best automaticlly re-map the buttons (xmodmap -e "pointer = 1 2 3 6 7 4 5"). By default in my system, the scroll wheel is the ¨back¨ function, making surfing and scrolling a real pain.
 
Old 05-27-2005, 01:18 PM   #8
rgawenda
LQ Newbie
 
Registered: Mar 2005
Location: Ourense, Spain, EU
Distribution: Gentoo, Debian, Kubuntu
Posts: 29

Rep: Reputation: 15
Quote:
Originally posted by Dave_Van
My specific question is how can I best automaticlly re-map the buttons (xmodmap -e "pointer = 1 2 3 6 7 4 5"). By default in my system, the scroll wheel is the ¨back¨ function, making surfing and scrolling a real pain.
This'll be about the flavour you choosed for your desktop, I do it this way this in KDE:
Code:
rgawenda@dvn3:~$ cat .kde/Autostart/misc.sh
/usr/X11R6/bin/xmodmap ~/.Xmodmap
eval "$(gpg-agent --daemon)"
 
  


Reply



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
Logitech Cordless Mouse kryckan Linux - Hardware 0 09-14-2004 05:14 AM
Logitech cordless ullfrigg Linux - Hardware 2 12-20-2003 08:22 AM
Logitech® Cordless Desktop® Optical --- How to use "The Extra Buttons" in Linux lhj Linux - Hardware 12 10-09-2003 07:19 PM
logitech cordless desktop chrisbro Linux - Hardware 0 05-27-2003 04:37 AM
Logitech Cordless Neur0tek Linux - Hardware 0 05-09-2002 10:16 AM

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

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

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