CentOS禁用触摸板

  1. 安装xorg-x11-apps包

    yum install xorg-x11-apps

  2. 查看设备信息

    cd /dev/input/

    ls //找到触摸板信息

    xinput list //找到触摸板的id,这里以13为例

  3. 禁用触摸板

    xinput set-int-prop 13 "Device Enabled" 8 0

  4. 启用触摸板

    xinput set-int-prop 13 "Device Enabled" 8 1

原文地址:https://www.cnblogs.com/liqipeng/p/4592148.html