登录到gnome后,笔记本电脑上的触摸板无法正常工作


2

我正在使用Ubuntu 10.10。我的触摸板一直工作到gnome登录屏幕。但是,一旦我登录,它就无法工作。

tail /var/log/Xorg.0.log 给我这个错误。

[    42.610] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[    42.690] (--) SynPS/2 Synaptics TouchPad: touchpad found
[    42.690] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
[    42.690] (II) No input driver/identifier specified (ignoring)

我想我必须在Xorg配置文件中添加触摸板驱动程序(突触)。但是在哪个部分和哪种语法中有任何想法?

[编辑]:好吧,我有aspire4520。amd64x2处理器,突触触摸板[编辑]:在给定的答案中添加配置文件不起作用。问题仍然存在于xmonad中。


出于完整性考虑:您拥有哪种硬件?
slhck

Answers:


1

也许你可以尝试创建该文件: 50-synaptics.conf/usr/share/X11/xorg.conf.d/

以下是我的:

Section "InputClass"
    Identifier "touchpad catchall"
    Driver "synaptics"
    MatchIsTouchpad "on"
        option "VertTwoFingerScroll" "true"
        option "EmulateTwoFingerMinZ" "60"
        option "EmulateTwoFingerMinW" "10"
    MatchDevicePath "/dev/input/event*"
EndSection

它也将给您模拟两个手指的操作。

希望这可以帮助。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.