Linux之系统运行级别

Posted 锦衣admin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux之系统运行级别相关的知识,希望对你有一定的参考价值。

系统运行级别

作用:运行级别全称(Running Level),代表Linux系统的不同运行模式
CentOS6的运行级别

	# vim /etc/inittab
0   系统关机状态   halt (Do NOT set initdefault to this)
1   单用户工作状态   Single user mode (类似Windows的安全模式,Linux忘记密码)
2   多用户状态(没有NFS) Multiuser, without NFS (The same as 3, if you do not have networking)
3   多用户状态(有NFS)   Full multiuser mode (字符模式,服务基本都是此模式)
4   系统未使用,留给用户   unused
5   图形界面    X11 (图形模式,个人计算机都是此模式)
6   系统正常关闭并重新启动   reboot (Do NOT set initdefault to this)

CentOS7的运行级别

0   shutdown.target
1   emergency.target
2   rescure.target
3   multi-user.target   字符模式
45   graphical.target    图形模式
6

init命令

# init 模式编号(1~6)

# init 0、shutdown -h 0或now => 立即关机
# reboot、init 6 => 立即重启

# init 3 => 切换到字符模
# init 5 => 切换到图形模式

以上是关于Linux之系统运行级别的主要内容,如果未能解决你的问题,请参考以下文章

linux之运行级别

Linux系统启动流程之chkconfig

Linux命令之查看和设置系统的各种服务启动关闭状态chkconfig

linux之运行级别

linux系统的运行级别

Linux系统有7个运行级别