<?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: X windows in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213413#M1375</link>
    <description>Martin,&lt;BR /&gt;&lt;BR /&gt;Yes it should work with V1.3-x. In fact, we even document them now even though they have always been there.&lt;BR /&gt;&lt;BR /&gt;There shouldn't be any problems with the new security features in V1.3-x. On the other hand, the specification may be quite complex.&lt;BR /&gt;&lt;BR /&gt;If you open a thread with the problems I'll see if I can help you.&lt;BR /&gt;&lt;BR /&gt;Martin&lt;BR /&gt;</description>
    <pubDate>Wed, 10 Mar 2004 04:20:08 GMT</pubDate>
    <dc:creator>Martin Kirby</dc:creator>
    <dc:date>2004-03-10T04:20:08Z</dc:date>
    <item>
      <title>X windows</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213404#M1366</link>
      <description>Hi Folks,&lt;BR /&gt;&lt;BR /&gt;On one of our legacy systems (I seem to have a lot of these to look after) we have a requirement to build up graphical data during startup. To do this the system makes use of the X-windows server. A number of complaints have been made by engineers indicating that this building of data fails when the machine (a DS10) is powered on.&lt;BR /&gt;&lt;BR /&gt;My investigation has shown that the graphics data is only processed correctly when a user is logged in via a desktop session (logins via telnet etc. make no difference). Note - the process to build the graphical data is only run after dec windows has started.&lt;BR /&gt;&lt;BR /&gt;The question is - is it possible for the our system to create an X-windows display (not visible) without having a user logged in?&lt;BR /&gt;&lt;BR /&gt;thanks in advance for yout help&lt;BR /&gt;&lt;BR /&gt;cheers&lt;BR /&gt;&lt;BR /&gt;Brian &lt;BR /&gt;&lt;BR /&gt;Are there any security  &lt;BR /&gt;</description>
      <pubDate>Tue, 09 Mar 2004 09:38:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213404#M1366</guid>
      <dc:creator>Brian Reiter</dc:creator>
      <dc:date>2004-03-09T09:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: X windows</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213405#M1367</link>
      <description>I am not sure I have understood your need, but it seems you should do the following&lt;BR /&gt;&lt;BR /&gt;1) configure X so that one or more windows are started at startup&lt;BR /&gt;&lt;BR /&gt;2) display something, starting decw$clock or ico&lt;BR /&gt;&lt;BR /&gt;$ set display:crea/node=0...&lt;BR /&gt;$ mc decw$examples:ico&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Mar 2004 09:49:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213405#M1367</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2004-03-09T09:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: X windows</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213406#M1368</link>
      <description>labadie,&lt;BR /&gt;&lt;BR /&gt;Seems fair enough - so how do I configure X so that one or more windows are started at startup? &lt;BR /&gt;&lt;BR /&gt;I have a lot of VMS experience but not always in the areas where our systems exhibit problems :) As far as I'm concerned X is one of those black arcane arts best left to other people - much prefer a VT320.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Mar 2004 10:07:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213406#M1368</guid>
      <dc:creator>Brian Reiter</dc:creator>
      <dc:date>2004-03-09T10:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: X windows</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213407#M1369</link>
      <description>While searching how to configure, I found another way on this mirror of the doc&lt;BR /&gt;&lt;BR /&gt;2.7.3.13 CREATE/TERMINAL/DETACHED/PROCESS&lt;BR /&gt;&lt;BR /&gt;V1.0 &lt;BR /&gt;&lt;BR /&gt;The /PROCESS=procnam qualifier does not work when used in conjunction with the /DETACHED qualifier, unless there is already a process running on the system where its process name is equal to the user name. &lt;BR /&gt;&lt;BR /&gt;To work around this problem, use the following command procedure: &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$! CREATE_TERM_PROC.COM &lt;BR /&gt;$! &lt;BR /&gt;$! Invoke as SPAWN/NOWAIT @CREATE_TERM_PROC procname &lt;BR /&gt;$! &lt;BR /&gt;$ SET NOON &lt;BR /&gt;$! &lt;BR /&gt;$! Set Process name to username &lt;BR /&gt;$! &lt;BR /&gt;$ X = F$CONTEXT("PROCESS", PID, "PRCNAM", "''F$PROCESS()'","EQL") &lt;BR /&gt;$ NAME = F$EDIT(F$GETJPI(X,"USERNAME"),"COLLAPSE") &lt;BR /&gt;$ SET PROCESS/NAME="''NAME'" &lt;BR /&gt;$ CREATE/TERMINAL/DETACHED/PROCESS="''P1'" &lt;BR /&gt;$! &lt;BR /&gt;$! Allow new process to RUN LOGINOUT before exiting subprocess &lt;BR /&gt;$ WAIT 00:00:10 &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://pi-net.dyndns.org/docs/openvms0731/731final/6470/6470pro_005.html" target="_blank"&gt;http://pi-net.dyndns.org/docs/openvms0731/731final/6470/6470pro_005.html&lt;/A&gt;</description>
      <pubDate>Tue, 09 Mar 2004 10:12:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213407#M1369</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2004-03-09T10:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: X windows</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213408#M1370</link>
      <description>I think it is in the session manager, tell him somewhere "start 3 decterm, 1 clock, 1 notepad"&lt;BR /&gt;&lt;BR /&gt;I do not have an X Window system at hand, sorry.</description>
      <pubDate>Tue, 09 Mar 2004 10:32:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213408#M1370</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2004-03-09T10:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: X windows</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213409#M1371</link>
      <description>Hi Brian,&lt;BR /&gt;&lt;BR /&gt;I am not clear about your problem. Can you please elaborate ? How do you build your graphical data ?&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Lokesh</description>
      <pubDate>Tue, 09 Mar 2004 11:12:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213409#M1371</guid>
      <dc:creator>Lokesh_2</dc:creator>
      <dc:date>2004-03-09T11:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: X windows</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213410#M1372</link>
      <description>Brian,&lt;BR /&gt;&lt;BR /&gt;I'm not clear exactly what is needed here.&lt;BR /&gt;&lt;BR /&gt;My guess is that you have some odd &lt;BR /&gt;application that needs to open a display&lt;BR /&gt;connection even though it doesn't display&lt;BR /&gt;anything.&lt;BR /&gt;&lt;BR /&gt;It is possible to configure the local &lt;BR /&gt;display server to allow connections from&lt;BR /&gt;anyone before anyone logs in. To do this &lt;BR /&gt;create a file:&lt;BR /&gt;&lt;BR /&gt;SYS$MANAGER:DECW$SERVER_ACCESS_ALLOWED.DAT&lt;BR /&gt;&lt;BR /&gt;with contents:&lt;BR /&gt;&lt;BR /&gt;LOCAL * *&lt;BR /&gt;&lt;BR /&gt;(a space before each asterisk) and a file &lt;BR /&gt;&lt;BR /&gt;SYS$MANAGER:DECW$SERVER_ACCESS_TRUSTED.DAT&lt;BR /&gt;&lt;BR /&gt;with contents:&lt;BR /&gt;&lt;BR /&gt;LOCAL * SYSTEM&lt;BR /&gt;&lt;BR /&gt;Then restart DECwindows. There are two potential risks doing this. &lt;BR /&gt;&lt;BR /&gt;1. Anyone can now connect to the display &lt;BR /&gt;   without logging in. If you have &lt;BR /&gt;   untrustworthy users they could create&lt;BR /&gt;   a window that looked like the login box&lt;BR /&gt;   and use it for password capture.  Since&lt;BR /&gt;   only LOCAL access is allowed the &lt;BR /&gt;   user would need to be logged in &lt;BR /&gt;   locally.&lt;BR /&gt;&lt;BR /&gt;2. If someone starts this funny graphics&lt;BR /&gt;   application when a user is logging out the&lt;BR /&gt;   login window might refuse to start. Again&lt;BR /&gt;   this is a security feature to prevent &lt;BR /&gt;   running the login window if there is &lt;BR /&gt;   another client connected. There is a &lt;BR /&gt;   logical to turn that check off - I would&lt;BR /&gt;   need to know which desktop login window&lt;BR /&gt;   you are using to find out what that &lt;BR /&gt;   logical is.&lt;BR /&gt;&lt;BR /&gt;Martin Kirby</description>
      <pubDate>Tue, 09 Mar 2004 11:50:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213410#M1372</guid>
      <dc:creator>Martin Kirby</dc:creator>
      <dc:date>2004-03-09T11:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: X windows</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213411#M1373</link>
      <description>Hello Martin,&lt;BR /&gt;&lt;BR /&gt;does this still work with 1.3.x ? I do have problems to get the new security access methods to work...&lt;BR /&gt;&lt;BR /&gt;Greetings, Martin</description>
      <pubDate>Tue, 09 Mar 2004 12:13:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213411#M1373</guid>
      <dc:creator>Martin P.J. Zinser</dc:creator>
      <dc:date>2004-03-09T12:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: X windows</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213412#M1374</link>
      <description>Martin, will get someone to try it this morning. In my opinion all our applications are odd and in most case very old (10 years+).&lt;BR /&gt;&lt;BR /&gt;Ah well the joys of maintenance.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Mar 2004 03:50:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213412#M1374</guid>
      <dc:creator>Brian Reiter</dc:creator>
      <dc:date>2004-03-10T03:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: X windows</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213413#M1375</link>
      <description>Martin,&lt;BR /&gt;&lt;BR /&gt;Yes it should work with V1.3-x. In fact, we even document them now even though they have always been there.&lt;BR /&gt;&lt;BR /&gt;There shouldn't be any problems with the new security features in V1.3-x. On the other hand, the specification may be quite complex.&lt;BR /&gt;&lt;BR /&gt;If you open a thread with the problems I'll see if I can help you.&lt;BR /&gt;&lt;BR /&gt;Martin&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Mar 2004 04:20:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213413#M1375</guid>
      <dc:creator>Martin Kirby</dc:creator>
      <dc:date>2004-03-10T04:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: X windows</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213414#M1376</link>
      <description>Martin,&lt;BR /&gt;&lt;BR /&gt;Thanks very much for the info. Initial testing indicate that it has cured the problem.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;cheers&lt;BR /&gt;&lt;BR /&gt;Brian</description>
      <pubDate>Wed, 10 Mar 2004 05:06:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213414#M1376</guid>
      <dc:creator>Brian Reiter</dc:creator>
      <dc:date>2004-03-10T05:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: X windows</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213415#M1377</link>
      <description>Martin:&lt;BR /&gt;&lt;BR /&gt;Your suggestion about allowing X-win access&lt;BR /&gt;before any user has actually logged in was&lt;BR /&gt;a great (good!) surprise.  I had always thought this was just not possible and never looked deeper.&lt;BR /&gt;&lt;BR /&gt;Now, for a slightly tougher problem. :)&lt;BR /&gt;What about an X-terminal instead of the standard display?  Should that be possible?&lt;BR /&gt;&lt;BR /&gt;In particular, I have Tektronix (aka NDS)&lt;BR /&gt;X-Terminals using their software.&lt;BR /&gt;&lt;BR /&gt;Rick&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Mar 2004 09:25:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213415#M1377</guid>
      <dc:creator>Rick Dyson</dc:creator>
      <dc:date>2004-03-10T09:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: X windows</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213416#M1378</link>
      <description>Rick,&lt;BR /&gt;&lt;BR /&gt;I don't understand your situation. &lt;BR /&gt;&lt;BR /&gt;You have clients running on OpenVMS and your display server is an X terminal. Whether you can display to the X terminal without logging in first depends on the security the X terminal implements.&lt;BR /&gt;&lt;BR /&gt;Martin</description>
      <pubDate>Thu, 11 Mar 2004 05:07:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/x-windows/m-p/3213416#M1378</guid>
      <dc:creator>Martin Kirby</dc:creator>
      <dc:date>2004-03-11T05:07:13Z</dc:date>
    </item>
  </channel>
</rss>

