Hi, I have Debian that I just downloaded and installed. I think it's version 4. But I have everything working other than I can't get the vertical scroll to work on the touchpad. It's the scroll so you can just slide your finger vertically on the right side of the pad and it should scroll the window you're in. I googled it and found something that said I needed to modify the /etc/X11/xorg.conf.

Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "on"
Option "SHMConfig" "on"
Option "LeftEdge" "85"
Option "RightEdge" "1010"
Option "TopEdge" "85"
Option "BottomEdge" "730"
Option "FingerLow" "25"
Option "FingerHigh" "30"
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
Option "VertScrollDelta" "100"
Option "MinSpeed" "0.10"
Option "MaxSpeed" "0.60"
Option "AccelFactor" "0.2"
Option "HorizScrollDelta" "0"
Option "UpDownScrolling" "1"

EndSection


The how-to I found actually told me to completely replace this section with something else. I did that and restarted and my X Windows wouldn't start anymore so I switched it back. I looked through what the guy was wanting me to do and the only thing I could see that mattered was the UpDownScrolling=1. So I just added it to my existing statements at the end (that I put above.) I restarted. X-Windows does start, but the scroll still doesn't work. Any ideas?

David