Wednesday 1 April 2015

How to install different desktop environments in CentOS

CentOS is one of the different Linux distributions derived from Red Hat Enterprise Linux RHEL. It is a free and open source computing platform built from the publicly available open source code by Red Hat and has gained popularity lately.

Just like any other Linux distributions, centOS too is fully customizable. You can customize it according to your need and preferences. There are different desktop environments available and in case one don't suits you, you can always switch to another.

In this article, we will see how to install different desktop environments in CentOS in case you have installed just the minimal command line version, or the dekstop environment you have installed/got, is not suiting your preferences.

How to Install different desktop envirnments in CentOS

  • Installing GNOME desktop environment in CentOS

You can install GNOME with the command:

# yum -y groups install "GNOME Desktop" 

 After installation, type

# startx

to start the GNOME desktop environments.
  • Installing KDE desktop environment in CentOS

# yum -y groups install "KDE Plasma Workspaces" 
# echo "exec startkde" >> ~/.xinitrc
# startx 
  • Installing Cinnamon desktop environment in CentOS

Before installing Cinnamon desktopn environment,you need to add EPEL repository.

# sudo yum install epel-release
 
and then Cinnamon desktop environment:

# yum --enablerepo=epel -y install cinnamon*
 
# echo "exec /usr/bin/cinnamon-session" >> ~/.xinitrc
# startx 
 
 
These 3 different desktop environments are the most popular and widely used among Linux users and there is a pretty good chance that one of these will suit you. In case, if you have any other desktop environments for your CentOS, do share with our readers how to install it. Screenshots you can mail me at mb.linux.world@gmail.com and I will add it here.

0 comments:

Post a Comment