CentOS系统有7个运行级别(runlevel)
运行级别0:系统停机状态,系统默认运行级别不能设为0,否则不能正常启动
运行级别1:单用户工作状态,root权限,用于系统维护,禁止远程登陆
运行级别2:多用户状态(没有NFS)
运行级别3:完全的多用户状态(有NFS),登陆后进入控制台命令行模式
运行级别4:系统未使用,保留
运行级别5:X11控制台,登陆后进入图形GUI模式
运行级别6:系统正常关闭并重启,默认运行级别不能设为6,否则不能正常启动
修改运行级别
Centos7中采用target概念来定义运行级别,分为3级、5级,含义如下:
3级->multi-user.target文本5级->graphical.target图形
1)查看当前运行的级别
#runlevel[root@chezhichezhi]#runlevelN3[root@chezhichezhi]#
如果系统当前默认运行级别是图形GUI模式则runlevel显示结果为:53
2)修改开机默认运行级别
systemd使用链接来指向默认的运行级别,由/etc/systemd/system/default.target文件中决定。
切换到运行级3:
a.先删除:mv/etc/systemd/system/default.target/etc/systemd/system/default.target_copy5#将文件重命名即可
b.创建软连接文件:ln-sf/lib/systemd/system/multi-user.target/etc/systemd/system/default.target
或者
ln-sf/lib/systemd/system/runlevel3.target/etc/systemd/system/default.target
再者也可以使用systemctl命令:
systemctlset-defaultgraphical.target
systemctlisolatemulti-user.target
最后正常关机并重启系统:init6
然后系统开机就会自动进入控制台命令模式,如果想切换回默认进入图形GUI模式执行命令:
#先删除文件[root@chezhisystem]#rm-rf/etc/systemd/system/default.target#重新创建软连接文件[root@chezhisystem]#ln-sf/lib/systemd/system/graphical.target/etc/systemd/system/default.target