#运行级别就是操作系统运行的功能级别。
默认我们安装完的系统是3级别,查看当前运行级别使用命令runlevel。第1列是上一个运行状态,第2列是当前的,N代表无。
[root@localhost~]# runlevel
N 3
在我们系统中一共有7个运行级别,在inittab文件中有分类。
[root@localhost~]# 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)
# 1 - Single user mode
# 2 - Multiuser, without NFS (The same as 3, if you do not have networking)
# 3 - Full multiuser mode
# 4 - unused
# 5 - X11
# 6 - reboot (Do NOT set initdefault to this)
#
id:3:initdefault:
在这个文档中,可以看到有0-6的运行级别。0表示系统停机模式,系统默认不可以为0,否则无法正常启动,机器关闭;1表示单用户模式,root权限,用于系统维护,禁止远程登录,类似windows下的安全模式;2表示多户用模式,没有NFS网络支持;3表示完整的多用户模式,即我们正在使用的模式;4表示系统未使用,一般不用。5表示图形界面模式,需安装图形界面组包;6表示重启,默认级别不能设置为6,否则无法正常启动,陷入重启循环。最后一行用来定义默认运行级别,当前为3。
如果你想临时切换其他运行级别,使用命令init:
[root@localhost~]# init 0
#关机
[root@localhost~]# init 5
#进入图形界面
本文出自 “流云” 博客,请务必保留此出处http://walterliew.blog.51cto.com/11286797/1877073
原文地址:http://walterliew.blog.51cto.com/11286797/1877073