Difference between revisions of "Bugs/5.3.1DVD"


From Knoppix Documentation Wiki
Jump to: navigation, search
Line 38: Line 38:
 
         Option          "Emulate3Buttons"      "on"
 
         Option          "Emulate3Buttons"      "on"
 
EndSection
 
EndSection
 
+
# save and exit gui...(i'm not sure if this is the most straightforward way)
 
+
$ sudo init 2
 +
# press <Enter> and start gui
 +
# init 5
 
</pre>
 
</pre>

Revision as of 00:16, 25 April 2008

2008.04.24 - Touchpad very slow!!! 1st off thanks to everyone who contributed to knoppix. On to the matter at hand. Same laptops running > =5.1 were used as reference. Temporary solution: edit /etc/X11/xorg.conf

# to find touchpad 
$python /usr/bin/hal-device-manager
# found alps glidepoint on /dev/input/event3
# edit /etc/X11/xorg.conf 
$sudo vi /etc/X11/xorg.conf
# insert the following 
        InputDevice "AlpsGlide" "SendCoreEvents"
Section "InputDevice"
        Driver          "synaptics"
        Identifier      "AlpsGlide"
        Option          "Device"                "/dev/input/event3"
        Option          "Protocol"              "auto-dev"
        Option          "LeftEdge"              "130"
        Option          "RightEdge"             "840"
        Option          "TopEdge"               "130"
        Option          "BottomEdge"            "640"
        Option          "FingerLow"             "7"
        Option          "FingerHigh"            "8"
        Option          "MaxTapTime"            "180"
        Option          "MaxTapMove"            "110"
        Option          "EmulateMidButtonTime"  "75"
        Option          "VertScrollDelta"       "20"
        Option          "HorizScrollDelta"      "20"
        Option          "MinSpeed"              "0.60"
        Option          "MaxSpeed"              "1.10"
        Option          "AccelFactor"           "0.030"
        Option          "EdgeMotionMinSpeed"    "200"
        Option          "EdgeMotionMaxSpeed"    "200"
        Option          "UpDownScrolling"       "1"
        Option          "CircularScrolling"     "1"
        Option          "CircScrollDelta"       "0.1"
        Option          "CircScrollTrigger"     "2"
        Option          "SHMConfig"             "on"
        Option          "Emulate3Buttons"       "on"
EndSection
# save and exit gui...(i'm not sure if this is the most straightforward way)
$ sudo init 2
# press <Enter> and start gui
# init 5