Centos 安装桌面环境

写在前面

Centos 作为企业服务器的操作系统是很常见的,为了保持纯净的系统环境,通常情况下,不需要安装图形桌面,最小化地安装 Centos(minimal 版本) 就可以了。

如果选择 linux 作为个人电脑的操作系统,推荐使用 ubantu!

在 Centos 安装 GNOME 图形桌面,使用 yum 指令就可以了。

 

1. Centos版本

[root@Python ~]# cat /etc/redhat-release 
CentOS Linux release 7.6.1810 (Core) 

2. 环境准备

[root@Python ~]# yum upgrade
[root@Python ~]# yum -y groupinstall "X Window System"

3. 安装 GNOME 桌面环境

[root@Python ~]# yum -y groups install "GNOME Desktop"
[root@Python ~]# echo "exec gnome-session" >> ~/.xinitrc

4. 进入 GNOME 桌面环境

[root@Python ~]# startx

 

你可能感兴趣的:(Linux)