Results 1 to 4 of 4

Thread: HOWTO: Setup Logitech mx400 USB mouse the easy way in Feisty

  1. #1
    Join Date
    Jun 2005
    Beans
    49

    HOWTO: Setup Logitech mx400 USB mouse the easy way in Feisty

    There seems to be a lot of guides on how to setup a multi-button mouse.
    For the excellent Logitech mx400 USB mouse I found out that all that is really needed is to:

    Code:
    sudo gedit /etc/X11/xorg.conf
    And the edit the correct section like this:

    Code:
    Section "InputDevice"
    	Identifier	"Configured Mouse"
    	Driver		"mouse"
    	Option		"CorePointer"
    	Option		"Device" "/dev/input/mice" 
    	Option		"Protocol" "auto"
    	Option		"ZAxisMapping" "4 5"
    	Option		"Emulate3Buttons" "false"
    	Option		"Buttons" "9" 
    	Option		"ButtonMapping" "1 2 3 6 7"
    EndSection
    Now you should have working forward/back buttons.

    EDIT: Emulate3Buttons should be false
    Last edited by mulperi; October 20th, 2007 at 10:51 PM.
    -=<( Mulperi )>=-

  2. #2
    Join Date
    Apr 2006
    Location
    Montana
    Beans
    Hidden!
    Distro
    Kubuntu Development Release

    Re: HOWTO: Setup Logitech mx400 USB mouse the easy way in Feisty

    Nice how to mulperi

    1. You should use gksudo for graphical programs :

    so ...
    Code:
    gksudo gedit /etc/X11/xorg.conf
    http://www.psychocats.net/ubuntu/graphicalsudo


    2. You do not want to emulate a 3 button mouse. This feature is for two button mice and enables clicking the two buttons at the same time = push scroll wheel down.

    so ...
    Code:
    	Option		"Emulate3Buttons" "false"
    It will not hurt anything (as you can see) by emulating a 3 button mouse.
    There are two mistakes one can make along the road to truth...not going all the way, and not starting.
    --Prince Gautama Siddharta

    #ubuntuforums web interface

  3. #3
    Join Date
    Jun 2005
    Beans
    49

    Re: HOWTO: Setup Logitech mx400 USB mouse the easy way in Feisty

    Thanks for the comments, needed this tip again when I did a clean upgrade to Gutsy
    -=<( Mulperi )>=-

  4. #4
    Join Date
    Jun 2005
    Beans
    54

    Re: HOWTO: Setup Logitech mx400 USB mouse the easy way in Feisty

    Thanks, this works well for ubuntu 11.10

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •