How to access solaris 10 gui from windows machine?

24,282

Solution 1

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

Solution 2

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.

Solution 3

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.

Share:
24,282
MohammedYakub M.
Author by

MohammedYakub M.

Updated on July 09, 2022

Comments

  • MohammedYakub M.
    MohammedYakub M. almost 2 years

    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.
    MohammedYakub M. over 12 years
    thanks for your quick reply...will you please provide better steps how do i proceed with it ? do i need to install CygWin on both side ?
  • paxdiablo
    paxdiablo over 12 years
    No problem, @yakub_moriss, I added some more detailed steps.
  • tumchaaditya
    tumchaaditya over 11 years
    i am getting "unable to open display <my ip>:0.0"...any idea why?
  • Amil
    Amil over 11 years
    Try searching online "unable to open display" ":0.0". There are plenty of discussions with the same question.