指点设备不保留配置

指点设备不保留配置

重启后,我无法通过触摸板滚动。当我从“系统”>“首选项”>“指点设备”设置垂直滚动时,它一直有效,直到重启。

我的X11当前配置是:

Section "ServerLayout"
    Identifier     "Default Layout"
    Screen 0       "Screen0"        0 0 
    InputDevice "Synaptics Touchpad"
EndSection

Section "Device"
    Identifier "Intel_IEGD-0"
    Driver     "emgd"
    VendorName "Intel(R) DEG"
    BoardName  "Embedded Graphics"
    BusID      "0:2:0"
    Screen      0
    Option     "PcfVersion"             "1792"
    Option     "ConfigId"               "1"
    Option     "PortDrivers"                "lvds"
    Option     "ALL/1/name"             "lvds-display"
    Option     "ALL/1/General/PortOrder"        "40000"
    Option     "ALL/1/General/DisplayConfig"        "1"
    Option     "ALL/1/General/DisplayDetect"        "1"
    Option     "ALL/1/General/VideoRAM"                 "131072"
    Option     "ALL/1/Port/4/General/name"      "LVDS"
#    Option     "ALL/1/Port/4/General/Rotation"     "0"
    Option     "ALL/1/Port/4/General/Edid"      "1"
    Option     "ALL/1/Port/4/Attr/70"           "0"
    Option     "ALL/1/General/Accel"            "1"
EndSection

Section "Screen"
    Identifier    "Screen0"
    Device        "Intel_IEGD-0"
    Monitor       "LVDS"
    SubSection "Display"
    Depth     24
    Modes    "1366x768"
    EndSubSection
EndSection

Section "Monitor"
    Identifier   "LVDS"
    ModelName    "LCD Panel 1366x768"
EndSection

Section "DRI"
        Mode         0666
EndSection

Section "Extensions"
    Option "composite" "enable"
EndSection

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

答案1

我有点惊讶地看到 X11 配置文件中仍然有一个指针,这是一种相当传统的做事方式。我猜是这些设置每次都会覆盖你所做的更改。

除非您已经知道您特别需要使用 xorg.conf(即 nvidia 驱动程序)配置您的设备,否则您可以尝试从文件中取出“输入设备”部分(不要忘记“服务器布局”下的条目。)

在尝试此操作之前请备份您的配置,因此如果您丢失了鼠标,您可以简单地打开终端(CTRL + ALT + T)并使用键盘恢复文件。

答案2

您检查过鼠标配置吗?我的触摸板可以通过鼠标设置进行配置。可能是您的设置有冲突。因为指点设备是一个附加的 GUI。

在此处输入图片描述

答案3

终于解决了这个问题。我只需打开 Ubuntu 的“启动应用程序”并从列表中删除“Synaptiks Touchpad Manager”。现在 Ubuntu 的默认鼠标设置应用程序可以完美运行,并保存设置。

相关内容