Difference between revisions of "VNC"
From MidrangeWiki
MrDolomite (talk | contribs) m (created article, semi-decent 1st pass, will need more info and rounding out) |
MrDolomite (talk | contribs) m (gah, fix own edit, bad <ref>) |
||
Line 22: | Line 22: | ||
''where:'' | ''where:'' | ||
* ''systemname is the host name or IP address of the iSeries system where VNC is running'' | * ''systemname is the host name or IP address of the iSeries system where VNC is running'' | ||
− | * ''n is the numeric value that represents the display number that you want to start'' | + | * ''n is the numeric value that represents the display number that you want to start''<ref name="Start VNC Call QP2SHELL">[http://publib.boulder.ibm.com/infocenter/iseries/v5r3/index.jsp?topic=/rzaha/vnc.htm Tips on using VNC] from IBM Information Center</ref> |
− | <ref name="Start VNC Call QP2SHELL">[http://publib.boulder.ibm.com/infocenter/iseries/v5r3/index.jsp?topic=/rzaha/vnc.htm Tips on using VNC] from IBM Information Center</ref> | ||
==Ending VNC server processes== | ==Ending VNC server processes== | ||
Line 29: | Line 28: | ||
CALL QP2SHELL PARM('/QOpenSys/QIBM/ProdData/DeveloperTools/vnc/vncserver_java' '-kill' ':n') | CALL QP2SHELL PARM('/QOpenSys/QIBM/ProdData/DeveloperTools/vnc/vncserver_java' '-kill' ':n') | ||
</pre> | </pre> | ||
− | ''where n is the numeric value that represents the display number that you want to terminate.''<ref name="Start VNC Call QP2SHELL | + | ''where n is the numeric value that represents the display number that you want to terminate.''<ref name="Start VNC Call QP2SHELL"> |
Revision as of 17:45, 18 January 2008
- See also on Wikipedia: VNC
VNC is an acronym which stands for Virtual Network Computing. It is software which allows graphical desktop connections. On the AS/400, a PC can connect to an XWindows session using VNC.
VNC refers to:
- the server software
- the server process which accepts the incoming connection
- the client viewer software
Contents
Prerequisites
Starting VNC server processes
STRPTL CLIENT(*VNC)
CALL QP2SHELL PARM('/QOpenSys/QIBM/ProdData/DeveloperTools/vnc/vncserver_java' ':n') ADDENVVAR ENVVAR(DISPLAY) VALUE('systemname:n')
where:
- systemname is the host name or IP address of the iSeries system where VNC is running
- n is the numeric value that represents the display number that you want to start[3]
Ending VNC server processes
CALL QP2SHELL PARM('/QOpenSys/QIBM/ProdData/DeveloperTools/vnc/vncserver_java' '-kill' ':n')
where n is the numeric value that represents the display number that you want to terminate.<ref name="Start VNC Call QP2SHELL">
Connecting VNC client
References
- ↑ http://www-03.ibm.com/servers/enable/site/porting/tools/
- ↑ Usage instructions for VNC
- ↑ Tips on using VNC from IBM Information Center
Categories
This article is a stub. You can help by editing it.