Appearance
CentOS 7 安装图形化界面
1. 安装
安装
X Window:Bash$ yum -y groupinstall "X Window System"安装 GNOME:
Bash$ yum -y groups install "GNOME Desktop"设置默认的启动模式为图形模式:
Bash$ systemctl set-default graphical.targetNote
设置回命令模式
Bash$ systemctl set-default multi-user.target检查当前的启动模式:
Bash$ systemctl get-default
2. 删除
删除 GNOME:
Bash
$ yum groupremove "GNOME Desktop"