Ubuntu 14.04 笔记本电脑:鼠标光标不移动但鼠标按钮工作

Pur*_*ake 5 mouse touchpad

正如标题所说,我的笔记本电脑上的鼠标光标没有移动,但鼠标按钮仍然有效。我不知道该怎么做。我已经在 Windows 上测试了触摸板,它工作正常。

我的笔记本电脑是 HP Envy

X输入输出 xinput list

Virtual core pointer    id=2 [master pointer (3)]
Virtual core XTEST pointer    id =4 [slave pointer (2)]
SynPS/2 synaptics TouchPad id=12 [slave pointer (2)]
Run Code Online (Sandbox Code Playgroud)

uname -r

3.16.0-49-通用

lspci -K | grep -EA2 'VGA|3D'

00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06)
    Subsystem: Hewlett-Packard Company Device 1966
    Kernel driver in use: i915

01:00.0 3D controller: NVIDIA Corporation GK208M [Geoforce GT 740M] (rev a1)
    Subsystem: Hewlett-Packard company device 219c
Run Code Online (Sandbox Code Playgroud)

lspci -k | grep -EA2 'VGA|3D' 驱动安装后

00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06)
    Subsystem: Hewlett-Packard Company Device 1966
    Kernel driver in use: i915

01:00.0 3D controller: NVIDIA Corporation GK208M [Geoforce GT 740M] (rev a1)
    Subsystem: Hewlett-Packard company device 219c
    Kernel driver in use: nvidia
Run Code Online (Sandbox Code Playgroud)

编辑

事实证明 USB 鼠标确实可以工作,但我还没有找出我的 TrackPad 停止工作的原因。

小智 0

尝试更新软件...我遇到了这个问题,我所知道的是它与 14.04 上的默认 PS/2 驱动程序有关(它不支持 SynPS/2 -我有相同的触摸板 -)。您可以使用 USB 外接鼠标来确认:它可以工作。

然后,转到终端:

sudo apt-get update
Run Code Online (Sandbox Code Playgroud)

输入密码,等待更新。重新启动...如果您的 Synaptics 触摸板仍然无法工作,则:

sudo apt-get install ubuntu-restricted-extras
Run Code Online (Sandbox Code Playgroud)

输入您的密码,等待更新...使用此软件包您还将获得一些额外功能,例如 Microsoft 字体。因此,您将在终端上看到许可协议...使用键盘上的“TAB”按钮选择“确定”选项,然后按 Enter。

系统更新后,重新启动...您的触摸板应该可以正常工作。

亚伯拉罕·麦地那