how to scroll and touchpad setup on dell xps generation 2

The following will add the these features to the touchpad
Features

  • Movement with adjustable, non-linear acceleration and speed.
  • Button events through short touching of the touchpad.
  • Double-Button events through double short touching of the
    touchpad.
  • Dragging through short touching and holding down the finger on the
    touchpad.
  • Middle and right button events on the upper and lower corner of
    the touchpad.
  • Vertical scrolling (button four and five events) through moving
    the finger on the right side of the touchpad.

  • The up/down button sends button four/five events.
  • Horizontal scrolling (button six and seven events) through moving
    the finger on the lower side of the touchpad.
  • The multi-buttons send button four/five events, and six/seven
    events for horizontal scrolling.
  • Adjustable finger detection.
  • Multifinger taps: two finger for middle button and three finger
    for right button events. (Needs hardware support. Not all models
    implement this feature.)
  • Run-time configuration using shared memory. This means you can
    change parameter settings without restarting the X server.

I used [URL=http://w1.894.telia.com/~u89404340/touchpad/]Synaptics TouchPad driver for XOrg/XFree86[/URL]

  1. need to have some settings on the kernel
  2. cd /usr/src/linux
    make menuconfig

  3. set Event interface
    Device Drivers --->Input device support ---> <*> Event interface
  4. compile the kernel
  5. [url=http://web.telia.com/~u89404340/touchpad/files/synaptics-0.14.3.tar.bz2]download the driver[/url]
    wget http://web.telia.com/~u89404340/touchpad/files/synaptics-0.14.3.tar.bz2
  6. decompress
  7. tar xvjf synaptics-0.14.3.tar.bz2

  8. compile and install
  9. make && make install

  10. edit /etc/X11/xorg.conf and make sure you have:

  11. Section "Module"
    Load "dbe" # Double-Buffering Extension
    # Load "v4l" # Video for Linux
    Load "extmod"
    Load "type1"
    Load "freetype"
    Load "synaptics" #THIS LINE FOR THE TOUCHPAD DRIVER
    Load "glx" # 3D layer
    EndSection

  12. add this

  13. Section "InputDevice"
    Identifier "SynapticsMouse1"
    Driver "synaptics"
    Option "Device" "/dev/input/mouse0"
    Option "Device" "/dev/psaux"
    Option "Protocol" "auto-dev"
    Option "LeftEdge" "120"
    Option "RightEdge" "830"
    Option "TopEdge" "120"
    Option "BottomEdge" "650"
    Option "FingerLow" "13"
    Option "FingerHigh" "14"
    Option "MaxTapTime" "180"
    Option "MaxTapMove" "110"
    Option "MaxDoubleTapTime" "210"
    Option "TapTime" "10"
    # Option "FastTaps" "off"
    Option "EmulateMidButtonTime" "1"
    # Option "VertScrollDelta" "20"
    # Option "HorizScrollDelta" "20"
    Option "MinSpeed" "0.5"
    Option "MaxSpeed" "0.75"
    Option "AccelFactor" "0.085"
    # Option "EdgeMotionMinSpeed" "200"
    # Option "EdgeMotionMaxSpeed" "200"
    # Option "UpDownScrolling" "1"
    # Option "CircularScrolling" "1"
    # Option "CircScrollDelta" "0.1"
    # Option "CircScrollTrigger" "2"
    # Option "CoastingSpeed" "1"
    Option "SHMConfig" "on"
    EndSection

  14. make sure you add InputDevice "SynapticsMouse1" "AlwaysCore"

  15. Section "ServerLayout"
    Identifier "layout1"
    InputDevice "Keyboard1" "CoreKeyboard"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "SynapticsMouse1" "AlwaysCore"
    Screen "screen1"
    EndSection

*attached is the complete xorg.conf