Ubuntu10.4 禁止开机启动蓝牙和触摸板

蓝牙:

系统->首选项->启动 中关闭 蓝牙管理程序

cd /etc/init.d

Remove or rename bluetooth

触摸板:

禁止touchpad synclient touchpadoff=1

开启touchpad synclient touchpadoff=0

开机自动禁用,可以把禁止touchpad的命令放入启动程序中:system--->preferences--->startup applications--->add,Name输入Disable Touchpad,command中输入synclient touchpadoff=1,然后点add

关闭触摸板也可以使用如下命令:

1.关闭笔记本触摸板:sudormmodpsmouse

2.恢复笔记本触摸板:sudomodprobepsmouse

或者:

关闭触摸板

sudomodprobe-rpsmouse

开启触摸板

sudo modprobe  psmouse

或者:

1.xinput --list,查看toucpad的ID

2.禁止touchpad:xinput set-int-prop 14 "Device Enabled" 8 0

3.开启touchpad:xinputset-int-prop14"DeviceEnabled"81

相关推荐