运行级别

runlevel:查看当前运行级别

cat /etc/inittab:查看运行级别

0 - halt (Do NOT set initdefault to this) 关机 == shutdown -h now
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) 重新引导 == reboot == shutdown -r now

安装图形界面需要安装两个包
#yum groupinstall -y "Desktop"
#yum groupinstall -y "X Window System"

然后启动图形界面
#startx或者init 5

你可能感兴趣的:(运行级别)