CentOS安装图形界面
CentOS minimal环境安装图形界面。
列出所有可用的Environment Groups
yum group list
yum groupinfo "GNOME Desktop"
选择GNOME Desktop软件包组进行安装
yum groupinstall -y 'GNOME Desktop'
- 1
如果要通过GUI配置网络需要安装Server with GUI
yum groups install -y "Server with GUI"
修改default target启用GUI
systemctl set-default graphical.target
systemctl get-default
重新系统可直接进入图形界面
reboot
也可以通过执行以下命令立即切换到GUI。
systemctl isolate graphical.target
删除GUI
yum groupremove "GNOME Desktop"