Ubuntu下阉割触摸板的解决方法

    技术2022-05-19  21

    Ubuntu下的触摸板太烦人了!总是在敲终端的时候,不小心碰到,粘贴一大段复制的其他内容上去,所以,我google了一下,找到了阉割它的办法:

     

    在/etc/rc.local中添加

    代码: sudo modprobe -r psmouse

    我的rc.local修改之后有点像这样: #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. #Added by Gaplee 2010.12.31 #Unable psmouse when start sudo modprobe -r psmouse echo "psmouse closed" exit 0


    最新回复(0)