是否可以通过 telnet 连接使用 ncurses?

发布于 2024-12-26 15:33:09 字数 87 浏览 0 评论 0原文

我想在两个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酷遇一生 2025-01-02 15:33:09

您的意思是您想要远程登录到服务器计算机并运行 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文