Ubuntu – Making Remotely Connected ubuntu server as GUI enabled

remote accessremote desktopserver

I am trying to connect to a remote server in cloud hosting service using remote desktop client application. Actually, the remote server is a server edition. I need it as GUI enabled like an Ubuntu desktop edition so that it will be user friendly. So I have installed Ubuntu-desktop using sudo apt-get install ubuntu-desktop.

I'm able to connect to the server via putty SSH client. In putty we can run in command line mode only. I want to run the server in GUI mode. I can't access the server as GUI enabled in remote desktop client. Mine is Ubuntu 12.04 LTS. The remote server is also Ubuntu 12.04 LTS.

What shall I do now?

Best Answer

NX Free Edition for Linux

An enterprise-class multi-platform solution for remote access and virtual desktop delivery.

http://www.nomachine.com/select-package.php?os=linux&id=1

DEB version

Download the DEBs

Change your working directory to the location where you saved the package and install it by running from a console:

  $ sudo dpkg -i nxclient_3.5.0-7_i386.deb
  $ sudo dpkg -i nxnode_3.5.0-9_i386.deb
  $ sudo dpkg -i nxserver_3.5.0-11_i386.deb

If you don't have the sudo utility installed, log on as superuser ("root") and run the commands without sudo.

Note: click here for detailed instructions on how to install the NX Client, NX Node and NX Server packages. The NX service can be controlled by the command

/usr/NX/bin/nxserver --status|--start|--stop|--restart.

Additional commands are available to configure the server. Try

/usr/NX/bin/nxserver --help

for more information.

Please, don't forget to download and read the NX Server Administrator's Guide available here.

Related Question