<?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: Terminal problem in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/terminal-problem/m-p/3203751#M167130</link>
    <description>vt100 will fix this some of the time.&lt;BR /&gt;&lt;BR /&gt;If it does not, try connecting for this application with a color aware terminal emulation.&lt;BR /&gt;&lt;BR /&gt;I would suggest Linux X Windows or Hummingbird or Reflections, even this:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" target="_blank"&gt;http://www.chiark.greenend.org.uk/~sgtatham/putty/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The last choice is quite color aware and can be set to defeat all but the most determined color setters.&lt;BR /&gt;&lt;BR /&gt;Its SSH which is far superior to telnet.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Thu, 26 Feb 2004 19:20:02 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2004-02-26T19:20:02Z</dc:date>
    <item>
      <title>Terminal problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/terminal-problem/m-p/3203749#M167128</link>
      <description>I'm using AccuTerm. The telnet session to hpux 11.11 is using termtype vt220. The command&lt;BR /&gt;swlist -s /cdrom&lt;BR /&gt;will change the TERM to tektronix 4014, background becomes black, and the texts are very small to be recognized. Probably the content is the correct output from swlist.&lt;BR /&gt;&lt;BR /&gt;Jun</description>
      <pubDate>Thu, 26 Feb 2004 17:27:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/terminal-problem/m-p/3203749#M167128</guid>
      <dc:creator>Jun Zhang_4</dc:creator>
      <dc:date>2004-02-26T17:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: Terminal problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/terminal-problem/m-p/3203750#M167129</link>
      <description>The "swlist" command doesn't produce any terminal control output, though it's possible that something has a strange name that's triggering the problem.&lt;BR /&gt;&lt;BR /&gt;Try setting your TERM to vt100 explicitly.  (i.e. "export TERM=vt100").&lt;BR /&gt;&lt;BR /&gt;You might also try redirecting the swlist output to a file and viewing that file in vi or another editor.  That should reveal what is messing up your terminal.&lt;BR /&gt;&lt;BR /&gt;Lastly, you can also disable the Tektronix graphics modes in AccuTerm if you can't find any other solution.&lt;BR /&gt;&lt;BR /&gt;  -- Steve&lt;BR /&gt;</description>
      <pubDate>Thu, 26 Feb 2004 19:02:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/terminal-problem/m-p/3203750#M167129</guid>
      <dc:creator>Steve Bonds</dc:creator>
      <dc:date>2004-02-26T19:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: Terminal problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/terminal-problem/m-p/3203751#M167130</link>
      <description>vt100 will fix this some of the time.&lt;BR /&gt;&lt;BR /&gt;If it does not, try connecting for this application with a color aware terminal emulation.&lt;BR /&gt;&lt;BR /&gt;I would suggest Linux X Windows or Hummingbird or Reflections, even this:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" target="_blank"&gt;http://www.chiark.greenend.org.uk/~sgtatham/putty/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The last choice is quite color aware and can be set to defeat all but the most determined color setters.&lt;BR /&gt;&lt;BR /&gt;Its SSH which is far superior to telnet.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 26 Feb 2004 19:20:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/terminal-problem/m-p/3203751#M167130</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-02-26T19:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: Terminal problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/terminal-problem/m-p/3203752#M167131</link>
      <description>Are you logging in using telnet? If so, do not run swlist or swinstall or sam until you first:&lt;BR /&gt; &lt;BR /&gt;echo $TERM&lt;BR /&gt;ttytype&lt;BR /&gt; &lt;BR /&gt;If these two commands are not the same, your TERM variable is being preset by your local client (PC? Linux?) and it will almost always be wrong. Standard HP-UX /etc/profile has the following code:&lt;BR /&gt; &lt;BR /&gt;        if [ "$TERM" = "" -o "$TERM" = "unknown" -o "$TERM" = "dialup"  \&lt;BR /&gt;             -o "$TERM" = "network" ]&lt;BR /&gt;        then&lt;BR /&gt;                eval `ttytype -s -a`&lt;BR /&gt;        fi&lt;BR /&gt;&lt;BR /&gt;        export TERM&lt;BR /&gt; &lt;BR /&gt;This code (written many years ago) assumed that the client would set $TERM correctly through the telnet connection protocol. But PCs and other flavors of Unix have little in common with the $TERM definitions used by HP-UX. So the above code says: if TERM hasn't set, query the terminal and set TERM. Otherwise, do nothing. To set the TERM value correctly, replace all the above code with:&lt;BR /&gt; &lt;BR /&gt;eval $(ttytype -s)&lt;BR /&gt; &lt;BR /&gt;The reason the swlist seemed to change the AccuTerm window is likely due to a TERM mismatch. TERM may have been set to ansi or some other value by your local computer and swlist sent escape sequences that were proper for that TERM value but meant something entirely different for the current setting in AccuTerm. To verify this, set AccuTerm to vt220, then set TERM=vt220 and run swlist again.</description>
      <pubDate>Thu, 26 Feb 2004 19:29:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/terminal-problem/m-p/3203752#M167131</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2004-02-26T19:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Terminal problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/terminal-problem/m-p/3203753#M167132</link>
      <description>Thank you for the replies.&lt;BR /&gt;ttytype output is vt100, and I changed the TERM to that, too. But the problem is the same.&lt;BR /&gt;Go from the pc cygwin seems ok.&lt;BR /&gt;&lt;BR /&gt;Jun</description>
      <pubDate>Fri, 27 Feb 2004 16:24:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/terminal-problem/m-p/3203753#M167132</guid>
      <dc:creator>Jun Zhang_4</dc:creator>
      <dc:date>2004-02-27T16:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: Terminal problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/terminal-problem/m-p/3203754#M167133</link>
      <description>What you are describing is impossible. A child is NEVER allowed to alter the environment of the parent.&lt;BR /&gt;&lt;BR /&gt;Consider this:&lt;BR /&gt;TERM=vt100&lt;BR /&gt;export TERM&lt;BR /&gt;&lt;BR /&gt;swlist -s /cdrom # A CHILD PROCESS&lt;BR /&gt;&lt;BR /&gt;echo "TERM=\"${TERM}\""&lt;BR /&gt;&lt;BR /&gt;If the situation is as you describe, swlist would somehow have to alter TERM in the parent shell; that just can't happen. I am NOT saying that TERM is not being reset; I'm just saying that it is not happening as you describe.&lt;BR /&gt;</description>
      <pubDate>Fri, 27 Feb 2004 16:33:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/terminal-problem/m-p/3203754#M167133</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-02-27T16:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Terminal problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/terminal-problem/m-p/3203755#M167134</link>
      <description>Hi Jun,&lt;BR /&gt;&lt;BR /&gt;As explained before, your Accuterm is interpreting the control sequences and changing *it's* Terminal Type to Tektronix automatically. I am not talking about the TERM on the session.&lt;BR /&gt;&lt;BR /&gt;Did you modify the default options of Accuterm?. You may want to reset them to default and try. Or try saving the current settings into a file and attach it so that we will see if we can find anything.&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 27 Feb 2004 17:03:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/terminal-problem/m-p/3203755#M167134</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-02-27T17:03:47Z</dc:date>
    </item>
  </channel>
</rss>

