<?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: xwindow in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533553#M25591</link>
    <description>Let's try this one more time...</description>
    <pubDate>Tue, 29 May 2001 13:39:14 GMT</pubDate>
    <dc:creator>Kenneth Platz</dc:creator>
    <dc:date>2001-05-29T13:39:14Z</dc:date>
    <item>
      <title>xwindow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533546#M25584</link>
      <description>I have a problem starting my xwindows. I use the command export DISPLAY=&amp;lt;0.0&amp;gt;&lt;BR /&gt;&lt;BR /&gt;When i do a swlist, i see that xwindow software X11 is installed.&lt;BR /&gt;&lt;BR /&gt;Can anybody tell me why is display not being exported</description>
      <pubDate>Mon, 28 May 2001 17:25:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533546#M25584</guid>
      <dc:creator>Sprint Unix Team</dc:creator>
      <dc:date>2001-05-28T17:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: xwindow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533547#M25585</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The command should be &lt;BR /&gt;export DISPLAY=ipaddress:0.0&lt;BR /&gt;(no angle brackets)&lt;BR /&gt;&lt;BR /&gt;If you didn't actually use the angle brackets, then I suspect that you need to issue an 'xhost +' command. Man xhost for details.&lt;BR /&gt;&lt;BR /&gt;Hope this helps, Clay</description>
      <pubDate>Mon, 28 May 2001 17:31:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533547#M25585</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-05-28T17:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: xwindow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533548#M25586</link>
      <description>i use angle brackets to indicate that ipaddress should be typed ignoring brackets..anyways using xhost command does not help. &lt;BR /&gt;</description>
      <pubDate>Mon, 28 May 2001 17:43:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533548#M25586</guid>
      <dc:creator>Sprint Unix Team</dc:creator>
      <dc:date>2001-05-28T17:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: xwindow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533549#M25587</link>
      <description>Ok, I think we may be having a terminology problem here. What is you actual Xserver running on? Is it an X-terminal?, A PC running&lt;BR /&gt;an X emulator? A Unix workstation? A server equipped with graphics hardware. Keep in mind that in X what you typically think of as the client is the server.&lt;BR /&gt;&lt;BR /&gt;If you are running a PC X emulator you need to start that software and I would initially open&lt;BR /&gt;a telnet window to your UNIX box.&lt;BR /&gt;export DISPLAY=10.1.1.31:0.0&lt;BR /&gt;then do a very simple command like xclock&lt;BR /&gt;to get you started.&lt;BR /&gt;&lt;BR /&gt;If you are running an X-terminal the Xserver should already be running and you simply open a telnet session as above.&lt;BR /&gt;&lt;BR /&gt;If you are running on a graphics equipped server or a workstation, X may not already be running. Start it with startx or xinit. Man xinit and startx for details.&lt;BR /&gt;&lt;BR /&gt;Above all make sure that you can ping in both directions and for dtlogin you are going to need to be able to resolve host names in both directions so that you should export DISPLAY=myxterm:0.0. Again, start with a simple x command like xclock; it's much easier to debug.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 28 May 2001 23:32:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533549#M25587</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-05-28T23:32:50Z</dc:date>
    </item>
    <item>
      <title>Re: xwindow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533550#M25588</link>
      <description>From a PC Xserver you may need more information. Like the ip of your PC and the tty port to send your request to. I put this in a .x file to call when I ened it or in your .profile&lt;BR /&gt;Then any x type request will pop up on your pc.&lt;BR /&gt;xclock for starts then sam will test it&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# Set up shell variables:   for Xwindows&lt;BR /&gt; #GET TTY&lt;BR /&gt; MY_TTY=`tty | cut -c 10- `&lt;BR /&gt; MY_TTY=`tty | cut -d/ -f3- `&lt;BR /&gt;echo "YOUR TTY IS                 :: " $MY_TTY&lt;BR /&gt;&lt;BR /&gt;# GET IP ADDRESS&lt;BR /&gt;MY_IP=`who -u | grep "$MY_TTY " | cut -c 52-`&lt;BR /&gt;echo "YOUR IP-ADDRESS IS          :: " $MY_IP&lt;BR /&gt;&lt;BR /&gt;#### SET DISPLAY FOR X WINDOWS&lt;BR /&gt;DISPLAY=$MY_IP:0.0&lt;BR /&gt;echo "YOUR DISPLAY IS             :: " $DISPLAY&lt;BR /&gt;&lt;BR /&gt;#### EXPORT ENVIRONMENT VARIABLES&lt;BR /&gt;export MY_TTY MY_IP DISPLAY&lt;BR /&gt;</description>
      <pubDate>Tue, 29 May 2001 12:13:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533550#M25588</guid>
      <dc:creator>Larry Basford</dc:creator>
      <dc:date>2001-05-29T12:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: xwindow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533551#M25589</link>
      <description>Hmm, why would anyone think that "swlist" would show variables?&lt;BR /&gt;/usr/bin/man swlist&lt;BR /&gt;will clearly show that swlist is used to look at applications, and patches installed for the operating system!  This will include graphics libs, compilers, development libraries, and much much more....but has nothing to do with an environment variable!&lt;BR /&gt;&lt;BR /&gt;In C-shell&lt;BR /&gt;&amp;gt; set HOST='ip.of.your.seat'&lt;BR /&gt;&amp;gt; setenv DISPLAY "$HOST:0"&lt;BR /&gt;&lt;BR /&gt;In Borne Shell &lt;STANDARD sh=""&gt;&lt;BR /&gt;&amp;gt; HOST='ip.of.our.seat'&lt;BR /&gt;&amp;gt; DISPLAY="$HOST:0"&lt;BR /&gt;&amp;gt; export DISPLAY&lt;BR /&gt;&lt;BR /&gt;in Korne shell, the borne shell works, or use a shortcut as..&lt;BR /&gt;&amp;gt; HOST='ip.of.our.seat'&lt;BR /&gt;&amp;gt; export DISPLAY="$HOST:0"&lt;BR /&gt;&lt;BR /&gt;make sure to use the quotes as I have above or it will not work!  If you do not know your shell, fro a prompt type...&lt;BR /&gt;&amp;gt; echo $SHELL&lt;BR /&gt;You will get something like &lt;BR /&gt;/sbin/sh&lt;BR /&gt;/usr/bin/csh&lt;BR /&gt;/bin/ksh&lt;BR /&gt;/usr/bin/sh&lt;BR /&gt;&lt;BR /&gt;csh=C-shell, ksh=korn shell, sh=borne shell....&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I'd highly recommend that you get a book called "Unix In a nutshell" which is published by Oreilly and associates.  It will give you a very good list of good unix commands with their most common arguments, a good chapter on each of the 3 primary UNIX shells, and some info on sed, grep, and awk (some of the more powerfull UNIX commands).&lt;BR /&gt;&lt;BR /&gt;Pay very close attention to the areas on the Shells, what they are, and how to use them!&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Shannon&lt;/STANDARD&gt;</description>
      <pubDate>Tue, 29 May 2001 13:03:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533551#M25589</guid>
      <dc:creator>Shannon Petry</dc:creator>
      <dc:date>2001-05-29T13:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: xwindow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533552#M25590</link>
      <description>The attached document should help explain the how's and why's of how X Windows displays applications to remote systems.</description>
      <pubDate>Tue, 29 May 2001 13:37:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533552#M25590</guid>
      <dc:creator>Kenneth Platz</dc:creator>
      <dc:date>2001-05-29T13:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: xwindow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533553#M25591</link>
      <description>Let's try this one more time...</description>
      <pubDate>Tue, 29 May 2001 13:39:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533553#M25591</guid>
      <dc:creator>Kenneth Platz</dc:creator>
      <dc:date>2001-05-29T13:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: xwindow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533554#M25592</link>
      <description />
      <pubDate>Tue, 29 May 2001 13:41:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xwindow/m-p/2533554#M25592</guid>
      <dc:creator>Kenneth Platz</dc:creator>
      <dc:date>2001-05-29T13:41:54Z</dc:date>
    </item>
  </channel>
</rss>

