Fast Free Remote Desktop - Mac to Ubuntu

1

1

Possible Duplicate:
Remote desktop to Mac from various platforms (Windows, Ubuntu)

I have an old machine running latest Ubuntu. Machine is Dell Optiplex gx260. I would like to know the best solution for a Remote Desktop solution to log into Ubuntu machine from my Mac that is:

  1. Free
  2. Fast

And if the software is not easy to install, then some instructions or link to those will be appreciated. Thanks.

sabertooth

Posted 2010-09-03T18:51:32.677

Reputation: 487

Question was closed 2010-09-05T09:45:02.397

Check out these threads. VNC, IME, gets horrible performance because it's only sending a screencast of your desktop compared to other solutions that send the much smaller (and therefore faster) drawing instructions.

– digitxp – 2010-09-03T19:12:47.590

Answers

1

What types of applications do you need to access on the Ubuntu side? If you don't need the entire desktop, you could consider using SSH with X11 forwarding. That is, log into Ubuntu from OS X using ssh -X and then run GUI programs. This depends on you installing X11 on OS X, which is available on your Mac OS X Install DVD.

A guide is available at this link. It's for an older version of Ubuntu; I think X11 forwarding is enabled by default in the current version 10.04. Of course, you could load the entire desktop, such as the example in the image below.

SSH with X11 forwarding

fideli

Posted 2010-09-03T18:51:32.677

Reputation: 13 618

X11 forwarding seems like the way to go. I do need to see the whole desktop though. Hope it can do that. – sabertooth – 2010-09-04T14:26:05.977

1

If you're looking for easy performance gains download the Java client for tightVNC and use it under OS X.

You do need a bash script to launch the java viewer on OS X easily (otherwise you have to do it manually via terminal).

#!/bin/bash
cd /Users/PATH/tightvnc/classes
java VncViewer HOST "HOST-IP" PORT 5900

and the preliminary solution was use VNC (Chicken of VNC) and must have vnc server on your ubuntu.
One thing that's sort of strange about the default VNC server on Ubuntu is that it requires you to be logged in at the terminal before it will share the desktop.

One thing you might try is sshing in and running an independent vncserver, set the password with vncpasswd, and then connect in from the mac.

Am1rr3zA

Posted 2010-09-03T18:51:32.677

Reputation: 4 715

2VNC gets horrible performance IME compared to RDP, XDMCP, etc. – digitxp – 2010-09-03T19:08:44.173

It's not too bad, and besides, the VNC server is already installed on Ubuntu. – nhinkle – 2010-09-03T19:12:22.550

I have heard about the performance issue with vnc – sabertooth – 2010-09-04T14:23:53.120