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?
Is it possible to use ncurses through a telnet connection?
1.1k Views Asked by Lando At
1
There are 1 best solutions below
Related Questions in C
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in TELNET
- Automating Telnet Scripts from .bat with a teamspeak instance
- Wavelink TelnetCE pass login parameters in config file
- Java telnet connection to request new tor identity
- Telnet client for Cisco switch using Android java apps
- How to create sockets which are not blocked by company networks?
- Telnet send command and then read response
- Using Putty to redirect input to another host:port
- Writing to NetworkStream to authenticate with Varnish fails
- How to use sockets in Lua to telnet?
- Sending EOF via apache's TelnetClient to the "cat > somefile"
- Opening a telnet session using TCL in windows
- Why is part of my Telnet program throwing an error about misplaced '}'?
- PHP Telnet/SSH dynamic login
- telnet to azure vm port from outside
- telnetlib for python, how telnetlib can help me to figure out who is the person sending a tell to my BOT?
Related Questions in NCURSES
- What's a way to implement backspace working in field in ncurses
- addstr delay in Python Curses
- Moving Arc Mutex Ncurses window down thread still doesn't implement send
- Python testing ncurses
- Attributes for UTF-8 characters
- Using ncurses in c language
- how to print a matrix on c++ using ncurses?
- ncurses in C prints more than it should and prints colour codes
- Bug with refresh in python curses
- Compiler gives error: "Does not name a type" immediately after declared
- Best approach for building text based data entry app
- Python curses mouse event on Mac OS X
- How could I implement a scrolling window inside another?
- I'm getting an implicit declaration error only when using -std=c99
- Simple string assignment causing a segmentation fault?
Related Questions in TUI
- Read Low Level Mouse Click Unix passed through PuTTY
- The gdb is shows 0xc0000142 error, it is not running too, please help me out
- Can gdb's tui be divided into three windows?
- When debugging with gdb, sometimes the running position displayed by gdb is strange?
- Cannot leave tui mode with Ctrl-X A nor see program output in tui mode
- Is it possible to use ncurses through a telnet connection?
- How to simulate a button push by highlighting text?
- How to write a TUI in RHEL/CentOS
- What's wrong with this C declaration Code?
- Any idea how to make a button using TUI in C?
- Need some tutorial links abut TUI in Console application in C
- I need to restructure this class without the use of instance variables
- What ncurses frameworks are available for BASH?
- In urwid 'Frame' object has no attribute 'rows'
- 【The editor is used within the VUE】I cannot use v-model to bidirectional bind text in the Editor. I cannot get the text in the Editor
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
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.