0

How to install GNOME desktop on linux (CENTOS).I would appreciate detailed steps as I am a linux newbie.

Krishna Kumar
  • 161
  • 1
  • 5
  • Is this really a suitable question for server fault? There must be ton of support for CentOS users online, including here http://www.centos.org/modules/newbb/ – Coops Jul 15 '09 at 07:01

1 Answers1

2
sudo yum install gnome-desktop

Breakdown:

  • sudo to gain administrative permissions (installation of package)
  • yum is Redhat's package manager, it can perform various actions such as install, remove and update
  • install is what you want yum to do, in this case it's quite clear
  • gnome-desktop is the name of the package to install
LiraNuna
  • 291
  • 2
  • 16