The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Trackpoint scrolling under Gutsy

    Discussion in 'Linux Compatibility and Software' started by Tailic, Oct 10, 2007.

  1. Tailic

    Tailic Notebook Deity

    Reputations:
    78
    Messages:
    775
    Likes Received:
    0
    Trophy Points:
    30
    I'm having some problems getting my middle button trackpoint scrolling to work. I've been looking at this guide on Thinkwiki for kernel 2.6.11+. Since my kernel version is 2.6.24 I think this is the closest I'll get for my version.

    After examining my xorg.conf I noticed that the trackpoint isn't listed as a device. The guide calls for adding lines that emulate wheel to the but only my keyboard, touchpad, and mouse are listed. Heres my xorg

    PHP:
    # xorg.conf (xorg X Window System server configuration file)
    #
    # This file was generated by dexconf, the Debian X Configuration tool, using
    # values from the debconf database.
    #
    # Edit this file with caution, and see the xorg.conf manual page.
    # (Type "man xorg.conf" at the shell prompt.)
    #
    # This file is automatically updated on xserver-xorg package upgrades *only*
    # if it has not been modified since the last upgrade of the xserver-xorg
    # package.
    #
    # If you have edited this file but would like it to be automatically updated
    # again, run the following command:
    #   sudo dpkg-reconfigure -phigh xserver-xorg

    Section "Files"
    EndSection

    Section 
    "InputDevice"
        
    Identifier    "Generic Keyboard"
        
    Driver        "kbd"
        
    Option        "CoreKeyboard"
        
    Option        "XkbRules"    "xorg"
        
    Option        "XkbModel"    "pc105"
        
    Option        "XkbLayout"    "us"
    EndSection

    Section 
    "InputDevice"
        
    Identifier    "Configured Mouse"
        
    Driver        "mouse"
        
    Option        "CorePointer"
        
    Option        "Device"        "/dev/input/mice"
        
    Option        "Protocol"        "ImPS/2"
        
    Option        "ZAxisMapping"        "6 7"
            
    Option          "Buttons"               "7"
        
    Option        "Emulate3Buttons"    "false"
    EndSection

    Section 
    "InputDevice"
        
    Identifier    "Synaptics Touchpad"
        
    Driver        "synaptics"
        
    Option        "SendCoreEvents"    "true"
        
    Option        "Device"        "/dev/psaux"
        
    Option        "Protocol"        "auto-dev"
        
    Option        "HorizScrollDelta"    "0"
    EndSection

    Section 
    "InputDevice"
        
    Driver        "wacom"
        
    Identifier    "stylus"
        
    Option        "Device"    "/dev/input/wacom"
        
    Option        "Type"        "stylus"
        
    Option        "ForceDevice"    "ISDV4"        # Tablet PC ONLY
    EndSection

    Section 
    "InputDevice"
        
    Driver        "wacom"
        
    Identifier    "eraser"
        
    Option        "Device"    "/dev/input/wacom"
        
    Option        "Type"        "eraser"
        
    Option        "ForceDevice"    "ISDV4"        # Tablet PC ONLY
    EndSection

    Section 
    "InputDevice"
        
    Driver        "wacom"
        
    Identifier    "cursor"
        
    Option        "Device"    "/dev/input/wacom"
        
    Option        "Type"        "cursor"
        
    Option        "ForceDevice"    "ISDV4"        # Tablet PC ONLY
    EndSection

    Section 
    "Device"
        
    Identifier    "Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
        
    Driver        "intel"
        
    BusID        "PCI:0:2:0"
    EndSection

    Section 
    "Monitor"
        
    Identifier    "Generic Monitor"
        
    Option        "DPMS"
    EndSection

    Section 
    "Screen"
        
    Identifier    "Default Screen"
        
    Device        "Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
        
    Monitor        "Generic Monitor"
        
    DefaultDepth    24
        SubSection 
    "Display"
            
    Modes        "1024x768"
        
    EndSubSection
    EndSection

    Section 
    "ServerLayout"
        
    Identifier    "Default Layout"
        
    Screen        "Default Screen"
        
    InputDevice    "Generic Keyboard"
        
    InputDevice    "Configured Mouse"

    # Uncomment if you have a wacom tablet
    #    InputDevice     "stylus"    "SendCoreEvents"
    #    InputDevice     "cursor"    "SendCoreEvents"
    #    InputDevice     "eraser"    "SendCoreEvents"
        
    InputDevice    "Synaptics Touchpad"
    EndSection
    I did search the ubuntu forums but most of the fixes also deal with adding lines to the xorg trackpoint part.

    Did they somehow merge the mouse and trackpoint together under xorg in the newest versions?
     
  2. John B

    John B Notebook Prophet

    Reputations:
    1,767
    Messages:
    4,195
    Likes Received:
    0
    Trophy Points:
    105
    Have you tried adding under Input device --> configured mouse the following lines:

    Option "EmulateWheel" "true"
    Option "EmulateWheelButton" "2"
     
  3. Tailic

    Tailic Notebook Deity

    Reputations:
    78
    Messages:
    775
    Likes Received:
    0
    Trophy Points:
    30
    Thanks, it worked!

    I kinda wish the documentation would of been clearer, oh well.