Dell Inspiron 15-7568 触摸板在 Xenial 16.04 上移动冻结

Dell Inspiron 15-7568 触摸板在 Xenial 16.04 上移动冻结

在此戴尔 15-7568,有一个触摸板,其左键和右键单击区域合并到触摸板中。

戴尔 Inspiron 15-7568 触摸板

重现步骤

全新安装 16.04 版本:

  1. 将拇指放在左键单击区域
  2. 将中指放在指腹中央
  3. 用拇指按下点击

指针不再在屏幕上移动,直到:

  1. 将拇指放在左键单击区域上
  2. 触摸(不是按压)触摸板的中心

指针移动恢复正常。

  • 有其他人遇到过类似的问题吗?我正在尝试查明这是否是戴尔独有的。

  • 我还能提供哪些有用的诊断信息?

系统信息

sudo dmidecode | grep "System Information" -A 3

System Information
    Manufacturer: Dell Inc.
    Product Name: Inspiron 15-7568
    Version: Not Specified

xinput --list

⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ ELAN Touchscreen                          id=11   [slave  pointer  (2)]
⎜   ↳ DLL06FF:00 06CB:75C4 Touchpad             id=12   [slave  pointer  (2)]
⎜   ↳ SynPS/2 Synaptics TouchPad                id=14   [slave  pointer  (2)]
⎣ Virtual core keyboard                     id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard               id=5    [slave  keyboard (3)]
    ↳ Power Button                              id=6    [slave  keyboard (3)]
    ↳ Video Bus                                 id=7    [slave  keyboard (3)]
    ↳ Power Button                              id=8    [slave  keyboard (3)]
    ↳ Sleep Button                              id=9    [slave  keyboard (3)]
    ↳ Integrated_Webcam_HD                      id=10   [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard              id=13   [slave  keyboard (3)]
    ↳ Dell WMI hotkeys                          id=15   [slave  keyboard (3)]`

xinput --list-props 12

Device 'DLL06FF:00 06CB:75C4 Touchpad':
Device Enabled (137):   1
Coordinate Transformation Matrix (139): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
Device Accel Profile (268): 1
Device Accel Constant Deceleration (269):   2.500000
Device Accel Adaptive Deceleration (270):   1.000000
Device Accel Velocity Scaling (271):    12.500000
Synaptics Edges (292):  49, 1180, 50, 4416
Synaptics Finger (293): 25, 30, 0
Synaptics Tap Time (294):   180
Synaptics Tap Move (295):   67
Synaptics Tap Durations (296):  180, 100, 100
Synaptics ClickPad (297):   1
Synaptics Middle Button Timeout (298):  0
Synaptics Two-Finger Pressure (299):    282
Synaptics Two-Finger Width (300):   7
Synaptics Scrolling Distance (301): -30, -30
Synaptics Edge Scrolling (302): 0, 0, 0
Synaptics Two-Finger Scrolling (303):   1, 1
Synaptics Move Speed (304): 1.000000, 1.750000, 0.129870, 0.000000
Synaptics Off (305):    0
Synaptics Locked Drags (306):   0
Synaptics Locked Drags Timeout (307):   5000
Synaptics Tap Action (308): 2, 3, 0, 0, 1, 3, 0
Synaptics Click Action (309):   1, 3, 0
Synaptics Circular Scrolling (310): 0
Synaptics Circular Scrolling Distance (311):    0.100000
Synaptics Circular Scrolling Trigger (312): 0
Synaptics Circular Pad (313):   0
Synaptics Palm Detection (314): 0
Synaptics Palm Dimensions (315):    10, 200
Synaptics Coasting Speed (316): 20.000000, 50.000000
Synaptics Pressure Motion (317):    30, 160
Synaptics Pressure Motion Factor (318): 1.000000, 1.000000
Synaptics Resolution Detect (319):  1
Synaptics Grab Event Device (320):  0
Synaptics Gestures (321):   1
Synaptics Capabilities (322):   1, 0, 0, 1, 1, 0, 0
Synaptics Pad Resolution (323): 12, 12
Synaptics Area (324):   0, 0, 0, 4000
Synaptics Soft Button Areas (325):  614, 0, 761, 0, 0, 0, 0, 0
Synaptics Noise Cancellation (326): 7, 7
Device Product ID (255):    1739, 30148
Device Node (256):  "/dev/input/event14"

答案1

我的戴尔 Latitude 3450 中的集成键盘和触摸板随机冻结(以前,我的触摸板是点击板

我通过使用 libinput 代替 synaptic 驱动程序解决了 Synaptic 触摸板和键盘冻结的所有问题。为此,请安装:

sudo apt-get install xserver-xorg-input-libinput

此外,为了确保使用的是 libinput 而不是 synaptic 驱动程序,我删除了带有 Synaptic 驱动程序的包

sudo apt-get remove xserver-xorg-input-synaptics

我还在 libinput 设置中做了一些自定义。我创建了这个配置文件:

/usr/share/X11/xorg.conf.d/99-libinput.conf

内容如下:

Section "InputClass"
    Identifier "libinput touchpad catchall"
    Driver "libinput"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Option "Tapping" "True"
    Option "DisableWhileTyping" "True"
    Option "NaturalScrolling" "False"
    Option "AccelProfile" "adaptive"
    Option "AccelSpeed" "0.05"
    Option "MiddleEmulation" "True"
    Option "ScrollMethod" "twofinger"
    # Option "ClickMethod" "clickfinger"
    Option "ClickMethod" "buttonareas"
EndSection

查看 libinput 手册页上的所有可用配置选项

http://manpages.ubuntu.com/manpages/xenial/man4/libinput.4.html

http://who-t.blogspot.com.br/2016/04/why-libinput-doesnt-have-lot-of-config.html

https://wayland.freedesktop.org/libinput/doc/latest/clickpad_softbuttons.html

https://wiki.archlinux.org/index.php/Libinput

我只在 Ubuntu 16.04 上测试过

更新日期 2016-05-08:我忘了我正在使用 Linux 内核v4.5.x(默认的 Ubuntu 16.04 Linux 内核是v4.4.x) 当我写这篇文章的时候。

即使采用上述配置,如果我使用官方的 Ubuntu 16.04 Linux 内核 v4.4.x 系列(我使用 kernel4.4.0-21-generic 和 4.4.0-22-generic 进行测试),集成键盘和触摸板随机冻结的问题仍然存在于我的 Latitude 3450 上。

内核 v4.5.x (4.5.0-040500-generic) 不会出现此问题

安装 Linux 内核 4.5.x 非常简单。

了解如何操作:http://ubuntuhandbook.org/index.php/2016/03/upgrade-linux-kernel-4-5-ubuntu/

说道,安装不受官方支持的新内核,最终会导致许多问题

记得不卸载官方内核,因为如果您在使用非官方内核时遇到问题(到目前为止,在我的计算机上一切都运行正常),您仍然可以使用官方内核启动系统。

附言:

如果所有这些对您都不起作用,也许可以重新使用 synaptic 并尝试按照本教程进行操作:http://hgdev.co/install-ubuntu-15-10-on-the-dell-xps-13-9343-2015-a-complete-guide/

相关内容