CentOS 7/Linux: How To Install Gnome GUI Package
when you installed the centos 7 operating system, if you choose the minimal installation, then GUI interface will not be installed as defalut. but after you worked in this mininal centos 7 system, you wanna to back to graphic user interface, the easy way is to install one GUI package, two GUI programs you can choose: Gnome or Kde. in this post, you will see how to install Gnome package under CentOS 7 operating system.
CentOS 7 Gnome installation
Before you installed the Gnome package, you’d better to check the installation source is normal, As we need to use it to install gnome package by yum command, and this command use this package source to download gnome package. issue the followind command:
$ sudo yum check-update
Output:
[root@osetc~]$sudo yum check-update base | 3.7 kB 00:00 base/primary_db | 4.6 MB 00:01 extras | 3.4 kB 00:00 extras/primary_db | 29 kB 00:00 gf | 2.9 kB 00:00 gf/primary_db | 73 kB 00:00 updates | 3.4 kB 00:00 updates/primary_db | 888 kB 00:22 audit.x86_64 2.3.7-5.el6 base audit-libs.x86_64 2.3.7-5.el6 base authconfig.x86_64 .1.12-19.el6 base bash.x86_64 4.1.2-29.el6 base
Using yum command to install gnome package, issue the following command:
$sudo yum groupinstall "GNOME Desktop" "Graphical Administration Tools"
Updating runlevel of system
If you want to make the system to automatically enter into the graphical interface at boot time, you must change the runlevel value, issue the following command:
$sudo ln -sf /lib/systemd/system/runlevel5.target /etc/systemd/system/default.target
after you reboot the system , the system will enter into the Gnome GUI interface automatically.
done….