1、问:在使用UNIX是经常会出现BACKSPACE等键不能正确使用的问题,请问如何解决? 答: 这其实是一个键盘布局不对应的问题,即UNIX使用的键盘布局和我们通常使用的WINDOWS键盘布局不同,可以通过设置客户端软件的方式来实现,也可以在UNIX中使用类似下面的命令来屏蔽。 1.set the DEL as the backspace: # stty erase The screen will show "stty erase ^?",Enter to run the command. 2.set the BACKSPACE as the backspace: # stty erase The screen will show "stty erase ^H",Enter to run the command.