Jump to content

Terminal emulator: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Line 22: Line 22:
== Examples of terminal emulators ==
== Examples of terminal emulators ==
Under [[Microsoft Windows]], programs that provide the remote-access form of terminal emulation include the built-in programs [[HyperACCESS|HyperTerminal]] and Microsoft's [[telnet]] client, as well as 3rd party programs like [[PuTTY]], [[AlphaCom]], Poderosa, [[Terminator (terminal emulator)|Terminator]], TigerTerm, [[Ericom Software]] PowerTerm InterConnect, z/Scope Express VT, [[Tera Term]], SwitchTermJ, SecureCRT and Access*One. For Windows CE and Windows Mobile there are products like [[MochaSoft]], MobileVT, Access*One and NaurTech. [[MS-DOS]] examples include [[ProComm]], [[Qmodem]], [[Telemate]], and [[Telix]]. A program called Crosstalk ran on both MS-DOS and CP/M.
Under [[Microsoft Windows]], programs that provide the remote-access form of terminal emulation include the built-in programs [[HyperACCESS|HyperTerminal]] and Microsoft's [[telnet]] client, as well as 3rd party programs like [[PuTTY]], [[AlphaCom]], Poderosa, [[Terminator (terminal emulator)|Terminator]], TigerTerm, [[Ericom Software]] PowerTerm InterConnect, z/Scope Express VT, [[Tera Term]], SwitchTermJ, SecureCRT and Access*One. For Windows CE and Windows Mobile there are products like [[MochaSoft]], MobileVT, Access*One and NaurTech. [[MS-DOS]] examples include [[ProComm]], [[Qmodem]], [[Telemate]], and [[Telix]]. A program called Crosstalk ran on both MS-DOS and CP/M.

* [http://www.softogo.com/com/en/prod_tn.html WireLess TelNet] (SofToGo)


A so-called "DOS box" or "Command prompt" is the Windows equivalent of a locally-connected terminal window (in fact, it is a [[Win32 console]]).
A so-called "DOS box" or "Command prompt" is the Windows equivalent of a locally-connected terminal window (in fact, it is a [[Win32 console]]).

Revision as of 15:47, 17 April 2008

Apple Terminal.app

A terminal emulator, terminal application, term, or tty for short, is a program that emulates a "dumb" video terminal within some other display architecture. Though typically synonymous with a command line shell or text terminal, the term terminal covers all remote terminals, including graphical interfaces. A terminal emulator inside a graphical user interface is often called a terminal window.

A terminal window allows the user access to a text terminal and all its applications such as command line interfaces (CLI) and text user interface applications. These may be running either on the same machine or on a different one via telnet, ssh, or dial-up. On Unix-like operating systems it is common to have one or more terminal windows connected to the local machine.

Terminals usually support a set of escape sequences for controlling color, cursor position, etc. Examples include the family of terminal control sequence standards known as ECMA-48, ANSI X3.64 or ISO/IEC 6429.

xterm, a popular terminal emulator designed for X11.

Early adopters of computer technology, such as banks, insurance companies, and governments, still make frequent use of terminal emulators. They typically have decades old applications running on mainframe computers. The old “dumb” video terminals used to access the mainframe are long since obsolete; however, applications on the mainframe are still in use. Quite often, terminal emulators are the only way a user can access applications running on these older machines.

Raw and cooked input/output

On Unix-like systems, at the level of the terminal or terminal emulator an individual keypress sends an individual code from the character set in use. Also, carriage return and line feed are distinct operations. In raw mode, text passes directly from the terminal or PTY (a device node that a program wishing to emulate a terminal binds to) to the TTY device. In cooked mode a number of changes are made as the data pass between the terminal or PTY and the TTY: The application gets complete lines of input at once neatly terminated with a line feed and can send just a linefeed when it wants a new line. Also, text typed is echoed back to the user. When a program is started, terminal is generally in cooked mode which allows easy input and output of text, but applications that want more control will often put the terminal into raw mode, or a slightly more processed rare mode. The individual characteristics of cooked mode can be turned on and off individually which may be needed for certain applications.

Synchronous terminals

The 3270-based terminals used with IBM mainframe computers are an example of synchronous terminals. They operate in an essentially "screen-at-a-time" mode. Users can make numerous changes to a page, before submitting the updated screen to the remote machine as a single action. This paradigm can be surprising to those used to the more common asynchronous terminal behaviour, though in fact it is conceptually quite similar to the submission of HTTP forms on the Web.

Terminal emulators that simulate the original 3270 hardware terminal are available for most operating systems, for use both by those administering systems such as the z9, as well as those using the corresponding applications such as CICS.

Examples of terminal emulators

Under Microsoft Windows, programs that provide the remote-access form of terminal emulation include the built-in programs HyperTerminal and Microsoft's telnet client, as well as 3rd party programs like PuTTY, AlphaCom, Poderosa, Terminator, TigerTerm, Ericom Software PowerTerm InterConnect, z/Scope Express VT, Tera Term, SwitchTermJ, SecureCRT and Access*One. For Windows CE and Windows Mobile there are products like MochaSoft, MobileVT, Access*One and NaurTech. MS-DOS examples include ProComm, Qmodem, Telemate, and Telix. A program called Crosstalk ran on both MS-DOS and CP/M.

A so-called "DOS box" or "Command prompt" is the Windows equivalent of a locally-connected terminal window (in fact, it is a Win32 console).

Mac OS X includes Terminal as its default terminal emulator for local access. Third-party applications such as iTerm are also available for Mac OS X.

For the X Window System, there are many different terminal emulators for local access, such as xterm, dtterm, Eterm, GNOME Terminal, Konsole, rxvt, mrxvt, wterm, SwitchTerm, TeemTalk and aterm.

See also