原文: http://blog.csdn.net/liansehai/article/details/45370965

CentOS系统有7个运行级别(runlevel)

#查看系统运行级别
[root@bin2ctyun ~]# cat /etc/inittab
# inittab is only used by upstart for the default runlevel.
#
# ADDING OTHER CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.
#
# System initialization is started by /etc/init/rcS.conf
#
# Individual runlevels are started by /etc/init/rc.conf
#
# Ctrl-Alt-Delete is handled by /etc/init/control-alt-delete.conf
#
# Terminal gettys are handled by /etc/init/tty.conf and /etc/init/serial.conf,
# with configuration in /etc/sysconfig/init.
#
# For information on how to write upstart event handlers, or how
# upstart works, see init(5), init(8), and initctl(8).
#
# Default runlevel. The runlevels used are:
# 0 - halt (Do NOT set initdefault to this)
# 运行级别0:系统停机状态,系统默认运行级别不能设为0,否则不能正常启动
# 1 - Single user mode
# 运行级别1:单用户工作状态,root权限,用于系统维护,禁止远程登陆
# 2 - Multiuser, without NFS (The same as 3, if you do not have networking)
# 运行级别2:多用户状态(没有NFS)
# 3 - Full multiuser mode
# 运行级别3:完全的多用户状态(有NFS),登陆后进入控制台命令行模式
# 4 - unused
# 运行级别4:系统未使用,保留
# 5 - X11
# 运行级别5:X11控制台,登陆后进入图形GUI模式
# 6 - reboot (Do NOT set initdefault to this)
# 运行级别6:系统正常关闭并重启,默认运行级别不能设为6,否则不能正常启动
#
id:3:initdefault:
# 表示运行级别3,是默认的。

运行级别的原理: 1、在目录/etc/rc.d/init.d下有许多服务器脚本程序,一般称为服务(service)

[root@bin2ctyun init.d]# ls /etc/rc.d/init.d/
auditd halt lvm2-monitor nginx rdisc single
blk-availability ip6tables mysql ntpd restorecond sshd
cloud-set-guest-password iptables netconsole ntpdate rsyslog sysstat
crond killall netfs php-fpm sandbox udev-post
functions lvm2-lvmetad network postfix saslauthd xe-linux-distribution

2、在/etc/rc.d下有7个名为rcN.d的目录,对应系统的7个运行级别

[root@bin2ctyun init.d]# ls /etc/rc.d/
init.d rc rc0.d rc1.d rc2.d rc3.d rc4.d rc5.d rc6.d rc.local rc.sysinit

3、rcN.d目录下都是一些符号链接文件,这些链接文件都指向init.d目录下的service脚本文件,命名规则为K+nn+服务名或S+nn+服务名,其中nn为两位数字。

[root@bin2ctyun rc3.d]# ll /etc/rc.d/rc3.d
总用量 0
lrwxrwxrwx 1 root root 19 11月 14 09:35 K10saslauthd -> ../init.d/saslauthd
lrwxrwxrwx. 1 root root 20 11月 13 16:22 K50netconsole -> ../init.d/netconsole
lrwxrwxrwx 1 root root 14 3月 16 13:53 K74ntpd -> ../init.d/ntpd
lrwxrwxrwx 1 root root 17 3月 16 13:53 K75ntpdate -> ../init.d/ntpdate
lrwxrwxrwx. 1 root root 21 11月 13 16:22 K87restorecond -> ../init.d/restorecond
lrwxrwxrwx 1 root root 15 11月 14 09:34 K89rdisc -> ../init.d/rdisc
lrwxrwxrwx 1 root root 18 3月 25 12:20 K92iptables -> ../init.d/iptables
lrwxrwxrwx 1 root root 17 4月 1 22:36 S01sysstat -> ../init.d/sysstat
lrwxrwxrwx 1 root root 22 3月 25 12:20 S02lvm2-monitor -> ../init.d/lvm2-monitor
lrwxrwxrwx 1 root root 19 3月 25 12:20 S08ip6tables -> ../init.d/ip6tables
lrwxrwxrwx 1 root root 17 3月 25 12:18 S10network -> ../init.d/network
lrwxrwxrwx. 1 root root 16 11月 13 16:23 S11auditd -> ../init.d/auditd
lrwxrwxrwx 1 root root 17 3月 25 12:19 S12rsyslog -> ../init.d/rsyslog
lrwxrwxrwx. 1 root root 31 11月 14 09:05 S14xe-linux-distribution -> ../init.d/xe-linux-distribution
lrwxrwxrwx 1 root root 26 3月 25 12:20 S25blk-availability -> ../init.d/blk-availability
lrwxrwxrwx 1 root root 15 3月 25 12:18 S25netfs -> ../init.d/netfs
lrwxrwxrwx 1 root root 19 3月 25 12:18 S26udev-post -> ../init.d/udev-post
lrwxrwxrwx 1 root root 17 4月 1 22:36 S50php-fpm -> ../init.d/php-fpm
lrwxrwxrwx 1 root root 15 3月 16 16:07 S55nginx -> ../init.d/nginx
lrwxrwxrwx 1 root root 14 3月 25 12:20 S55sshd -> ../init.d/sshd
lrwxrwxrwx 1 root root 15 3月 16 15:24 S64mysql -> ../init.d/mysql
lrwxrwxrwx 1 root root 17 4月 1 22:36 S80postfix -> ../init.d/postfix
lrwxrwxrwx 1 root root 15 4月 1 22:36 S90crond -> ../init.d/crond
lrwxrwxrwx 1 root root 34 11月 14 09:29 S98cloud-set-guest-password -> ../init.d/cloud-set-guest-password
lrwxrwxrwx 1 root root 11 3月 25 12:18 S99local -> ../rc.local

4、系统会根据指定的运行级别进入对应的rcN.d目录,并按照文件名顺序检索目录下的链接文件

  • 对于以K开头的文件,系统将终止对应的服务

  • 对于以S开头的文件,系统将启动对应的服务

5、查看运行级别用:runlevel

[root@bin2ctyun rc3.d]# runlevel
N 3

6、进入其它运行级别用:init N

7、注意如果输入 init 0 则为关机,init 6为重启系统

Linux运行级别的配置

cat /etc/inittab

可以看到最后一行 id:3:initdefault: 各字段解释如下: id:runlevels:action:process

有效的action值如下:

补救措施:

如果您的机器进入了这样一种状态,系统由于损坏的/etc/inittab而不能boot,由于受损的/etc/passwd而不能登入,或者干脆就是忘记了口令。怎么办?

2法的区别:

05-20 08:00