运行级别 7个
cat /etc/inittab # 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)
runlevel 查看当前系统的运行级别
init命令用于切换到指定的运行级别,用法如下:
[root@localhost ~]# init 0 //关机 [root@localhost ~]# init 1 //切换到单用户模式/救援模式 [root@localhost ~]# init 2 //切换到无网络连接的多用户命令行模式 [root@localhost ~]# init 3 //切换到有网络连接的多用户命令行模式 [root@localhost ~]# init 4 //不可用 [root@localhost ~]# init 5 //切换到带图形界面的多用户模式 [root@localhost ~]# init 6 //重启