<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: VNC on HP-UX11 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925039#M408697</link>
    <description>The whole point of using VNC is *not* to have to fool with X -- the VNC server asks as an X display on the host side and and a VNC server on the network side.&lt;BR /&gt;&lt;BR /&gt;I have used VNC 4.1.1 many times on HPUX .&lt;BR /&gt;You don't have to modify any files after installation and you normally don't have to monkey with DISPLAY.  All you need is to be sure that  '/usr/bin/X11/mwm' exists -- it's normally there by default.&lt;BR /&gt;&lt;BR /&gt;After installation, just log in as whatever user you want VNC to run as and execute 'vncserver'.  If this is the first time that 'vncserver' has been run for the user, you'll be asked to assign a password -- it can be modified later via 'vncpasswd' .&lt;BR /&gt;&lt;BR /&gt;You can launch vncserver multiple times and even as different users; i.e., you could have one vncserver launched as "root" and 2 launched as "user -- each user/vnc will have its own password.  Each session will have its own display number ( the ":N" that is shown when you start vncserver).&lt;BR /&gt;&lt;BR /&gt;From a PC or Unix client, connect via 'vncviewer' to 'server:N', where N is the session you want to connect to.&lt;BR /&gt;When you connect, there should be an 'xterm' there.  DISPLAY is normally already set to&lt;BR /&gt;  :N:0&lt;BR /&gt;again, where N is the session number.&lt;BR /&gt;&lt;BR /&gt;To kill a server, issue&lt;BR /&gt;  vncserver -kill :N&lt;BR /&gt;where N is the session you want to kill.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If you execute vncserver a bunch of times, those servers will stay running until you either kill them or reboot.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Make sure that any/all VNC sessions are gone:&lt;BR /&gt;&lt;BR /&gt;# for x in `ls  /usr/spool/sockets/X11`; do vncserver -kill :$x; done&lt;BR /&gt;&lt;BR /&gt;Then, delete any remaining "N" files in "/usr/spool/sockets/X11" .&lt;BR /&gt;&lt;BR /&gt;Now, start vncserver.&lt;BR /&gt;&lt;BR /&gt;# ps -ef | grep -i vnc | grep -v grep.&lt;BR /&gt;&lt;BR /&gt;You should see a server process:&lt;BR /&gt;  Xvnc :1 ...&lt;BR /&gt;&lt;BR /&gt;Connect to "host:1" from vncviewer on a PC client.&lt;BR /&gt;Immediately in the 'xterm' window, do&lt;BR /&gt;&lt;BR /&gt;# echo $DISPLAY&lt;BR /&gt;&lt;BR /&gt;it should show ":1.0"&lt;BR /&gt;&lt;BR /&gt;If not, a profile may be setting or unsetting it -- just manually set it to that:&lt;BR /&gt;export DISPLAY=:1.0&lt;BR /&gt;&lt;BR /&gt;Now, 'xhost +' .&lt;BR /&gt;&lt;BR /&gt;Then, 'xclock &amp;amp;' should give you a clock !!&lt;BR /&gt;&lt;BR /&gt;It's good to run the X programs in background (e.g., 'sam &amp;amp;') so that they don't tie up your term window -- unless you have other term windows available.&lt;BR /&gt;&lt;BR /&gt;I typically launch another 'xterm' or two to have multiple term windows:&lt;BR /&gt; # xterm -sb -sl 500 &amp;amp;&lt;BR /&gt; # xterm -sb -sl 500 &amp;amp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;bv&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 12 Sep 2005 21:01:10 GMT</pubDate>
    <dc:creator>Bob_Vance</dc:creator>
    <dc:date>2005-09-12T21:01:10Z</dc:date>
    <item>
      <title>VNC on HP-UX11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925032#M408690</link>
      <description>Hi,&lt;BR /&gt;I am new to install Vncserver on HP-UX system.&lt;BR /&gt;I have installed the depot file downloaded from realvnc.com. Now I have directory /usr/local/bin&lt;BR /&gt;where Xvnc,vncserver files are there.&lt;BR /&gt;&lt;BR /&gt;Now how to configure the vnc on server so that I can access it from client.I did not find any document that which files I have to modify and what parameters I have to set.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jack&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 11 Sep 2005 07:48:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925032#M408690</guid>
      <dc:creator>Jack_126</dc:creator>
      <dc:date>2005-09-11T07:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: VNC on HP-UX11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925033#M408691</link>
      <description>I used it on HPUs and that's what I did:&lt;BR /&gt;&lt;BR /&gt;You have directory:&lt;BR /&gt;/.vns    (hidden in the root)&lt;BR /&gt;&lt;BR /&gt;There you have file "xstartup" where you configure all the properties of vnc. Permissions, what environment to run etc ...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I run there "mwm" and also out "xhost +" so everyone can connect, because it's private network with no access to/from outside.&lt;BR /&gt;&lt;BR /&gt;Alex.</description>
      <pubDate>Sun, 11 Sep 2005 08:03:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925033#M408691</guid>
      <dc:creator>Alex Lavrov.</dc:creator>
      <dc:date>2005-09-11T08:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: VNC on HP-UX11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925034#M408692</link>
      <description>Hi Alex,&lt;BR /&gt;&lt;BR /&gt;I am able to connect to VNC server. but not able to connect to the following ports.&lt;BR /&gt;The following message is comming.&lt;BR /&gt;&lt;BR /&gt;Warning: hp124:1 is taken because of /usr/spool/sockets/X11/1&lt;BR /&gt;Remove this file if there is no X server hp124:1&lt;BR /&gt;&lt;BR /&gt;Warning: hp124:2 is taken because of /usr/spool/sockets/X11/2&lt;BR /&gt;Remove this file if there is no X server hp124:2&lt;BR /&gt;&lt;BR /&gt;when I go to the following directory. These are owned by other user.&lt;BR /&gt;srwxrwxrwx   1 root       sys              0 Jul  2  2003 0&lt;BR /&gt;srwxrwxrwx   1 oracle     dba              0 May 16  2002 1&lt;BR /&gt;srwxrwxrwx   1 root       sys              0 Aug 29 11:13 10&lt;BR /&gt;srwxrwxrwx   1 appldev    oaa              0 May 12  2004 2&lt;BR /&gt;srwxrwxrwx   1 neerajb    users            0 Sep 11 11:05 5&lt;BR /&gt;srwxrwxrwx   1 devendra   users            0 Sep 11 11:33 6&lt;BR /&gt;-rw-------   1 appldev    oaa             44 May 12  2004 appldev:2&lt;BR /&gt;-rw-------   1 oracle     dba             44 May 17  2002 oracle:0&lt;BR /&gt;-rw-------   1 oracle     dba             44 May 16  2002 oracle:1&lt;BR /&gt;-rw-------   1 root       sys             44 Jul  2  2003 root:0&lt;BR /&gt;-rw-------   1 root       sys             44 Aug 29 11:13 root:10&lt;BR /&gt;&lt;BR /&gt;how can I use these ports.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 11 Sep 2005 10:46:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925034#M408692</guid>
      <dc:creator>Jack_126</dc:creator>
      <dc:date>2005-09-11T10:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: VNC on HP-UX11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925035#M408693</link>
      <description>I don't think I understood what ports are you talking about?&lt;BR /&gt;&lt;BR /&gt;The messages you get are only warning, do they prevent you to connect to VNC?&lt;BR /&gt;&lt;BR /&gt;Alex.</description>
      <pubDate>Sun, 11 Sep 2005 10:50:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925035#M408693</guid>
      <dc:creator>Alex Lavrov.</dc:creator>
      <dc:date>2005-09-11T10:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: VNC on HP-UX11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925036#M408694</link>
      <description>Hi Jack ,&lt;BR /&gt;&lt;BR /&gt;You need to kill the port 1 ,&lt;BR /&gt;&lt;BR /&gt;Try # vncserver -kill :1&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;To configure from client , to get the xwindow , you need to define a port in the server and the same port needs to define in the client , that will establish a ssh tunnel to get xterm.&lt;BR /&gt;&lt;BR /&gt;I use putty to establish a ssh tunnel , and in tunnel give port:5910 , for port no 10.&lt;BR /&gt;&lt;BR /&gt;You can run at the server , for that user which will be connecting for X window , &lt;BR /&gt;$ vncserver&lt;BR /&gt;And it will ask password and will assign a port number. And create a password in &lt;BR /&gt;$HOME/.vnc/password   [ in case of password forget need to delete this file to clear pw]&lt;BR /&gt;&lt;BR /&gt;Let us know your senario.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Raj.</description>
      <pubDate>Sun, 11 Sep 2005 11:09:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925036#M408694</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-11T11:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: VNC on HP-UX11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925037#M408695</link>
      <description>Try using port #  3  it is not used,&lt;BR /&gt;&lt;BR /&gt;you can check with this for the ports used:&lt;BR /&gt;# ls -l /usr/spool/sockets/X11/&lt;BR /&gt;&lt;BR /&gt;Cheers ,&lt;BR /&gt;Raj.</description>
      <pubDate>Sun, 11 Sep 2005 11:13:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925037#M408695</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-11T11:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: VNC on HP-UX11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925038#M408696</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am facing the problem on my hp-ux system where I have configured the vnc server.This entry I have made in .profile of the user.&lt;BR /&gt;&lt;BR /&gt;export DISPLAY=10.15.235.45:0.0 or 10.0&lt;BR /&gt;xhost +&lt;BR /&gt;&lt;BR /&gt;The error i receive&lt;BR /&gt;xhost: unable to open display"10.15.235.45:0.0"&lt;BR /&gt;&lt;BR /&gt;because of this I ma not able to run the xclock as well.&lt;BR /&gt;&lt;BR /&gt;Any suggestion how I can resolve it.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Jack</description>
      <pubDate>Mon, 12 Sep 2005 08:14:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925038#M408696</guid>
      <dc:creator>Jack_126</dc:creator>
      <dc:date>2005-09-12T08:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: VNC on HP-UX11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925039#M408697</link>
      <description>The whole point of using VNC is *not* to have to fool with X -- the VNC server asks as an X display on the host side and and a VNC server on the network side.&lt;BR /&gt;&lt;BR /&gt;I have used VNC 4.1.1 many times on HPUX .&lt;BR /&gt;You don't have to modify any files after installation and you normally don't have to monkey with DISPLAY.  All you need is to be sure that  '/usr/bin/X11/mwm' exists -- it's normally there by default.&lt;BR /&gt;&lt;BR /&gt;After installation, just log in as whatever user you want VNC to run as and execute 'vncserver'.  If this is the first time that 'vncserver' has been run for the user, you'll be asked to assign a password -- it can be modified later via 'vncpasswd' .&lt;BR /&gt;&lt;BR /&gt;You can launch vncserver multiple times and even as different users; i.e., you could have one vncserver launched as "root" and 2 launched as "user -- each user/vnc will have its own password.  Each session will have its own display number ( the ":N" that is shown when you start vncserver).&lt;BR /&gt;&lt;BR /&gt;From a PC or Unix client, connect via 'vncviewer' to 'server:N', where N is the session you want to connect to.&lt;BR /&gt;When you connect, there should be an 'xterm' there.  DISPLAY is normally already set to&lt;BR /&gt;  :N:0&lt;BR /&gt;again, where N is the session number.&lt;BR /&gt;&lt;BR /&gt;To kill a server, issue&lt;BR /&gt;  vncserver -kill :N&lt;BR /&gt;where N is the session you want to kill.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If you execute vncserver a bunch of times, those servers will stay running until you either kill them or reboot.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Make sure that any/all VNC sessions are gone:&lt;BR /&gt;&lt;BR /&gt;# for x in `ls  /usr/spool/sockets/X11`; do vncserver -kill :$x; done&lt;BR /&gt;&lt;BR /&gt;Then, delete any remaining "N" files in "/usr/spool/sockets/X11" .&lt;BR /&gt;&lt;BR /&gt;Now, start vncserver.&lt;BR /&gt;&lt;BR /&gt;# ps -ef | grep -i vnc | grep -v grep.&lt;BR /&gt;&lt;BR /&gt;You should see a server process:&lt;BR /&gt;  Xvnc :1 ...&lt;BR /&gt;&lt;BR /&gt;Connect to "host:1" from vncviewer on a PC client.&lt;BR /&gt;Immediately in the 'xterm' window, do&lt;BR /&gt;&lt;BR /&gt;# echo $DISPLAY&lt;BR /&gt;&lt;BR /&gt;it should show ":1.0"&lt;BR /&gt;&lt;BR /&gt;If not, a profile may be setting or unsetting it -- just manually set it to that:&lt;BR /&gt;export DISPLAY=:1.0&lt;BR /&gt;&lt;BR /&gt;Now, 'xhost +' .&lt;BR /&gt;&lt;BR /&gt;Then, 'xclock &amp;amp;' should give you a clock !!&lt;BR /&gt;&lt;BR /&gt;It's good to run the X programs in background (e.g., 'sam &amp;amp;') so that they don't tie up your term window -- unless you have other term windows available.&lt;BR /&gt;&lt;BR /&gt;I typically launch another 'xterm' or two to have multiple term windows:&lt;BR /&gt; # xterm -sb -sl 500 &amp;amp;&lt;BR /&gt; # xterm -sb -sl 500 &amp;amp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;bv&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Sep 2005 21:01:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925039#M408697</guid>
      <dc:creator>Bob_Vance</dc:creator>
      <dc:date>2005-09-12T21:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: VNC on HP-UX11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925040#M408698</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;seems like you don't have an xclient (e.g. reflection x) running on the client pc.&lt;BR /&gt;&lt;BR /&gt;please confirm&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Tue, 13 Sep 2005 00:51:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925040#M408698</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-09-13T00:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: VNC on HP-UX11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925041#M408699</link>
      <description>&amp;gt;export DISPLAY=10.15.235.45:0.0 or 10.0&lt;BR /&gt;&amp;gt;xhost +&lt;BR /&gt;&amp;gt; xhost: unable to open display"10.15.235.45:0.0"&lt;BR /&gt;&lt;BR /&gt;Yes, the error he's getting is technically because he has no X server at 10.15.235.45 serving display0/screen0.&lt;BR /&gt;&lt;BR /&gt;But, if he's doing this in the context of VNC, the X server is the localhost 'vncserver' serving display "1:0"  (or N:0, depending on how many VNC sessions he has running).&lt;BR /&gt;&lt;BR /&gt;Normally, you should not have to set DISPLAY in the xterm window after connecting to 'vncserver' using 'vncviewer' VNC, unless your profile is mucking around with DISPLAY.&lt;BR /&gt;Again, if this is true, you must manually reset it (or add new code to the profile;.):&lt;BR /&gt;&lt;BR /&gt;export DISPLAY=":1.0"&lt;BR /&gt;&lt;BR /&gt;To see the VNC processes, do&lt;BR /&gt;# ps -ef | grep -i vnc | grep -v grep&lt;BR /&gt;    bobv  1369     1  0 07:53:38 pts/0     0:10 Xvnc :1 -desktop roger:1 () -httpd /usr/local/vnc/classes -a&lt;BR /&gt;    bobv  1375     1  0 07:53:42 pts/0     0:00 vncconfig -iconic&lt;BR /&gt;&lt;BR /&gt;Here, we have an Xvnc associated with ":1" (the first argument).&lt;BR /&gt;This Xvnc process associated with ":1" will be serving clients on Xwindow port 6001 and VNC clients on port 5901.&lt;BR /&gt;&lt;BR /&gt;Note that this is a "real" X server and it can actually serve X clients from *anywhere*, e.g., another HPUX box, assuming that 'xhost' had been used to allow it (e.g., 'xhost +'.  For example, I could have another telnet login on the same host, set 'export DISPLAY=127.0.0.1:1.0', then run 'xclock' and an xclock window will appear in the VNC session.&lt;BR /&gt;Or even from another Unix host entirely!&lt;BR /&gt;set 'export DISPLAY=vncserverhost:1.0', then run 'xclock'.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;bv</description>
      <pubDate>Tue, 13 Sep 2005 07:59:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925041#M408699</guid>
      <dc:creator>Bob_Vance</dc:creator>
      <dc:date>2005-09-13T07:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: VNC on HP-UX11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925042#M408700</link>
      <description>hi BV,&lt;BR /&gt;&lt;BR /&gt;thanks for such a nice clarification. But you said that we don't have to edit or modify any file.After installing the VNC server. I modified two files /etc/services and /etc/inetd.conf. I am attaching the input of those files. It will be very nice if you could explain the concept behind it.&lt;BR /&gt;/etc/services&lt;BR /&gt;# Add VNC services&lt;BR /&gt;vnc800x600x8 5950/tcp vnc800x600x24 5951/tcp&lt;BR /&gt;vnc1024x768x8 5952/tcp&lt;BR /&gt;vnc1024x768x24 5953/tcp&lt;BR /&gt;&lt;BR /&gt;/etc/inetd.conf&lt;BR /&gt;#&lt;BR /&gt;# VNC Servers&lt;BR /&gt;#&lt;BR /&gt;vnc800x600x8 stream tcp nowait vnc /usr/local/bin/Xvnc Xvnc -dpi 75 -i&lt;BR /&gt;netd -query localhost -once -geometry 800x600 -depth 8&lt;BR /&gt;vnc800x600x24 stream tcp nowait vnc /usr/local/bin/Xvnc Xvnc -dpi 75 -i&lt;BR /&gt;netd -query localhost -once -geometry 800x600 -depth 24&lt;BR /&gt;vnc1024x768x8 stream tcp nowait vnc /usr/local/bin/Xvnc Xvnc -dpi 75 -i&lt;BR /&gt;netd -query localhost -once -geometry 1024x768 -depth 8&lt;BR /&gt;vnc1024x768x24 stream tcp nowait vnc /usr/local/bin/Xvnc Xvnc -dpi 75 -i&lt;BR /&gt;netd -query localhost -once -geometry 1024x768 -depth 24&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jack</description>
      <pubDate>Tue, 13 Sep 2005 10:50:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925042#M408700</guid>
      <dc:creator>Jack_126</dc:creator>
      <dc:date>2005-09-13T10:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: VNC on HP-UX11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925043#M408701</link>
      <description>Well, I was saying that it is not *necessary* to modify any files to get it to work.&lt;BR /&gt;Beyond that, there are many things that you can do.&lt;BR /&gt;&lt;BR /&gt;In my discussion, you'll notice that I manually executed 'vncserver' to get Xvnc launched.  That's how I typically do it -- it's basically for me and when I'm done I just do a 'vncserver -kill :N' .  I'm not a GUI kind of guy, so I only use VNC for when I want to run some program, like 'sam', in GUI mode rather than character mode, or some program that *only* supports X, like the Oracle installer.&lt;BR /&gt;&lt;BR /&gt;VNC is great from connecting remotely because it is much more bandwidth efficient than a direct Xwindow connection.  Try running Data Protector from home over X -- on second thought, don't  even try it ;&amp;gt;)  Using VNC, it's almost like you're right there on the X console at the server.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;What you have here is cool, in that you've set up some service entries that will be handled dynamically by 'inetd'.&lt;BR /&gt;&lt;BR /&gt;When a vncviewer connects to port 5952 (instead of 5901, which is the target of the "normal" 'vncviewer host:1'), 'inetd' is listening (the "vnc1024x768x8 5952/tcp" entry in /etc/services) and will launch 'Xvnc' as defined by the "vnc1024x768x8 ..." entry in /etc/inetd.conf.&lt;BR /&gt;&lt;BR /&gt;However, the client will have to know to connect to :52, rather than :1&lt;BR /&gt;i.e.,&lt;BR /&gt;vncviewer host:52&lt;BR /&gt;&lt;BR /&gt;The entries that you have defined, with "-query" assume that  XDMCP is being supported - basically that you have CDE dtlogin running from init state 3.  This is normal for HPUX and allows you to connect to CDE window/desktop manager on the server.&lt;BR /&gt;&lt;BR /&gt;I haven't really played with it.&lt;BR /&gt;I really don't use CDE and prefer to run Xwindow programs ad hoc rather than having a GUI desktop -- I'm a command-line kinda guy.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;bv</description>
      <pubDate>Tue, 13 Sep 2005 14:14:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925043#M408701</guid>
      <dc:creator>Bob_Vance</dc:creator>
      <dc:date>2005-09-13T14:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: VNC on HP-UX11</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925044#M408702</link>
      <description>Thnks BV and all other experts. I got answer for my most of the querys.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jack</description>
      <pubDate>Wed, 14 Sep 2005 16:11:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vnc-on-hp-ux11/m-p/4925044#M408702</guid>
      <dc:creator>Jack_126</dc:creator>
      <dc:date>2005-09-14T16:11:40Z</dc:date>
    </item>
  </channel>
</rss>

