LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 04-11-2005, 06:40 AM   #1
the_clown
Member
 
Registered: Mar 2005
Posts: 33

Rep: Reputation: 15
touchpad scrolling, odd problem


I have an emachine laptop and have gotten my touchpad working. However, scrolling (it is where you move your finger up or down the right side of the touchpad) does not work, by default. The strange part is, when I plug in a usb wireless mouse, the touchpad will gain the scrolling abilities, until I reboot. What can I do to allow it to scroll by default? Many thanks.

---
edit
---

I have the synaptics driver installed, and this is my xorg.conf file:

Code:
# XFree86 4 configuration created by pyxf86config

Section "ServerLayout"
   Identifier     "Default Layout"
   Screen      0  "Screen0" 0 0
   InputDevice    "Synaptics" "AlwaysCore"
   InputDevice    "Mouse0" "CorePointer"
   InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
# RgbPath is the location of the RGB database.  Note, this is the name of the
# file minus the extension (like ".txt" or ".db").  There is normally
# no need to change the default.

# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.

   RgbPath      "/usr/X11R6/lib/X11/rgb"
   FontPath     "unix/:-1"
EndSection

Section "Module"
   Load  "dbe"
   Load  "extmod"
   Load  "fbdevhw"
   Load  "glx"
   Load  "record"
   Load  "freetype"
   Load  "type1"
   Load  "dri"
   Load  "synaptics"
EndSection

Section "InputDevice"
# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
#   Option   "Xleds"      "1 2 3"

# To disable the XKEYBOARD extension, uncomment XkbDisable.
#   Option   "XkbDisable"

# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a non-U.S.
# keyboard, you will probably want to use:
#   Option   "XkbModel"   "pc102"
# If you have a US Microsoft Natural keyboard, you can use:
#   Option   "XkbModel"   "microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#   Option   "XkbLayout"   "de"
# or:
#   Option   "XkbLayout"   "de"
#   Option   "XkbVariant"   "nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#   Option   "XkbOptions"   "ctrl:swapcaps"
# Or if you just want both to be control, use:
#   Option   "XkbOptions"   "ctrl:nocaps"
#
   Identifier  "Keyboard0"
   Driver      "kbd"
   Option       "XkbModel" "pc105"
   Option       "XkbLayout" "us"
EndSection

Section "InputDevice"
   Identifier  "Mouse0"
   Driver      "mouse"
   Option       "Protocol" "auto"
   Option       "Device" "/dev/input/mice"
   Option       "ZAxisMapping" "4 5"
   Option       "Emulate3Buttons" "no"
EndSection

Section "InputDevice"
  Identifier    "Synaptics"
  Driver        "synaptics"
  Option        "Device"        "/dev/input/mice"
  Option        "Protocol"      "auto-dev"
  Option        "LeftEdge"      "1700"
  Option        "RightEdge"     "5750"
  Option        "TopEdge"       "1700"
  Option        "BottomEdge"    "4200"
  Option        "FingerLow"     "25"
  Option        "FingerHigh"    "30"
  Option        "VertScrollDelta" "100"
  Option        "MinSpeed"      "0.06"
  Option        "MaxSpeed"      "0.12"
  Option        "AccelFactor" "0.0020"
  Option        "SHMConfig"     "off"
#  Option       "Repeater"      "/dev/ps2mouse"
  Option   "Emulate3Buttons" "yes"
EndSection

Section "Monitor"
   Identifier   "Monitor0"
   VendorName   "Monitor Vendor"
   ModelName    "LCD Panel 1024x768"
   HorizSync    31.5 - 48.5
   VertRefresh  40.0 - 70.0
   Option       "dpms"
EndSection

Section "Device"
   Identifier  "Videocard0"
   Driver      "radeon"
   VendorName  "Videocard vendor"
   BoardName   "ATI Radeon Mobility U1"
EndSection

Section "Screen"
   Identifier "Screen0"
   Device     "Videocard0"
   Monitor    "Monitor0"
   DefaultDepth     16
   SubSection "Display"
      Viewport   0 0
      Depth     16
      Modes    "1024x768" "800x600" "640x480"
   EndSubSection
EndSection

Section "DRI"
   Group        0
   Mode         0666
EndSection

Last edited by the_clown; 04-11-2005 at 05:12 PM.
 
Old 04-12-2005, 09:01 AM   #2
hw-tph
Senior Member
 
Registered: Sep 2003
Location: Sweden
Distribution: Debian
Posts: 3,032

Rep: Reputation: 58
Chances are you have an ALPS touchpad, not a Synaptics brand one, since eMachines have shipped a lot of portables with this kind of hardware. The ALPS touchpads require a kernel <= 2.6.11 or the ALPS patch that comes with the Synaptics driver package. Many distributions ship their kernels with this patch applied so it might only be a case of configuring X correctly. Refer to README.alps in the Synaptics package.

If you want more information on configuring and using an ALPS touchpad, you can refer to the R3000 Wiki ALPS page.


Håkan
 
Old 04-12-2005, 07:10 PM   #3
the_clown
Member
 
Registered: Mar 2005
Posts: 33

Original Poster
Rep: Reputation: 15
Okay, after also posting in the gentoo forums, I got it working. Its not an alps, it really is a synaptics. The problem was evdev was not configured in the kernel, so setting my system to load the evdev module at boot fixed my problem.
 
  


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
Problem with touchpad scrolling darknails Linux - Laptop and Netbook 2 02-12-2006 09:12 AM
Scrolling using Touchpad mousie Linux - Laptop and Netbook 5 09-10-2005 08:26 AM
can you enable touchpad scrolling in suse 9.1 pro? ojasom SUSE / openSUSE 1 10-30-2004 10:09 PM
hard scrolling vs soft scrolling (console) haxcess Linux - General 2 08-30-2004 12:17 AM
scrolling problem rsingh Linux - Newbie 20 10-04-2003 08:12 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 06:30 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