I am having trouble getting an x11 window of the desktop of a remote machine.

I am VPN'ed into a local network and I can get into the computer I want through the command line using:

ssh -X computer_name -l login_name

I thought that the -X would cause the remote machine's desktop to pop up in x11, and although x11 launched on my mac, I did not get an x11 window of the machines desktop.

I can get things like emacs to run and pop up in new x11 windows, but I want to get the whole desktop going.

I am running Mac OS 10.7, and the remote machine is running linux.

Any help would be appreciated.

link|improve this question

feedback

4 Answers

ssh -X (or -Y) only tunnels the connection to your local X server for the applications started on the remote machine from your SSH session. It cannot do anything about the desktop environment that is running on the remote machine's own X server.

You're probably looking for something like VNC, not X11 forwarding.

link|improve this answer
Yeah, the things is that I did this once before through the command line with ssh, and was able to get the remote machine's desktop to open in x11. I just can't remember what command I used. – weezybizzle Sep 6 '11 at 19:06
Interesting, did the remote desktop open in its own window? Are you sure you weren't running VNC or Xnest over SSH, which is also possible? – Frédéric Hamidi Sep 6 '11 at 19:08
Its possible. I just know that i did it all through the terminal and the desktop came up in x11. – weezybizzle Sep 6 '11 at 19:16
From what I am reading about doing this through vnc, I'm fairly certain I did not use vnc. – weezybizzle Sep 6 '11 at 19:20
I figured it out. i had to use the command: <code>gnome-session >&/dev/null & </code> – weezybizzle Sep 6 '11 at 19:54
show 2 more comments
feedback
up vote 1 down vote accepted

Figured it out.

after the command

ssh -X computer_name -l login_name

I had to start a gnome-session

gnome-session >&/dev/null &

this gave me the linux desktop in an x11 window.

link|improve this answer
I recommend using NX if you want to access a full desktop remotely. freenx.berlios.de – datenwolf Sep 7 '11 at 13:09
feedback

X-Window allows you to run programs remotely, and have their windows appear locally on your machine. As you stated, you were able to get this working properly. If you want to see the entire linux desktop on your mac, you will want to use a program like VNC.

You will need to run vncserver on your linux machine, then you can use any of a number of VNC clients on your mac to see the entire linux desktop. For example, Chicken of the VNC.

link|improve this answer
feedback

If you want your remote Linux desktop to be displayed on a window on your Mac you should use on your Mac (providing that the VPN is already setup and running, you have access to your Linux server, and XDMCP is configured on it):

$ Xephyr -query <linux-ip-or-name> :1
link|improve this answer
wtf is this, I need ssh xforwarding not vpn – holms Nov 9 '11 at 4:41
The OP clearly states: "I am VPN'ed..." – dtmilano Nov 9 '11 at 16:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.