箭头键变成 Telnet 中的控制字符
我在 Ubuntu 终端中,并通过 telnet 连接到服务器。现在每当我输入“up”时,它就会变成^[[A。其他箭头键也变成控制字符。有没有办法可以运行 telnet 以便它理解我的箭头键?这将是一个巨大的帮助,因为我想在我的命令历史记录中向上滚动。
I'm in an Ubuntu terminal, and telnet to a server. Now whenever I type 'up', it turns into ^[[A. Other arrow keys also turn into control characters. Is there a way I can run telnet so it understands my arrow keys? This would be a huge help because I'd like to scroll up in my commands history.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
telnet 不需要理解你的按键产生的转义序列;它需要理解你的按键产生的转义序列。它是您在远程端将它们输入的任何程序。看起来您的
$TERM
环境变量(在远程系统上)没有为您运行 telnet 的终端正确设置。我已经有一段时间没有使用 telnet 登录了,但 IIRC 它没有不会自动传输
TERM
,因此您可能需要自行设置。或者,正如 Mike C 所建议的那样,使用 ssh 来代替——这确实会传输TERM
。It's not telnet that needs to understand the escape sequences your keys produce; it's whatever program you're typing them into at the remote end. Looks like your
$TERM
environment variable (on the remote system) is not getting set correctly for the terminal you're running telnet in.It's been a while since I used telnet for logins, but IIRC it doesn't transfer
TERM
automatically, so you may have to set it yourself. Or, as Mike C suggests, use ssh instead -- that does transferTERM
.我要么通过 SSH 连接到服务器而不是 telnet,要么使用 puTTY。
I would either SSH into the server instead of telnet, or use puTTY.