2

I want to access solaris 10 GUI screen from my windows xp machine. Is there any software which can provide this flexibility ?

Thanks,

MohammedYakub M.
  • 2,893
  • 5
  • 31
  • 42

3 Answers3

2

Yes. Assuming your Solaris box has X already installed:

  1. Install Cygwin on your Windows machine
  2. While installing, once you get to the packages page, make sure that X11 is set to Install so that you get all X11 packages
  3. Once Cygwin is done installing, run Start->All Programs->Cygwin-X->XWin Server
  4. Follow these directions (copied below for convenience)
  5. Type ssh -Y username@[solaris box ip] (note you may need to run /usr/openwin/bin/xhost + first)
  6. Run any program which can use X11 (i.e. /usr/openwin/bin/xclock on my Solaris)
  7. It should display in a GUI windows
Amil
  • 609
  • 1
  • 5
  • 12
1

Just install MobaXterm. It is free and much easier to use than any of the other recommendations you got, IMHO. It is a terminal emulator (based on Pytty), an X Server, etc, all in one easy to use package.

peterh
  • 18,404
  • 12
  • 87
  • 115
1

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.

paxdiablo
  • 854,327
  • 234
  • 1,573
  • 1,953