CentOS 7 安装图形界面后如何设置开机默认运行级别为终端字符界面?
#查看当前系统运行级别
[root@C7 ~]# systemctl get-default
graphical.target
#设置系统默认运行级别为字符界面
[root@C7 ~]# systemctl set-default multi-user.target
Removed symlink /etc/systemd/system/default.target.
Created symlink from /etc/systemd/system/default.target to /usr/lib/systemd/system/multi-user.target.
#重新查看
[root@C7 ~]# systemctl get-default
multi-user.target
#重启虚拟机
[root@C7 ~]# reboot
#倘若,我脑子抽搐?突然又想切换回默认的图形界面怎么办?
#重新设置即可
[root@C7 ~]# systemctl set-default graphical.target