I'm new with VPS I have now a Ubuntu 14.04 LTS server, I connected to the server with Remote Desktop from Windows, but now I just see the terminal. Is there a way to see a desktop (see below image) instead of just a terminal.
Asked
Active
Viewed 1,555 times
0
1 Answers
1
First of all, in order to access a desktop environment on ubuntu server, you need to have about 1G of ram and you need to install the "ubuntu-desktop" which is not included with the server by default. Do this by typing the following commands in that terminal:
sudo apt-get update
sudo apt-get install ubuntu-desktop
I'm not exactly sure how to access the desktop once it's installed but you need the desktop before you do anything.
If you don't have much ram, you can install something like Lubuntu or Xubuntu like this instead:
sudo apt-get update
sudo apt-get install lubuntu-desktop
For Xubuntu,
sudo apt-get update
sudo apt-get install xubuntu-desktop
image credits
http://www.everydaylinuxuser.com/2013/12/xubuntu-1310-same-again-please-bartender.html

mchid
- 43,546
- 8
- 97
- 150
ssh -X user@server
properly changing user and server. then after you have typed the password,gnome-session
– AlexGreg Aug 12 '14 at 22:32