赞
踩
通过chkconfig命令添加脚本为开机自动启动
#!/bin/sh
#chkconfig: 2345 80 90
#description:开机自动启动zdoo
/opt/zbox/zbox restart
脚本第一行 “#!/bin/sh” 告诉系统使用的shell;
脚本第二行 “#chkconfig: 2345 80 90” 表示在2/3/4/5运行级别启动,启动序号(S80),关闭序号(K90);
脚本第三行 表示的是服务的描述信息
注意: 第二行和第三行必写,负责会出现如“服务 autostart.sh 不支持 chkconfig”这样的错误。
cd /etc/rc.d/init.d/
chmod +x autostart.sh
chkconfig --add autostart.sh
chkconfig autostart.sh on
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。