Originally Posted by
stephenstark
Thank you for your reply. We are trying to initiate a desktop session on this machine so that we can launch a browser session on the machine.
You don't need a full desktop to do that. From your workstation, run
Code:
ssh -X {remote-user}@{IP} firefox &
An exact example is:
Code:
ssh -X thefu@regulus /usr/bin/firefox &
I exaggerated the spacing. 1 space or 50, doesn't matter. The places without a space cannot have any.
This is 1000x easier than setting up VNC.
Of course, ssh has to be setup on both sides, but ssh is a base tool for all Linux systems anyways.
You could also run the browser locally, but use an ssh tunnel/proxy that ends on the remote system so that all your traffic appears to come from that location. This is handy too. I use both multiple times a week, but mainly the ssh -X method is used daily, all day, for almost any program.