I have the following set up:
|-----------------| |---------------|
| Windows | LAN (or VPN) | Linux box |
| (local machine) | <--------------------> | |
|-----------------| |---------------|
and I would like to access my Emacs and Eclipse windows on the Linux box from my Windows machine with minimal latency.
My options seem to be:
- VNC
- Virtualization of a Linux guest on my local Windows host using for example Virtualbox with Ubuntu, and then
ssh -Xto the Linux box from it (here is a thread that discusses configurations for fast ssh X tunneling) - cygwin with an X server and
ssh -Xto the remote box.
At the moment I use RealVNC, but I have noticed some notable latency. After doing some research I read on Wikipedia the following:
The VNC protocol is pixel-based. Although this leads to great flexibility (i.e.- any type of desktop can be displayed), it is often less efficient than solutions that have a better understanding of the underlying graphic layout like X11 or Windows Remote Desktop Protocol
This makes me wonder, what options do I have to get the fastest access to remote X windows from a local Windows machine?
ssh -Xis what i use via putty, some colleagues use xming though.xmingto do remote X with Putty. How exactly do youssh -Xin Putty? I have clicked onEnable X11 forwardingin Putty, but this does not seem to be enough.