PDA

View Full Version : backspace in reflection



691
11-27-2003, 10:43 PM
Hi,
I'm using ReflectionX v 10 to XDMCP Direct connection with Knoppix. The backspace button deletes only with shift. Does somebody can explain why, and how to change it?
Thanks a lot

baldyeti
11-28-2003, 12:10 AM
Your emulator sends DEL (chr(127)) when your session expects Ctrl-H (chr(8)) - or the other way around.
On the client session side, this can be adjusted through stty erase (see "man stty").
What the emulator (X-server) sends for the BS key can probably be configured as well.

691
11-28-2003, 08:33 AM
Your emulator sends DEL (chr(127)) when your session expects Ctrl-H (chr(8)) - or the other way around.
On the client session side, this can be adjusted through stty erase (see "man stty").
What the emulator (X-server) sends for the BS key can probably be configured as well.
Thanks, I'll try