I want to access solaris 10 GUI screen from my windows xp machine. Is there any software which can provide this flexibility ?
Thanks,
I want to access solaris 10 GUI screen from my windows xp machine. Is there any software which can provide this flexibility ?
Thanks,
Yes. Assuming your Solaris box has X already installed:
ssh -Y username@[solaris box ip]
(note you may need to run /usr/openwin/bin/xhost +
first)/usr/openwin/bin/xclock
on my Solaris)CygWin comes with an X display server so you should be able to run that, set up a DISPLAY
variable to your Windows box (on the Solaris box) and run any GUI program you want.
For example, download CygWin using that link above, then install everything, not just the default packages.
Then start up the X server on your Windows box by choosing Start
, All Programs
, Cygwin-X
and XWin Server
.
Now, let's say your Windows IP address is 192.168.31.31 - you would, on the Solaris box, do something like:
export DISPLAY=192.168.31.31:0.0
xeyes &
That should run xeyes (or whatever actual program you want to run) on your Solaris box, while putting the window (and input) for it on your Windows box.