Preparatory steps p>
p>
Make SSH connection p>
This connection must be made in order to remotely modify the cloud servers. p>
p>
Linux p>
Open the terminal and write: p>
ssh root @ IP p>
p>
Windows p>
Use the PuTTY tool and enter the IP of the Cloud server and the user and password that appear in the user panel. p>
p>
Install the Screen tool p>
The installation of the "Screen" tool must be performed before any action is taken so that, if the SSH connection is lost, the work continues in the background. p>
p>
To install "Screen" -> yum install screen -y To start a new screen -> screen To close a screen -> screen -d To summarize a screen -> screen -a p>
p>
Update the operating system p>
Open a new screen p>
p>
screen p>
p>
Before installing any tool, verify that the CentOS repositories and operating system are in the latest version with: p>
p>
yum update -y && yum upgrade -y p>
p>
p>
Install GNOME p>
p>
Having a screen open on the console: p>
p>
yum -y groups install "GNOME Desktop" -y p>
p>
Once the process is finished, you can start the graphical environment by typing p>
p>
startx p>