linux脚本加入开机自启动的方法

linux脚本加入开机自启动的方法,第1张

linux脚本加入开机自启动的方法

环境:seedubuntu12.04
步骤:
1、将脚本放在/etc/init.d/下面

cp /path/to/test.sh /etc/init.d/

2、赋予脚本执行权限

chmod +x /etc/init.d/test.sh

3、写入/etc/rc.local开机自启动文件里

echo /etc/init.d/test.sh >> /etc/rc.local

4、赋予 rc.local 执行权限

chmod +x /etc/rc.local

5、重启即可

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5619373.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存