How to install GUI desktop in Centos7 minimal
As we already know Centos7 minimal is designed for server and there is no GUI available in it. But we can install GUI to this server OS.
Method1: Installing GNOME-Desktop
Step1: install the package
#yum -y groups install "GNOME Desktop"
Step2: Check the working of GUI
#startx
Step3: Complete the GNOME Desktop Environment configurations
Step4: Set the system graphical login to the startup
#systemctl set-default graphical.target
Step5: Reboot the system
Method2: Installing KDE-Desktop
Step1: Install KDE Desktop
#yum -y groups install "KDE Plasma Workspaces"
Step2: Check the working of GUI
#startx
Step3: Complete the KDE Desktop Environment configurations
Step4: Set the system graphical login to the startup
#systemctl set-default graphical.target
Step5: Reboot the system