admin 管理员组文章数量: 887021
2024年2月7日发(作者:聚合钱包app下载安装)
ubuntu开机启动shell脚本
1.创建shell启动脚本test
2.将启动脚本复制到 /etc/init.d 目录下
3.设置脚本文件权限
sudo chmod 755 /etc/init.d/test
4.设置脚本启动
sudo update-rc.d test defaults 95 //95 为启动优先级,越小优先级越高
// 执行后输出信息
update-rc.d:
information
update-rc.d: see
Adding system startup for /etc/init.d/test ...
/etc/rc0.d/K95test -> ../init.d/test
/etc/rc1.d/K95test -> ../init.d/test
/etc/rc6.d/K95test -> ../init.d/test
/etc/rc2.d/S95test -> ../init.d/test
/etc/rc3.d/S95test -> ../init.d/test
/etc/rc4.d/S95test -> ../init.d/test
/etc/rc5.d/S95test -> ../init.d/test
4.卸载启动脚本
sudo update-rc.d -f test remove
// 执行后输出信息
Removing any system startup links for /etc/init.d/test ...
/etc/rc0.d/K95test
/etc/rc1.d/K95test
/etc/rc2.d/S95test
/etc/rc3.d/S95test
warning: /etc/init.d/test missing LSB
/etc/rc4.d/S95test
/etc/rc5.d/S95test
/etc/rc6.d/K95test
版权声明:本文标题:ubuntu开机启动shell脚本 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/free/1707295266h513856.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论