1. Write a script. put it in the /etc/init.d/ directory.
2. You also have to make the file you created, FOO, executable, using
$chmod +x FOO
3. Lets say you called it FOO. You then run
% update-rc.d FOO defaults
You can check out
% man update-rc.d for more information. It is
a Debian utility to install scripts. The option “defaults” puts a link
to start FOO in run levels 2, 3, 4 and 5. (and puts a link to stop FOO
into 0, 1 and 6.)
本文详细介绍了如何在Linux系统中使用脚本进行软件安装和配置,包括将脚本放入特定目录、设置执行权限、使用update-rc.d命令安装脚本,并通过该命令配置启动级别。

被折叠的 条评论
为什么被折叠?



