<?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: how to set the terminal in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6262769#M496310</link>
    <description>&lt;P&gt;&amp;gt;The error line will contain more info when resize the windows to maximize.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then your terminal emulator is just broken.&amp;nbsp; Nothing you can do except copy the output to your PC.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suppose you could try to suppress stdout and just look at stderr:&lt;/P&gt;&lt;P&gt;make 2&amp;gt;&amp;amp;1 &amp;gt; /dev/null&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What does "stty -a" show?&amp;nbsp; Perhaps you don't have the XOFF hand shaking?&lt;/P&gt;&lt;P&gt;You should see ixoff and not -ixoff.&lt;/P&gt;</description>
    <pubDate>Fri, 08 Nov 2013 12:53:27 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2013-11-08T12:53:27Z</dc:date>
    <item>
      <title>how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6259099#M496297</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;I want to build the software(wxWight) in the HP UX 11.31, some errors occur.&lt;/P&gt;
&lt;P&gt;But the error message is clearly mangled from the terminal, for unknown reasons.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I try to output the message to one document by the command "make &amp;gt;&amp;gt; output.txt", but the error message just is shown on the terminal and won't be written to the document.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I try the maximize the terminal , the&amp;nbsp; message will be more, but still &amp;nbsp;being truncated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please refer to the compared image.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;so, how can I get the entire error message via setting the terminal?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;P.S. This thread has been moved from HP-UX-General to &amp;nbsp;languages. -HP Forum Moderator&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2013 01:35:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6259099#M496297</guid>
      <dc:creator>jonesliu</dc:creator>
      <dc:date>2013-11-06T01:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6259113#M496298</link>
      <description>&lt;P&gt;For redirecting error messages, you need to redirect 'stderr' to your log file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT face="courier new,courier"&gt;make &amp;gt;&amp;gt; output.txt 2&amp;gt;error.txt&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or in case you want everything to go into the same log file,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT face="courier new,courier"&gt;make &amp;gt; output.txt 2&amp;gt;&amp;amp;1&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Nov 2013 09:18:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6259113#M496298</guid>
      <dc:creator>SoumitraC</dc:creator>
      <dc:date>2013-11-05T09:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6260025#M496299</link>
      <description>&lt;P&gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;so, how can I get the entire error message via setting the terminal?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unless you can set the terminal line length to 500 or 1000, you'll never see the entire message on one line. And even if you could set the terminal width that large, you could not read it as the characters would only be a few pixels in size.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can always pipe the output from make into &lt;STRONG&gt;cut -c 1-79&lt;/STRONG&gt; but then you'll lose the text at the end on the line. That will show each include on one line. When you redirect the output into a file, the lines will be still be very long. If you edit the file, your display problem will be the same as before. &amp;nbsp;You might print the file but rotate the text to landscape mode and reduce the font to get everything on one line (if you can read the small font).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To troubleshoot the make problem, the very long include lines may be useful as reference but the errors appear to be easitly readable. Using vi, you can edit the output file and search for selected text if necessary.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Nov 2013 23:54:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6260025#M496299</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2013-11-05T23:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6260161#M496300</link>
      <description>&lt;P&gt;hi &lt;SPAN class="login-bold"&gt;Bill Hassell&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Unless you can set the terminal line length to 500 or 1000, you'll never see the entire message on one line. And even if you could set the terminal width that large, you could not read it as the characters would only be a few pixels in size.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt; I can't find where to set the line length , I try to set the font to 6,5 point, but the error message still being &amp;nbsp;truncated.&lt;/P&gt;&lt;P&gt;can you kindly tell me how to set the terminal line length to 1000?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can always pipe the output from make into &lt;STRONG&gt;cut -c 1-79&lt;/STRONG&gt; but then you'll lose the text at the end on the line.&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt; sorry, I am stranger to Unix OS. can you describe more in detailed about &amp;nbsp;how to make into cut-c1-79?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E.g:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;cut -c 79 output.txt&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I think the cut command is used to truncate the file to lower pieces&amp;nbsp; for readable easily. but first I should get the entire message then I can cut the output file to get more clearly fonts&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2013 03:10:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6260161#M496300</guid>
      <dc:creator>jonesliu</dc:creator>
      <dc:date>2013-11-06T03:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6260163#M496301</link>
      <description>&lt;P&gt;Hi Soumitra C&lt;/P&gt;&lt;P&gt;Thanks a lot, The error info can be written t to the file now, but the error message still be truncated&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2013 03:10:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6260163#M496301</guid>
      <dc:creator>jonesliu</dc:creator>
      <dc:date>2013-11-06T03:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6260249#M496302</link>
      <description>&lt;P&gt;Can you please post the contents of the file as an attachment, possibly gzipped?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2013 06:01:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6260249#M496302</guid>
      <dc:creator>SoumitraC</dc:creator>
      <dc:date>2013-11-06T06:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6261205#M496303</link>
      <description>&lt;P&gt;&amp;gt;&amp;gt; I can't find where to set the line length , I try to set the font to 6,5 point, but the error message still being &amp;nbsp;truncated.&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt; can you kindly tell me how to set the terminal line length to 1000?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You aren't using a typical terminal emulator, you're using Xwindows, probably xterm or dterm. To get 1000 characters across the screen, you need to change the font size about 2 or 3 points. But there is no font that small and even if you could find a font like that, you could not read it on a normal screen.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In other words, you won't be able to see a 1-line message that is more than about 200 characters with xterm or dterm. However, when you redirect the messages into a fail, there is no practical line length limitation so everything is there.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But it is really important to note that the messages are not truncated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In your first attachment, the last long message starts with:&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;/var/SPS/SPS/wxWidgets&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;and the end of that line reads: &amp;nbsp;&lt;STRONG&gt;../src/common/wxcrt.cpp&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So everything is there. The very long line is simply folded into 4 lines on your screen. No truncation has occurred.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2013 02:39:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6261205#M496303</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2013-11-07T02:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6261301#M496304</link>
      <description>&lt;P&gt;&amp;gt;I can't find where to set the line length&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure what your problem is?&amp;nbsp; If you have long lines, the lines should be wrapped.&amp;nbsp; You just follow the lines to the logical beginning.&amp;nbsp; Your picture teminal-larger.png ‏73 KB looks fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you don't like that wrapping, you could open the output in a browser as .txt, then you can scroll from left to right.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;but the error message still be truncated&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not truncated but wrapped.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2013 06:51:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6261301#M496304</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2013-11-07T06:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6261525#M496305</link>
      <description>&lt;P&gt;The output will be correct when it is built successfully, but the errors&amp;nbsp; shown in terminal will be truncated when built fail.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please refer to the three pictures, the error info &amp;nbsp;shown in terminal will be different according to the&amp;nbsp; termimal windows size.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, The error info will be the same if it is writen to the file whenever how to adjust the terminal window.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2013 10:12:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6261525#M496305</guid>
      <dc:creator>jonesliu</dc:creator>
      <dc:date>2013-11-07T10:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6262097#M496306</link>
      <description>&lt;P&gt;The output.txt file shows that the each message is complete and not truncated. The long messages are folded onto the next several lines. Those extra lines are the original message. If you capture the last long line that starts with:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/var/SPS/SPS/wxWidgets...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and ends with:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;../src/common/wxcrt.cpp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The line is 539 characters wide. It is one line and is not truncated.&amp;nbsp;&lt;SPAN&gt;If you have to use Xwindows with HP-UX, you can use dtpad (the text editor from CDE) which should allow horizontal scrolling.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or you can see the entire line by transferring the file to a PC and open it in Notepad. When you open the file, if you see the lines folded, then click on the Format menu item, and turn off Word Wrap. Now you will see a single line for each message plus a horizontal scroll bar at the bottom that you can slide to the right for the rest of the line.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2013 19:29:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6262097#M496306</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2013-11-07T19:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6262143#M496307</link>
      <description>&lt;P&gt;&amp;gt;how to adjust the terminal window.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hmm, whatever terminal emulator you're using is just broken?&amp;nbsp; The lines seem to be interspersed.&lt;/P&gt;&lt;P&gt;One possibility is that you are getting the stdout and stderr output interspersed.&lt;/P&gt;&lt;P&gt;You need to use:&lt;/P&gt;&lt;P&gt;make ... 2&amp;gt;&amp;amp;1 ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: If an application is writing to both stdout and stderr, it must do something special so that the output looks reasonable.&amp;nbsp; It must flush stdout (since buffered) before it writes to stderr.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2013 21:03:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6262143#M496307</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2013-11-07T21:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6262607#M496308</link>
      <description>&lt;P&gt;Hi &lt;SPAN class="login-bold"&gt;Dennis:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;I try the command : make 2&lt;/SPAN&gt;&amp;gt;&amp;amp;1&lt;/P&gt;&lt;P&gt;But it does not work. the error info still be partly.&lt;/P&gt;&lt;P&gt;refer to the attachment&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2013 09:37:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6262607#M496308</guid>
      <dc:creator>jonesliu</dc:creator>
      <dc:date>2013-11-08T09:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6262617#M496309</link>
      <description>&lt;P&gt;Hi Bill Hassell:&lt;/P&gt;&lt;P&gt;Yes, if the built succeed, the output info starts with:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/var/SPS/SPS/wxWidgets...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and ends with:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;../src/common/wxcrt.cpp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but , if the built failed, the error output info starts with:&lt;/P&gt;&lt;P&gt;../src/common/wxcrt.cpp: In function ‘int wxVsscanf(const char*, const char*, void*)’:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this line is intercepted.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can compare the three pictures as attachment(1.png, 2.png, 3.png), the errors is different according to the terminal window size.&lt;/P&gt;&lt;P&gt;The error line will contain more info when resize the windows to maximize.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The error info will be the same if I input to the file via the command : make &amp;nbsp;&amp;gt;output.txt&amp;nbsp; 2&amp;gt;&amp;amp;1&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2013 09:49:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6262617#M496309</guid>
      <dc:creator>jonesliu</dc:creator>
      <dc:date>2013-11-08T09:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6262769#M496310</link>
      <description>&lt;P&gt;&amp;gt;The error line will contain more info when resize the windows to maximize.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then your terminal emulator is just broken.&amp;nbsp; Nothing you can do except copy the output to your PC.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suppose you could try to suppress stdout and just look at stderr:&lt;/P&gt;&lt;P&gt;make 2&amp;gt;&amp;amp;1 &amp;gt; /dev/null&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What does "stty -a" show?&amp;nbsp; Perhaps you don't have the XOFF hand shaking?&lt;/P&gt;&lt;P&gt;You should see ixoff and not -ixoff.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2013 12:53:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6262769#M496310</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2013-11-08T12:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6263347#M496311</link>
      <description>&lt;P&gt;I agree with Dennis, your terminal (which appears to be dterm) is archaic for Unix system administration and programming. If you are using a PC to view the dterm window, time to shutoff Xwindows and use a real terminal emulator. The best is PuTTY and can be downloaded from:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html"&gt;http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then as Dennis suggests, your /etc/profile needs to have a proper stty setup.&lt;/P&gt;&lt;P&gt;Replace the stty lines in /etc/profile with these two lines:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;stty erase "^H" kill "^U" intr "^C" eof "^D" -parity ixoff
stty susp \^Z dsusp \^Y&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will also fix any problems you have had in the past with pasting large amounts of text using vi.&lt;/P&gt;</description>
      <pubDate>Sat, 09 Nov 2013 04:52:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6263347#M496311</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2013-11-09T04:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6267579#M496312</link>
      <description>&lt;P&gt;Thanks a lot for all the help, but it sees still can not work.&lt;/P&gt;&lt;P&gt;I have edit the /etc/profile and &amp;nbsp;use the putty to make the software.&lt;/P&gt;&lt;P&gt;please refer to attachment "putty.png"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2013 09:19:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6267579#M496312</guid>
      <dc:creator>jonesliu</dc:creator>
      <dc:date>2013-11-13T09:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal (CV qualifier mismatch)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6267655#M496313</link>
      <description>&lt;P&gt;&amp;gt;but it sees still can not work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You need to define what "work" means.&amp;nbsp; It is now correctly printing the error message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are illegally trying to call vsscanf passing a const char* to a char*, the output parm.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2013 10:42:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6267655#M496313</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2013-11-13T10:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal (CV qualifier mismatch)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6270301#M496314</link>
      <description>&lt;P&gt;&lt;SPAN class="login-bold"&gt;&lt;SPAN class="login-bold"&gt;Thanks , Dennis Handly.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;&lt;SPAN class="login-bold"&gt;I made a mistake, now it works.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;&lt;SPAN class="login-bold"&gt;Thanks again.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2013 11:16:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6270301#M496314</guid>
      <dc:creator>jonesliu</dc:creator>
      <dc:date>2013-11-15T11:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to set the terminal (CV qualifier mismatch)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6270729#M496315</link>
      <description>&lt;P&gt;&amp;gt;&lt;SPAN class="login-bold"&gt;&lt;SPAN class="login-bold"&gt;Thanks again.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you're happy with the answers you were given, please click on the Kudos star for each helpful answer.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2013 18:08:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-set-the-terminal/m-p/6270729#M496315</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2013-11-15T18:08:54Z</dc:date>
    </item>
  </channel>
</rss>

