是否可以通过 telnet 连接使用 ncurses?
我想在两个 Linux 机器(如 ncurses)之间使用 TUI 通过 telnet 连接,有没有办法做到这一点或通过 C 中的 telnet 使用 TUI?
I wanna use a TUI over telnet connection between two Linux boxes like ncurses, is there a way to do this or to use TUIs through telnet in C?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是您想要远程登录到服务器计算机并运行 ncurses 应用程序,还是想以某种方式在一台计算机上运行 UI,而在另一台计算机上运行后端。如果是前者,您只需在运行程序之前在服务器计算机上正确设置 TERM 环境变量(即
export TERM=vt100
)。如果是后者,那么 ncurses 本身不会执行任何网络操作,但您当然可以编写一个使用 ncurses 的客户端,并让客户端以某种方式与服务器后端通信。
Do you mean you want to telnet to a server machine and run an ncurses application, or do you somehow want to run a UI on one machine, and a backend on the other. If it's the former, you just need to set the TERM environment variable correctly on the server machine before running your program (i.e.,
export TERM=vt100
).If it's the latter, then ncurses itself isn't going to do any networking, but you could certainly write a client that uses ncurses, and have the client talk to a server backend in some way.