Remote Unix Terminal Key Mapping - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T16:06:17Z http://stackoverflow.com/feeds/question/301466 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/301466/remote-unix-terminal-key-mapping 1 Remote Unix Terminal Key Mapping gnuchu 2008-11-19T10:25:08Z 2008-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#301505 2 Answer by rwired for Remote Unix Terminal Key Mapping rwired 2008-11-19T10:38:09Z 2008-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#301519 0 Answer by Hasturkun for Remote Unix Terminal Key Mapping Hasturkun 2008-11-19T10:43:05Z 2008-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#301535 1 Answer by paxdiablo for Remote Unix Terminal Key Mapping paxdiablo 2008-11-19T10:49:39Z 2008-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>