您的位置:首页 > 运维架构 > Linux

linux /etc/inittab 的六个运行级别简单理解

2017-09-20 21:38 756 查看
配置文件,系统在启动的过程中会来读取这个文件的信息

[root@hao ~]# 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).
#此以上都为文件的解释,下面0-6是运行级别的解释
# 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: 这里才是这个文件配置的地方,在命令模式下,默认是级别 --3--。
这里是不能乱改的,如果改为0,1,6 你的系统就开不机了
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  inittab etc