How to install xfce GUI in centOS 7
- Krishna Chaitanya
- Jun 3, 2018
- 1 min read
Following commands will install xfce on centos 7.
#> yum install epel-release -y
#> yum groupinstall "Server with GUI" -y
#> yum groupinstall "Xfce" -y
#> systemctl get-default
output: graphical.target (if not)
#> systemctl set-default graphical.target
#> start xfce
To remove xfce from centos 7
#> yum groupremove "Xfce"
Comments