Remote Unix Terminal Key Mapping - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T16:06:17Zhttp://stackoverflow.com/feeds/question/301466http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/301466/remote-unix-terminal-key-mapping1Remote Unix Terminal Key Mappinggnuchu2008-11-19T10:25:08Z2008-11-19T10:49:39Z
<p>This has always bugged me. When I ssh or telnet to a Unix server (whatever flavour) it always manages to guess correctly the terminal type I am logging in from and so the keyboard always acts 'normally' ... i.e. the backspace key works. </p>
<p>But then when I have successfully logged in, it often guesses incorrectly the terminal type I am using and makes incorrect key mappings - especially for the backspace key, meaning I have to issue a:</p>
<pre><code>stty erase ...
</code></pre>
<p>type command to fix it. </p>
<p>Any Unix gurus out there know why this happens?</p>
http://stackoverflow.com/questions/301466/remote-unix-terminal-key-mapping/301505#3015052Answer by rwired for Remote Unix Terminal Key Mappingrwired2008-11-19T10:38:09Z2008-11-19T10:38:09Z<p>I think you mean backspace properly works when you are inputting your username and password, then it stops working after you've logged in. </p>
<p>Most likely stty is being set to something else in ~/.profile or /etc/profile (or another script that executes on login). </p>
<p>Find that file and comment the line.</p>
http://stackoverflow.com/questions/301466/remote-unix-terminal-key-mapping/301519#3015190Answer by Hasturkun for Remote Unix Terminal Key MappingHasturkun2008-11-19T10:43:05Z2008-11-19T10:43:05Z<p>What SSH/telnet software are you using? </p>
<p>When logging in via SSH, username/password entry is usually handled by the client, so it may be irrelevant.</p>
<p>My guess would be that the TERM environment variable is being set incorrectly by your terminal software, eg. set to "vt100" when terminal is set to behave like xterm, etc.</p>
http://stackoverflow.com/questions/301466/remote-unix-terminal-key-mapping/301535#3015351Answer by paxdiablo for Remote Unix Terminal Key Mappingpaxdiablo2008-11-19T10:49:39Z2008-11-19T10:49:39Z<p>Secure shell (ssh) will most likely ask for the username and password in the client software before ever attempting to contact the host, so it's using local conventions.</p>
<p>Telnet will generally communicate with the telnetd daemon on the host (remote end) and the host will be handling I/O.</p>
<p>There's a good chance that your terminal program is configured correctly to talk to telnetd but, after logging in, a variety of scripts are run which can affect terminal settings (something like <code>stty erase '^H'</code>). Depending on the UNIX system you're connecting to and the shell you're using, this may be a combination of /etc/profile, ~/.profile, ~/.bashrc, ~/.kshrc and so on).</p>
<p>Your best bet is to find the last in the chain of profile-type files (probably ~/.profile) and put a <code>stty erase 'X'</code> in there, where X is the actual desired keystroke for your terminal program.</p>
<p>As an aside, the profile-type ones are run for a login shell only whilst the others tend to be run for any sub-shell created.</p>