centos 7 安装与卸载图形界面

  • 安装
yum -y groupinstall “X Window System”#安装桌面基础环境,桌面的基础,必须装的
yum -y groups install "GNOME Desktop" #安装桌面系统
init 5 #登陆后进入图形GUI模式 
reboot
  • 卸载
yum -y groupremove "GNOME Desktop"
yum -y groupremove “X Window System
init 3 # 完全的多用户状态(有NFS),登陆后进入控制台命令行模式 
reboot

新版本的CentOS 系统里使用’targets’ 取代了运行级别的概念。系统有两种默认的’targets’: 多用户.target 对应之前版本的3 运行级别; 而图形.target 对应之前的5运行级别。

查看默认的target,执行:

systemctl get-default

开机以命令模式启动,执行:

systemctl set-default multi-user.target

开机以图形界面启动,执行:

systemctl set-default graphical.target

分享你的喜爱