最近购买了 Dell Latitude 5495,立即安装了 Ubuntu。立即开始注意到一些小问题:
- 鼠标指针会随机冻结,就像冻结了一样,需要重新启动才能修复。
- 双指滚动根本不起作用。
- 我尝试回到突触
sudo apt install xserver-xorg-input-synaptics; sudo apt remove xserver-xorg-input-libinput
删除 libinput 后,无法让键盘和触摸板再次工作。因此再次格式化(幸运的是,这是全新安装)
键盘可以再次使用,但双指滚动仍然不起作用。
~$ xinput list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ PS/2 Generic Mouse id=15 [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: Integrate id=10 [slave keyboard (3)]
↳ Dell WMI hotkeys id=13 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=14 [slave keyboard (3)]
↳ DELL Wireless hotkeys id=16 [slave keyboard (3)]
和
~$ xinput list-props 15
Device 'PS/2 Generic Mouse':
Device Enabled (138): 1
Coordinate Transformation Matrix (140): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
libinput Natural Scrolling Enabled (273): 0
libinput Natural Scrolling Enabled Default (274): 0
libinput Scroll Methods Available (277): 0, 0, 1
libinput Scroll Method Enabled (278): 0, 0, 1
libinput Scroll Method Enabled Default (279): 0, 0, 1
libinput Button Scrolling Button (280): 2
libinput Button Scrolling Button Default (281): 2
libinput Middle Emulation Enabled (282): 0
libinput Middle Emulation Enabled Default (283): 0
libinput Accel Speed (284): 0.000000
libinput Accel Speed Default (285): 0.000000
libinput Accel Profiles Available (286): 1, 1
libinput Accel Profile Enabled (287): 1, 0
libinput Accel Profile Enabled Default (288): 1, 0
libinput Left Handed Enabled (289): 0
libinput Left Handed Enabled Default (290): 0
libinput Send Events Modes Available (258): 1, 0
libinput Send Events Mode Enabled (259): 0, 0
libinput Send Events Mode Enabled Default (260): 0, 0
Device Node (261): "/dev/input/event8"
Device Product ID (262): 2, 1
libinput Drag Lock Buttons (275): <no items>
libinput Horizontal Scroll Enabled (276): 1
我确实知道这个触摸板支持双指滚动,因为它在 Windows 中运行。
不知道如何让双指滚动功能正常工作。此外,是否有一份我应该注意的 Ryzen 5 Pro 2500U 和最新 Ubuntu 内核的已知问题列表?
答案1
TLDR;
运行以下命令将 Ubuntu 内核更新至 4.15.0-36.39 或更高版本:
sudo apt-get update
sudo apt-get dist-upgrade
详细版本
这是由内核中的一个错误引起的。您的问题被提出几天后,Ubuntu 内核中已修复了该问题。补丁似乎已发送到上游 4.18.0-8.9。请参阅https://bugs.launchpad.net/ubuntu/+source/linux-oem/+bug/1773940了解更多信息。
我已经在 Ubuntu 18.04 LTS 中测试了此修复。如果您使用的是其他发行版,则必须安装内核 5.2 或更高版本(将于 2019 年 7 月发布)。与此同时,借助 Syniurge,我们可以通过 DKMS 安装更新的模块https://github.com/Syniurge/i2c-amd-mp2/请注意,由于 DKMS 驱动程序无法覆盖内置驱动程序,因此无法在最新的 Ubuntu 上安装更新的驱动程序。
如果安装模块后模块未加载modprobe: ERROR: could not insert 'i2c-amd-mp2': Operation not permitted
,请确保已禁用安全启动在 BIOS 中
编辑:已接受修复的更新内核版本。