码迷,mamicode.com
首页 > 其他好文 > 详细

Centos5,6的启动流程

时间:2018-04-14 15:25:48      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:linux   启动   bootloader   

CentOS5/6的启动流程

启动流程画了张图,看着更清晰些: (centos7的启动流程变化挺大的,这部分待补充)

技术分享图片


补充(/etc/rc.d/rc.local 不属于任何服务,为特殊文件,可将不能定义为服务又想开机运行的命令定义在此文件中)

 

添加自定义服务:

[root@el5 init.d]# vi  /etc/init.d/testsrv 

#!/bin/bash

#chkconfig: 223 92 60

#description:              programs at periodic scheduled times. vixie cron adds a \

#              number of features to the basic UNIX cron, including better \

#              security and more powerful configuration options.#

echo "hello"

 

[root@el5 init.d]# chkconfig --add  testsrv

 

[root@el5 init.d]# service testsrv

hello


Centos5,6的启动流程

标签:linux   启动   bootloader   

原文地址:http://blog.51cto.com/jying/2103413

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!