笔记本开机进入ubuntu16.04自动关闭触摸板
生活随笔
收集整理的這篇文章主要介紹了
笔记本开机进入ubuntu16.04自动关闭触摸板
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
環(huán)境:
ubuntu16.04(64位)
xfce4桌面
在/home/appleyuchi下新建一個文件turnoffmousepad.sh
寫入以下代碼:
#!/bin/sh modprobe -r psmouse保存后關(guān)閉
chmod u+x??turnoffmousepad.sh
cd /etc
root權(quán)限下,編輯后的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. /bin/su -l root -c "/home/appleyuchi/turnoffmousepad.sh"exit 0關(guān)閉后保存。
重啟電腦前可以先在終端中root權(quán)限下測試一遍:
/bin/su -l root -c "/home/appleyuchi/turnoffmousepad.sh"如果生效了再重啟看看生效沒即可。
如此即可實現(xiàn)筆記本開機(jī)到ubuntu時自動關(guān)閉觸摸板。
總結(jié)
以上是生活随笔為你收集整理的笔记本开机进入ubuntu16.04自动关闭触摸板的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ubuntu16.04登录mysql出现
- 下一篇: ubuntu16.04安装mysql-w