前言
linux有自己一套完整 的启动体系,抓住了linux启动 的脉络,linux 的启动过程将不再神秘。
阅读之前建议先看一下附图。
本文中假设inittab中设置 的 init tree为:
/etc/rc.d/rc0.d
/etc/rc.d/rc1.d
/etc/rc.d/rc2.d
/etc/rc.d/rc3.d
/etc/rc.d/rc4.d
/etc/rc.d/rc5.d
/etc/rc.d/rc6.d
/etc/rc.d/init.d
目录
1. 关于linux 的启动
2. 关于rc.d
3. 启动脚本示例
4. 关于rc.local
5. 关于bash启动脚本
6. 关于开机程序 的自动启动
1. 关于linux 的启动
init 是所有进程之父
init读取/etc/inittab,执行rc.sysinit脚本
(注意文件名 是不一定 的 ,有些unix甚至会将语句直接写 在 inittab中)
rc.sysinit脚本作了很多工作:
init $PATH
config network
start swap function
set hostname
check root file system, repair if needed
check root space
....
rc.sysinit根据inittab执行rc?.d脚本
linux 是多用户系统,getty 是多用户与单用户 的分水岭
在 getty之前运行 的 是系统脚本
2. 关于rc.d
所有启动脚本放置在 /etc/rc.d/init.d下
rc?.d中放置 的 是 init.d中脚本 的链接,命名格式 是:
S{number}{name}
K{number}{name}
S开始 的文件向脚本传递start参数
K开始 的文件向脚本传递stop参数
number决定执行 的顺序
3. 启动脚本示例
这 是一个用来启动httpd 的 /etc/rc.d/init.d/apache 脚本:
CODE:
#!/bin/bash
source /etc/sysconfig/rc
source $rc_functions
case %26quot;$1%26quot; in
start)
echo %26quot;Starting Apache daemon...%26quot;
/usr/local/apache2/bin/apachectl -k start
evaluate_retval
;;
stop)
echo %26quot;Stopping Apache daemon...%26quot;
/usr/local/apache2/bin/apachectl -k stop
evaluate_retval
;;
restart)
echo %26quot;Restarting Apache daemon...%26quot;
/usr/local/apache2/bin/apachectl -k restart
evaluate_retval
;;
status)
statusproc /usr/local/apache2/bin/httpd
;;
*)
echo %26quot;Usage: $0 {start|stop|restart|status}%26quot;
exit 1
;;
esac
[url=javascript:][Copy to clipboard][/url]
可以看出他接受start,stop,restart,status参数
然后可以这样建立rc?.d 的链接:
CODE:
cd /etc/rc.d/init.d %26amp;%26amp;
ln -sf ../init.d/apache ../rc0.d/K28apache %26amp;%26amp;
ln -sf ../init.d/apache ../rc1.d/K28apache %26amp;%26amp;
ln -sf ../init.d/apache ../rc2.d/K28apache %26amp;%26amp;
ln -sf ../init.d/apache ../rc3.d/S32apache %26amp;%26amp;
ln -sf ../init.d/apache ../rc4.d/S32apache %26amp;%26amp;
ln -sf ../init.d/apache ../rc5.d/S32apache %26amp;%26amp;
ln -sf ../init.d/apache ../rc6.d/K28apache
[url=javascript:][Copy to clipboard][/url]
4. 关于rc.local
经常使用的 rc.local 则完全 是习惯问题,不 是标准。
各个发行版有不同的实现方法,可以这样实现:
CODE:
touch /etc/rc.d/rc.local
chmod +x /etc/rc.d/rc.local
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc1.d/S999rc.local %26amp;%26amp;
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc2.d/S999rc.local %26amp;%26amp;
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc3.d/S999rc.local %26amp;%26amp;
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc4.d/S999rc.local %26amp;%26amp;
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc5.d/S999rc.local %26amp;%26amp;
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc6.d/S999rc.local
[url=javascript:][Copy to clipboard][/url]
5. 关于bash启动脚本
/etc/profile
/etc/bashrc
~/.bash_profile
~/.bashrc
是 bash 的启动脚本
一般用来设置单用户的启动环境,也可以实现开机单用户 的程序,但要明确他们都 是属于bash范畴而不 是系统范畴。
他们 的具体作用介绍如下:
/bin/bash这个命令解释程序(后面简称shell)使用了一系列启动文件来建立一个运行环境:
/etc/profile
/etc/bashrc
~/.bash_profile
~/.bashrc
~/.bash_logout
每一个文件都有特殊的功用并对登陆和交互环境有不同 的影响。
/etc/profile 和 ~/.bash_profile 是 在启动一个交互登陆shell 的时候被调用。
/etc/bashrc 和 ~/.bashrc 是 在一个交互 的非登陆shell启动 的时候被调用。
~/.bash_logout 在用户注销登陆的时候被读取
一个交互的登陆shell会 在 /bin/login 成功登陆之后运行。一个交互的非登陆shell 是通过命令行来运行 的,如[prompt]$/bin/bash。一般一个非交互的 shell出现 在运行shell脚本 的时候。之所以叫非交互的 shell, 是因为它不 在命令行上等待输入而只 是执行脚本程序。
6. 关于开机程序的自动启动
系统脚本可以放置在 /etc/rc.d/init.d中并建立/etc/rc.d/rc?.d链接,也可以直接放置在 /etc/rc.d/rc.local中。
init.d脚本包含完整 的 start,stop,status,reload等参数, 是标准做法,推荐使用。
为特定用户使用 的程序(如有 的用户需要使用中文输入法而有 的不需要)放置 在 ~/中 的 bash启动脚本中。