It sounds like your terminal settings. If you are accessing via telnet then you are probably using some sort of terminal emulator, depending on whose telnet package you are using. On UNIX you should set the TERM environment variable to the same terminal type that your remote package is emulating, and make sure that you export it. For example a basic emulation done by some primitive packages use the old DEC terminal vt52 as their emulation target, so on UNIX you would set:
export TERM=vt52
If using C shell (csh or tcsh) you will need:
setenv TERM vt52
If you set TERM in one of your start-up files (.profile, .kshrc, .bash_profile, .login depending on which shell version and whether the session is a login shell or not) then you have to beware that you might require a different type when not using telnet (xterm, for example).
Display issues are often a mis-match of TERM and the emulator, or sometimes a really bad emulation. The fact that you do not have a problem when not using telnet only means that in that case your TERM setting is correct.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.