当前位置: 技术问答>linux和unix
FC11 如何添加启动脚本
来源: 互联网 发布时间:2016-08-23
本文导语: 在redhat9中我是修改 /etc/rc.d/rc.local fc11中添加后发现根本不执行,在 /etc/inittab 中发现比以前简单多了,于是修改 /etc/event.d/rcS, 在里面最后一行调用rc.local 然后就起不来了 请问如何修改呢 | 首先...
在redhat9中我是修改 /etc/rc.d/rc.local
fc11中添加后发现根本不执行,在 /etc/inittab 中发现比以前简单多了,于是修改 /etc/event.d/rcS, 在里面最后一行调用rc.local 然后就起不来了
请问如何修改呢
fc11中添加后发现根本不执行,在 /etc/inittab 中发现比以前简单多了,于是修改 /etc/event.d/rcS, 在里面最后一行调用rc.local 然后就起不来了
请问如何修改呢
|
首先把你的脚步copy到 /etc/init.d/目录下 追加执行权限 比如叫test
然后
#/sbin/chkconfig --add test
#/sbin/chkconfig test on
特别需要注意的是 你的启动脚本test里必须有如下2句 前面的注释#号不要去掉 可以参照/etc/init.d/下别的程序的启动script
# chkconfig: - 62 53
# description: this my test script
其实按你的方法添加到/etc/rc.local里也是可以的
你cat /etc/rc.local会发现这样的信息This script will be executed *after* all the other init scripts.
但是你的脚本必须正确 否则就会停到那儿
我的上网自动认证脚本就是放在这个文件里的