Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在两个Linux机器(如ncurses)之间使用TUI over telnet连接,有没有办法做到这一点或通过C中的telnet使用TUI?
您的意思是要远程登录到服务器机器并运行 ncurses 应用程序,还是想在一台机器上运行 UI,而在另一台机器上运行后端。如果是前者,您只需要在运行程序之前在服务器机器上正确设置 TERM 环境变量(即export TERM=vt100)。
export TERM=vt100
如果是后者,那么 ncurses 本身不会进行任何联网,但您当然可以编写一个使用 ncurses 的客户端,并让客户端以某种方式与服务器后端通信。