ubuntu14.04 设置开机自启动脚本
Posted F
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu14.04 设置开机自启动脚本相关的知识,希望对你有一定的参考价值。
方法1.将脚本放入/etc/rc.local文件中。
方法2.添加一个ubuntu的开机启动服务
分为以下几个步骤:
1)新建一个脚本文件 new_services.sh
#!/bin/bash
# command content
exit 0
2)将脚本放置到启动目录下
sudo mv new_services.sh /etc/init.d/
3)设置权限
sudo chmod 755 new_services.sh
4)将脚本添加到启动脚本
cd /etc/init.d/
sudo update-rc.d new_serviecs.sh defaults 90
这里90表明一个优先级,越高表示执行的越晚。
移除ubuntu开机脚本
sudo update-rc.d -f new_services.sh remove
以上是关于ubuntu14.04 设置开机自启动脚本的主要内容,如果未能解决你的问题,请参考以下文章
Ubuntu 设置程序双击启动和sh脚本开机自启动的另一种方法
Ubuntu20.04设置开机自启脚本开机自启命令(ubuntu自启,ubuntu开机自启)rc(run command)(systemd)(/etc/rc.local)(开机启动原理)开机自启动