User Tools

Site Tools


terminale

https://unix.stackexchange.com/questions/43103/backspace-tab-not-working-in-terminal-using-ssh

I have seen such problems before.

Take the backspace for example, the remote host expects some character to be used as “erase/backspace” , while you pressing backspace in the terminal , the terminal program will send some character to the remote host, if what the remote host expects diffs with the characters sent by the terminal program, you would encounter this issue. So a quick fix is as below:

run command #stty -a in the remote host, and find what is expected to be an erase code in the output. Say erase=^?. In the terminal, type Ctrlv and press your backspace. You'll see what code is sent as “erase”. Say it is ^H. In the remote host, run #stty erase ^H. (Note: use Ctrlv + Backspace, do not type the ^ manually) You can fix the Tab issue with the same as above.

http://web.archive.org/web/20120621035133/http://www.ibb.net/~anne/keyboard/keyboard.html

terminale.txt · Last modified: 2019/12/09 10:48 by valerio