<?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: vi screen isn't enough in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622300#M236115</link>
    <description>Hello Zungwon, I think you can use a resize command. If I am not mistaken your LINES and COLUMS variables are not using the full screen.&lt;BR /&gt;&lt;BR /&gt;I hope it helps.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 09 Sep 2005 09:31:45 GMT</pubDate>
    <dc:creator>Juan M Leon</dc:creator>
    <dc:date>2005-09-09T09:31:45Z</dc:date>
    <item>
      <title>vi screen isn't enough</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622294#M236109</link>
      <description>when I opened /etc/rc.config.d/netconf, the article started from the middle of the screen.&lt;BR /&gt;to see article from the 1 line, what can I do ?</description>
      <pubDate>Fri, 09 Sep 2005 01:12:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622294#M236109</guid>
      <dc:creator>???_185</dc:creator>
      <dc:date>2005-09-09T01:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: vi screen isn't enough</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622295#M236110</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;you are using a bad terminalemulation.&lt;BR /&gt;&lt;BR /&gt;try:&lt;BR /&gt;export TERM=vt100&lt;BR /&gt;reset&lt;BR /&gt;&lt;BR /&gt;then the screen should clear and the cursor/prompt should be on the top-left-corner.&lt;BR /&gt;&lt;BR /&gt;for TERM you may also use vt220, linux...etc...&lt;BR /&gt;it depend's on the console/terminal/emulation you're using&lt;BR /&gt;&lt;BR /&gt;Micky</description>
      <pubDate>Fri, 09 Sep 2005 01:33:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622295#M236110</guid>
      <dc:creator>Micky_1</dc:creator>
      <dc:date>2005-09-09T01:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: vi screen isn't enough</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622296#M236111</link>
      <description>ttytype -s&lt;BR /&gt;&lt;BR /&gt;what are your terminal settings. change accordingly.</description>
      <pubDate>Fri, 09 Sep 2005 01:34:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622296#M236111</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-09-09T01:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: vi screen isn't enough</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622297#M236112</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Check wheather you TERM varialbe is set properly? What is this set to and what is its type ?&lt;BR /&gt;&lt;BR /&gt;#echo $TERM  (Current value)&lt;BR /&gt;Try chaning it to mre appropriate value compatible with your hardware terminal type.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Devender</description>
      <pubDate>Fri, 09 Sep 2005 01:35:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622297#M236112</guid>
      <dc:creator>Devender Khatana</dc:creator>
      <dc:date>2005-09-09T01:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: vi screen isn't enough</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622298#M236113</link>
      <description>Try&lt;BR /&gt;&lt;BR /&gt;# eval `ttytype -s -a`&lt;BR /&gt;&lt;BR /&gt;and see if vi works then.</description>
      <pubDate>Fri, 09 Sep 2005 07:38:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622298#M236113</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-09-09T07:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: vi screen isn't enough</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622299#M236114</link>
      <description>Since there are hundreds of terminal (and now with PCs, terminal emulators), you must match your terminal to the valuer of $TERM in your login environment. For instance, if you are using an HP tterminal or terminal emulator like QCTerm, Reflection/1 or Reflection/HP but someone has hardcoded TERM=vt100 in your environment (a bad idea), then vi will send meaningless image controls to your screen.&lt;BR /&gt; &lt;BR /&gt;So rather than changingt the TERM value every time you login with a different terminal, let ttytype set it for you. Edit your .profile and add this near the top:&lt;BR /&gt; &lt;BR /&gt;eval $(ttytype -s)&lt;BR /&gt; &lt;BR /&gt;Now your TERM variable will be set correctly each time you login. NOTE: If you are on the console (LAN console, serial console, Web console) for a computer with a GSP, ttytype is trashed by an override from the GSP. In that case, your TERM value (and therefore the type of terminal emulator) is restricted. ARe you using the console or logging over the network?</description>
      <pubDate>Fri, 09 Sep 2005 08:10:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622299#M236114</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2005-09-09T08:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: vi screen isn't enough</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622300#M236115</link>
      <description>Hello Zungwon, I think you can use a resize command. If I am not mistaken your LINES and COLUMS variables are not using the full screen.&lt;BR /&gt;&lt;BR /&gt;I hope it helps.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Sep 2005 09:31:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622300#M236115</guid>
      <dc:creator>Juan M Leon</dc:creator>
      <dc:date>2005-09-09T09:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: vi screen isn't enough</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622301#M236116</link>
      <description>other terminal, it is nortal.&lt;BR /&gt;resize&lt;BR /&gt;COLUMNS=80;&lt;BR /&gt;LINES=24;&lt;BR /&gt;export COLUMNS LINES;&lt;BR /&gt;but, by putty terminal, if I exwcute vi terminal, it is started from the middle.&lt;BR /&gt;isn't it stranged?</description>
      <pubDate>Sun, 11 Sep 2005 21:33:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622301#M236116</guid>
      <dc:creator>???_185</dc:creator>
      <dc:date>2005-09-11T21:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: vi screen isn't enough</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622302#M236117</link>
      <description>As mentioned before, it is not the LINES and COLUMNS that are causing your problem, it is the value of TERM. What happens when you do this:&lt;BR /&gt; &lt;BR /&gt;echo $TERM&lt;BR /&gt;eval $(ttytype -s)&lt;BR /&gt;echo $TERM&lt;BR /&gt;vi /etc/rc.config.d/netconf</description>
      <pubDate>Sun, 11 Sep 2005 22:35:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622302#M236117</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2005-09-11T22:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: vi screen isn't enough</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622303#M236118</link>
      <description>Hello , &lt;BR /&gt;&lt;BR /&gt;I've same problem on two box , with hp-ux 11i . On one , problem arise just I installed GOLDQPK11i Jun 2005 . &lt;BR /&gt;&lt;BR /&gt;I've tried above commands without  success.&lt;BR /&gt;&lt;BR /&gt;Thanks for any help &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Sep 2005 03:53:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vi-screen-isn-t-enough/m-p/3622303#M236118</guid>
      <dc:creator>claudio_22</dc:creator>
      <dc:date>2005-09-12T03:53:37Z</dc:date>
    </item>
  </channel>
</rss>

