Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sun Fire T2000 with GUI

Status
Not open for further replies.

flister98

MIS
Jul 8, 2015
5
US
Can a GUI (Gnome or others) be installed on a T2000 and be seen from PuTTY on my laptop ??

I found a site in which to install Gnome, but got fatal errors, something about missing drivers or hardware :(

Thnaks
 
Yes, Solaris 11 has a GUI, but No, you can't use it via PuTTY and a serial connection.

You will need to be able to reach the machine via Ethernet. You will also need an X-Windows server on your PC. I don't know if PuTTY can do this (I don't use PuTTY). Maybe Google for 'Putty x-windows'.

Then, assuming you've installed the Solaris GUI software (look in [tt]/usr/openwin[/tt]), this should get you close...
[ol 1]
[li]Log into the T2000 via PuTTY as root[/li]
[li]Start your X-Windows server on your PC (yes, it's called a server, not a client)[/li]
[li]Via PuTTY, on the T2k, define where the display is to be sent. Use your PC's IP with this command '[tt]export DISPLAY=X.X.X.X:0.0[/tt]'[/li]
[li]Quick test with '[tt]/usr/openwin/bin/xclock[/tt]'. A clock from the T2k should pop up on your PC if everything is good.[/li]
[li]Start the GUI: [tt]/etc/init.d/dtlogin start[/tt][/li]
[/ol]
At this point, you should see some gui-ness trying to start on your PC. If not, look for error messages and dig in there.

Depending on your X-Windows server, you may also be able to have it launch the whole desktop for you, so you don't need to use PuTTY at all.

 
Use your PC's IP with this command 'export DISPLAY=X.X.X.X:0.0' ???
Is this the IP of the T2000 Solaris machine or the IP of the laptop I am using to connect to the T2000 ???

If I am connecting to the T2000 from outside the local network (ie from my PC at work), what IP do I use ??

Thanks :)
 
Ok, say your IPs are these...

Windows PC = 10.0.0.11
Sun T2000 = 10.0.0.22

On the Sun machine, you would issue this command...

Code:
export DISPLAY=10.0.0.11:0.0

This tells any gui capable program you then run on the Sun to use the display on the PC for all its gui-ness. So when you type this command on the Sun, '[tt]/usr/openwin/bin/xclock[/tt]', the xclock program will use your PC for its display.

But, you first have to have an X-Windows server running on your PC to be able to display the remote client app's windows.

Also keep in mind that you have just defined that 'DISPLAY' environment variable for that login session you typed it into. It's not a machine-wide definition.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top