触控板就是笔记本上面的那块能移动游标的设备,通常设有快捷键能够快速启用或关闭,在CentOS6.4中,使用脚本能够自动关闭触控板,下面小编就给大家介绍下CentOS6.4如何使用脚本停用触控板,一起来学习下吧。
方法:
1.检查是否安装xorg-x11-app;
rpm-qaxorg-x11-apps
如果没有安装使用下面命令安装xorg-x11-app
yuminstallxorg-x11-apps
2.查看在图形模式下可用的输入设备
xinputlist
我的电脑显示的是如下结果
[root@reageinput]#xinputlist
⎡Virtualcorepointerid=2[masterpointer(3)]
⎜↳VirtualcoreXTESTpointerid=4[slavepointer(2)]
⎜↳Macintoshmousebuttonemulationid=14[slavepointer(2)]
⎜↳SIGMACHIPUsbMouseid=15[slavepointer(2)]
⎜↳ImPS/2LogitechWheelMouseid=13[slavepointer(2)]
⎣Virtualcorekeyboardid=3[masterkeyboard(2)]
↳VirtualcoreXTESTkeyboardid=5[slavekeyboard(3)]
↳AsusLaptopextrabuttonsid=6[slavekeyboard(3)]
↳ATTranslatedSet2keyboardid=7[slavekeyboard(3)]
↳LidSwitchid=8[slavekeyboard(3)]
↳USB2.0Cameraid=9[slavekeyboard(3)]
↳SleepButtonid=10[slavekeyboard(3)]
↳VideoBusid=11[slavekeyboard(3)]
↳PowerButtonid=12[slavekeyboard(3)]
3.查找触控板对应的设备好
不同的触控设备可能名字不同,但是一般触控板都是一个PS/2设备。所以在触控板的名字中可能会出现PS/2、touchpad字样。如果都找不到可以将Virtualcorepointer中的所有的设备id使用xinput--set-prop设备的idDeviceEnabled0依次执行,执行后滑动触控板看触控板是否可用,不可用表示已经找到,触控板对应的设备。然后使用xinput--set-prop设备的idDeviceEnabled1,将所有非触控板的输入设备依次启用。
4.书写自动禁用触控板的脚本
建立touchpad.sh
vimtouchpad.sh
输入一下内容
#!/bin/bash
if[$1=on]||[$1=1]
then
xinput--set-prop13DeviceEnabled1
echoopen
elif[$1=off]||[$1=0]
then
xinput--set-prop13DeviceEnabled0
echoclose
else
echo请输入正确的参数:on/off、0/1。
echo开启触控板shtouchpadon或者shtouchpad1。
echo关闭触控板shtouchpadoff或者shtouchpad0;
fi
上面就是CentOS6.4使用脚本关闭触控板的方法介绍了,虽然比快捷方式麻烦了点,但如果快捷方式失效的话该方法就能派上用场了。