how do you access and control ubuntu vps via desktop?

0

1

how do you control your webserver vps using a remote desktop?

for example, I am on ubuntu, is it possible to control the ubuntu gui on the vps server?

I've done it with windows server using the Remote Desktop Client in accessories but I don't know how to do this for linux servers.

Kim Jong Woo

Posted 2012-01-18T21:59:53.530

Reputation: 113

Answers

2

I don't know why you'd need a gui to control a server - the usual way is to use ssh and putty(or some other ssh client) and cli. That said, there's a few other alternatives to VNC that are worth looking at if you DO need a graphical desktop accessed remotely

The usual way to do graphical things remotely on linux is with x forwarding - you can use a x client, and simply export the window to your own system with ssh -X (hostname) (program), or export the entire desktop with xdmp. The advantage with this is, you can pretty much use software that comes built into any linux system.

There's also some alternate remote access such as nomachine's nx or its derivatives that are worth looking at - in my experience nx is faster than x forwarding or VNC by quite a bit, and is secure since its ssh tunneled. It also lets you disconnect but keep persistent sessions running , even seperate ones, rather than tieing you to a single session as VNC does.

Journeyman Geek

Posted 2012-01-18T21:59:53.530

Reputation: 119 122

1

This is usually done with VNC.

Rob Wouters

Posted 2012-01-18T21:59:53.530

Reputation: 356