<html><body bgcolor="#FFFFFF">
<p><b><u><font size="6" face="Arial">VNC</font></u></b>
<p><b><u><font size="6" face="Times New Roman">Description</font></u></b><u><font size="6" face="Times New Roman"> </font></u><br>
<font size="7" color="#002041" face="Arial">Virtual Network Computing </font><br>
<font size="4" face="Times New Roman">Through the use of </font><u><font size="4" color="#0000FF" face="Times New Roman">software</font></u><font size="4" face="Times New Roman"> VNC, acronym for virtual network computing, makes it possible to interact with a </font><u><font size="4" color="#0000FF" face="Times New Roman">computer</font></u><font size="4" face="Times New Roman"> from any computer or </font><u><font size="4" color="#0000FF" face="Times New Roman">mobile</font></u><font size="4" face="Times New Roman"> device on the </font><u><font size="4" color="#0000FF" face="Times New Roman">Internet</font></u><font size="4" face="Times New Roman">. VNC </font><u><font size="4" color="#0000FF" face="Times New Roman">software</font></u><font size="4" face="Times New Roman"> provides </font><u><font size="4" color="#0000FF" face="Times New Roman">cross-platform</font></u><font size="4" face="Times New Roman"> support allowing </font><u><font size="4" color="#0000FF" face="Times New Roman">remote</font></u><font size="4" face="Times New Roman"> control between different types of </font><u><font size="4" color="#0000FF" face="Times New Roman">computers</font></u><font size="4" face="Times New Roman">. To use VNC you must have a </font><u><font size="4" color="#0000FF" face="Times New Roman">network</font></u><font size="4" face="Times New Roman"> </font><u><font size="4" color="#0000FF" face="Times New Roman">TCP/IP</font></u><font size="4" face="Times New Roman"> connection, a VNC </font><u><font size="4" color="#0000FF" face="Times New Roman">server</font></u><font size="4" face="Times New Roman"> and a VNC viewer to connect to the computer running the VNC server.</font><br>
<br>
<b><u><font size="6" face="Times New Roman">System Requirements</font></u></b><font size="6" face="Times New Roman"> </font><font size="4" face="Times New Roman">Any system with video support, vncserver installed (comes standard with all Linux distributions), network connectivity and a client machine (like a laptop or desktop workstation) with VNC Viewer installed.</font><br>
<br>
<b><u><font size="5" face="Times New Roman">Hardware Requirements</font></u></b><br>
<br>
<font size="4" face="Times New Roman">On your server none</font><br>
<br>
<font size="4" face="Times New Roman">On your client it helps to have more ram for cache</font><br>
<br>
<b><u><font size="5" face="Times New Roman">Software Requirements</font></u></b><br>
<br>
<b><u><font size="5" face="Times New Roman">Linux OS</font></u></b><br>
<br>
<font size="4" face="Symbol">·        </font><font size="4" face="Times New Roman">ALL Distributions</font><br>
<br>
<br>
<b><u><font size="5" face="Times New Roman">Co-requisite Software</font></u></b><br>
<br>
<font size="4" face="Times New Roman">Make a script (example below) and name it xstartup</font><br>
<br>
<b><u><font size="6" face="Times New Roman">Installation and Operation Details</font></u></b><br>
<br>
<br>
<b><u><font size="5" face="Times New Roman">Estimated Duration</font></u></b><br>
<font size="4" face="Times New Roman">5 min</font><br>
<br>
<b><u><font size="5" face="Times New Roman">Installation Steps</font></u></b><font size="4" face="Times New Roman"> (show ALL commands used. e.g. even mount/unmount)</font><br>
<br>
<b><u><font size="4" face="Times New Roman">Step 1: Workstation Preparation</font></u></b><font size="4" face="Times New Roman"> </font><br>
<font size="4" face="Times New Roman">install vnc viewer on your local windows machine ie laptop or workstation </font><br>
<br>
<b><u><font size="4" face="Times New Roman">Step 2</font></u></b><u><font size="4" face="Times New Roman">: </font></u><b><u><font size="4" face="Times New Roman">Server</font></u></b><u><font size="4" face="Times New Roman"> </font></u><b><u><font size="4" face="Times New Roman">Preparation</font></u></b><font size="4" face="Times New Roman"> </font><br>
<font size="4" face="Times New Roman">Create xstartup file on remote machine</font><br>
<br>
<font face="Courier New">#!/bin/sh</font><br>
<br>
<font face="Courier New">xrdb $HOME/.Xresources</font><br>
<font face="Courier New">xsetroot -solid grey</font><br>
<br>
<font face="Courier New">if [ -r /etc/redhat-release ]</font><br>
<font face="Courier New">then</font><br>
<font face="Courier New">       /usr/bin/gnome-session</font><br>
<font face="Courier New">       exit 0</font><br>
<font face="Courier New">fi</font><br>
<br>
<font face="Courier New">if [ -r /etc/SuSE-release ]</font><br>
<font face="Courier New">then</font><br>
<font face="Courier New">       startkde</font><br>
<font face="Courier New">       exit 0</font><br>
<font face="Courier New">fi</font><br>
<br>
<font face="Courier New">xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &</font><br>
<font face="Courier New">twm &</font><br>
<font face="Courier New">exit 0</font><br>
<br>
<b><u><font size="4" face="Times New Roman">Step 3: Install Software</font></u></b><br>
<font size="4" face="Times New Roman">After you have loaded your os, set up the network on your remote machine, and you have created your xstartup file fallow the commands below</font><br>
<br>
<font size="4" face="Times New Roman">mkdir /root/.vnc</font><br>
<font size="4" face="Times New Roman">cp xstartup /root/.vnc</font><br>
<font size="4" face="Times New Roman">service vncserver restart</font><br>
<br>
<font size="4" face="Symbol">·        </font><font size="4" face="Times New Roman">On your server type </font><br>
<font size="4" face="Times New Roman">        </font><font size="4" face="Times New Roman">   vncserver :33</font><br>
<font size="4" face="Symbol">·        </font><font size="4" face="Times New Roman">The :33 sets it to port 33 this can set this to any port just substitute you favorite # where 33 is. </font><br>
<font size="4" face="Symbol">·        </font><font size="4" face="Times New Roman">There can be multiple sessions open on a machine you just have to open more ports by typing vncserver :<any number you want></font><br>
<br>
<br>
<b><u><font size="4" face="Times New Roman">Step 4: Verify Installation </font></u></b><br>
<br>
<font size="4" face="Times New Roman">To verify from you work station open your vnc viewer type in your remote system IP address with your port # fallowing (i.e. 9.44.64.106:33)</font><br>
<br>
<font size="4" face="Times New Roman">When prompted type in your password and hit enter the video from your remote machine should come up on your client.</font><br>
<br>
Shadd Gallegos<br>
WW e1350 Linux Cluster Development Interface to Manufacturing<br>
ShaddGa@us.ibm.com<br>
Desk 919-543-4258<br>
Cell 919-602-0001<br>
T/L 8-441-4258<br>
<img src="cid:10__=0ABBFAABDFFFAFA18f9e8a93df938@us.ibm.com" width="16" height="16" alt="Inactive hide details for "Robert Pelletier" <bpellet@mail.cslf.org>">"Robert Pelletier" <bpellet@mail.cslf.org><br>
<br>
<br>

<table V5DOTBL=true width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="1%"><img src="cid:20__=0ABBFAABDFFFAFA18f9e8a93df938@us.ibm.com" border="0" height="1" width="72" alt=""><br>
</td><td style="background-image:url(cid:30__=0ABBFAABDFFFAFA18f9e8a93df938@us.ibm.com); background-repeat: no-repeat; " width="1%"><img src="cid:20__=0ABBFAABDFFFAFA18f9e8a93df938@us.ibm.com" border="0" height="1" width="225" alt=""><br>

<ul>
<ul>
<ul>
<ul><b><font size="2">"Robert Pelletier" <bpellet@mail.cslf.org></font></b><br>
<font size="2">Sent by: rhn-users-bounces@redhat.com</font>
<p><font size="2">07/08/2005 12:34 PM</font><br>
<font size="2">Please respond to Red Hat Network Users List</font></ul>
</ul>
</ul>
</ul>
</td><td width="100%"><img src="cid:20__=0ABBFAABDFFFAFA18f9e8a93df938@us.ibm.com" border="0" height="1" width="1" alt=""><br>
<font size="1" face="Arial">  </font><br>
<font size="2"> To:     </font><font size="2">"Red Hat Network Users List" <rhn-users@redhat.com></font><br>
<font size="2"> cc:     </font><br>
<font size="2"> Subject:        </font><font size="2">RE: [rhn-users] Install of VNC (Virtual Network Computing)</font></td></tr>
</table>
<br>
<br>
<font color="#0000FF" face="Arial">After doing the VNCSERVER am I supposed to logoff? If so how do I do it? Also we are connecting from another session but all they see is a gray screen. </font><br>
<font color="#0000FF" face="Arial">Do I have to do anything to the xstartup file? It is pointing to an init file. Thanks all.</font><br>
<font color="#0000FF" face="Arial">Bob</font><br>
<font size="4"> </font>
<p><b><font size="4" color="#008080" face="Lucida Handwriting">Stay COOL</font></b><b><font size="4" color="#00FF00" face="Lucida Handwriting"> !</font></b><b><font size="4"> </font></b><b><font size="4" color="#FF0000" face="Lucida Handwriting">Happy Summer</font></b><b><font size="4" color="#0000FF" face="Lucida Handwriting"> !</font></b><b><font size="4"> </font></b><b><font color="#008080" face="Lucida Handwriting">  </font></b><b><font size="4"> </font></b><b><font color="#0000FF" face="Lucida Handwriting"><br>
            </font></b><font color="#008080" face="Arial"><br>
Bob Pelletier</font><font size="4"> </font><font color="#008080" face="Arial"><br>
Connecticut Student Loan Foundation</font><font size="4"> </font><font color="#008080" face="Arial"><br>
Rocky Hill, Connecticut</font><font size="4"> </font>
<ul>
<ul><font face="Tahoma">-----Original Message-----</font><b><font face="Tahoma"><br>
From:</font></b><font face="Tahoma"> Liz Ackerman [<a href="mailto:lackerman@meritalberta.com">mailto:lackerman@meritalberta.com</a>]</font><b><font face="Tahoma"><br>
Sent:</font></b><font face="Tahoma"> Friday, July 08, 2005 12:27 PM</font><b><font face="Tahoma"><br>
To:</font></b><font face="Tahoma"> Red Hat Network Users List</font><b><font face="Tahoma"><br>
Subject:</font></b><font face="Tahoma"> RE: [rhn-users] Install of VNC (Virtual Network Computing)<br>
</font><br>
<font face="Tahoma">Thanks for the tip, Kevin...the memory stick that is.</font><br>
<font size="4"> </font><br>
<font face="Tahoma">I have bought and downloaded the newest version of RealVNC for my Linux box but haven't installed it yet.  I was told by their tech support that will allow me to attach to the server and view the current session, instead of creating a new session on the server.  Can you verify this is true??</font><br>
<font size="4"> </font><br>
<font face="Tahoma">Thanks.</font><br>
<font size="4"> </font><br>
<font face="Tahoma">Liz</font><br>
<font size="4"> </font><br>
<font face="Tahoma">PS My condolences to all Londoners on your tragic losses...what a shock that was to hear about it on the news as we drove to work.  I have an uncle, aunt and cousins living in Maidenhead...getting a little too close to home.</font><br>
<font size="4"> </font><br>
<font size="4">Robert Pelletier wrote: </font>
<ul>
<ul><tt><font size="4">Good Day All. I have been asked to install VNC first on my PC and then the production server. I am a real Linux newbie. Can someone point me to a good site to down load it from or is it an RPM in Red Hat v9? Also is it part of RH E3? Thanks for any help the group can give me.   <br>
  </font></tt></ul>
</ul>
<font size="4">Good, VNC is absolutely brilliant and a godsend for remote support.<br>
<br>
We use tightvnc (</font><a href="http://www.tightvnc.com/"><u><font size="4" color="#0000FF">www.tightvnc.com</font></u></a><font size="4">), the RPM just installed on ES3 and it works a charm. If you only want to use your pc as a client then there's no install required. Just download vncviewer and run it! Personally I have putty and vncviewer on a memory stick which give me full access to the servers.<br>
</font><br>
<font size="4">-- </font><font color="#000099" face="Arial"><br>
Kevin Thorpe</font><tt>_______________________________________________<br>
rhn-users mailing list<br>
rhn-users@redhat.com<br>
</tt><tt><a href="https://www.redhat.com/mailman/listinfo/rhn-users">https://www.redhat.com/mailman/listinfo/rhn-users</a></tt>

</ul>
</ul>
</body></html>