centos7 安装/卸载图形界面

安装

查看可用的安装

yum grouplist

server with GUI

yum groupinstall "Server with GUI"

gnome

yum update -y
yum groupinstall "GNOME Desktop" -y

kde

yum groupinstall "KDE Plasma Workspaces" -y
# 中文支持
yum install kde-l10n-Chinese

安装完中文包后要在设置的 local 中设置首选语言为中文,并注销重登录。

启动方式

查看

systemctl get-default

multi-user.target 表示命令行启动

图形界面启动

systemctl  set-default graphical.target

单纯在 ssh 连接时使用客户端图形界面,当出现 X11 forwarding request failed on channel 0 时,安装以下命令:

yum install xorg-x11-xauth

命令行启动

systemctl  set-default multi-user.target

卸载

yum groupremove "GNOME Desktop"