Questions tagged [terminal-emulator]

Terminal emulators are programs that emulate a terminal within some other display architecture. Often associated with a command line shell, but the term extends to all remote terminals and their graphical interfaces.

Terminal emulators emulate a terminal, typically within a graphical user interface (GUI). The type of terminal emulated may vary and range from terminals such as VT100, IBM 3270/8/9/E, Sun console, QNX, AT386, SCO-ANSI, and many others. Additionally, programs have been developed to emulate other terminal emulators such as xterm and assorted console terminals (e.g., for Linux). Finally, some emulations simply refer to a standard, such as ANSI. Terminal emulators are available on many platforms ranging from DOS and Unix to Windows and Macintosh, to embedded operating systems found in cellphones and industrial hardware.

Popular terminal emulators include xterm, aterm, gnome-terminal, konsole, rxvt, PuTTY, SecureCRT, and many others.

252 questions
0
votes
2 answers

VT100 terminal emulation for a Java-based 8-bit computer emulator

I am successfully using GNU Screen as serial terminal to "talk" to my Altair 8800 clone (http://altairclone.com/) using serial line. The command I use is 'screen -istrip /dev/ttyUSB0'. Screen does the VT100 emulation, strips off MSB from output etc.…
0
votes
1 answer

Do arrow keys don't work in terminal emulation vai ssh

While ssh'ing in my own machine, I am able to use Ctrl+P for command history in the terminal emulator. I wanted to know is it possible to make arrow keys function as well. I am ssh'ing through a program, not through the command ssh user@host Why I…
E1T1
  • 99
  • 1
  • 2
  • 11
0
votes
1 answer

How to log xterm window from tcl script

I am opening a xterm window from my tcl by exec xterm -geometry 78x36+0+0 -fn "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1" -sl 10000 -sb -bg white -bd white -into..... I am executing other commands on this emulate terminal. Now i want to…
mkreddy
  • 143
  • 2
  • 3
  • 12
0
votes
2 answers

.Net AS400 terminal emulator recommendations?

We may be switching our terminal emulation software soon... I'd like to see if there are any recommendations out there for AS400 terminal emulation software that includes a good .net api. Just to head this one off at the pass... Yes, I'd love to…
MattB
  • 2,053
  • 5
  • 21
  • 44
0
votes
1 answer

Interface between python tty/terminos and a browser terminal emulator

There is a python programm named consolecallback using tty and terminos. And there are browser terminal emulators like this: JQueryTerminal GateOne ShellInABox. How would I get the consolecallback programm working with one of this terminal emulators…
eye
  • 340
  • 1
  • 3
  • 13
0
votes
1 answer

How to make work in terminal.app on mac?

I want to use python-mode and jedi for autocompletion in Vim for python. However under my environment (vim 7.3 in terminal.app on OSX 10.8), I just cannot have the key-combination work. I read many related articles and knows that it is because…
0
votes
1 answer

Ericsson f3507g WWAN (3G Broadband) and AT commands

I have a lenovo x200t tablet with WWAN built into it. I'm trying to connect to the internet using AT commands and a C# program which I am making so that the program can connect to the net and upload information on demand. I don't want to use…
Darbio
  • 10,681
  • 12
  • 55
  • 98
0
votes
1 answer

Sending function keys to a tn5250/telnet server

I have a project that connects to an AS400 and communicates with a combination of plain text and what appear to be old ANSI escape codes. I have the project to the point where I can receive and send plain text, log in, and log out. I have been told…
tsilb
  • 7,534
  • 13
  • 64
  • 94
0
votes
4 answers

Open source C# vt100 server

Does anyone know of an open source C# vt100 server? I'm looking to create a C# server that understands the escape sequences from a vt100 client.
sipsorcery
  • 28,885
  • 23
  • 95
  • 145
0
votes
1 answer

\033 Prompt in unix

I wrote a signal handler that prints a line from buffer, it first removes the previous prompt, print a line and prints the prompt again at the end of the screen. here is my handler. void print(int param) { int c; signal(SIGALRM, print); …
Bunny Bunny
  • 637
  • 2
  • 6
  • 9
0
votes
2 answers

Executing a outgoing/incoming call broadcast receiver in android emulator

I have written a simple BroadcastReceiver application in Android to monitor the incoming and outgoing calls... i would like test the BroadcastReceiver via emulator... can anyone please let me know how to execute the BroacastReceiver in…
0
votes
2 answers

mouse capturing differences between Terminal.app with MouseTerm SIMBL plugin and iTerm2

iTerm2: Mouse reporting works out of the box, works in Vim, works fully in Tmux, mouse wheel reporting works in Vim and for navigating Tmux history, but mouse wheel reporting does not work in manpages, does not work in git log, does not work in…
Steven Lu
  • 36,733
  • 50
  • 179
  • 328
0
votes
2 answers

Find what was printed in the terminal

Is there anyway to check the terminal (Linux, and Windows) for characters at certain positions? I have external methods loaded via an explicitly loaded dll that prints certain characters onto the screen. I need to see if the functions printed what…
robbert229
  • 454
  • 5
  • 12
0
votes
1 answer

Do I need to implement terminal emulation if I have a ptty?

If I have a pseudo terminal given to me (from say a pty-req (http://www.ietf.org/rfc/rfc4254.txt)) do I need to emulate the data coming back, or is that already emulated data?
Zombies
  • 22,793
  • 38
  • 132
  • 216
0
votes
2 answers

how to access the server side terminal in a webpage at client side?

A terminal emulator has to be embedded in a web page, in which the user has to compile and run his java program created on server by web page access. I want to compile and run the program in terminal. The client not needed to install any application…
1 2 3
16
17