Hardware A multiplicity of I/O devices are regarded as "terminals" in Unix systems. These include: •
serial devices connected by a
serial port such as
printers/
teleprinters,
teletypewriters,
modems supporting
remote terminals via
dial-up access, and directly connected
local terminals •
display adapter and
keyboard hardware directly incorporated into the system unit, taken together to form a local "console", which may be presented to users and to programs as a single CRT terminal or as multiple
virtual terminals • software
terminal emulators, such as the
xterm,
Konsole,
GNOME Terminal, and
Terminal programs, and network servers such as the
rlogin daemon and the
SSH daemon, which make use of
pseudoterminals
Terminal intelligence and capabilities Intelligence: terminals are dumb, not intelligent Unlike its mainframe and minicomputer contemporaries, the original Unix system was developed solely for
dumb terminals, and that remains the case today. A terminal is a character-oriented device, comprising streams of characters received from and sent to the device. Although the streams of characters are structured, incorporating
control characters,
escape codes, and special characters, the I/O protocol is not structured as would be the I/O protocol of
smart, or
intelligent, terminals. There are no field format specifications. There's no block transmission of entire screens (input forms) of input data. By contrast mainframes and minicomputers in closed architectures commonly use
Block-oriented terminals.
Capabilities: terminfo, termcap, curses, et al. The "capabilities" of a terminal comprise various dumb terminal features that are above and beyond what is available from a pure teletypewriter, which programs can make use of. They (mainly) comprise escape codes that can be sent to or received from the terminal. The escape codes sent to the terminal perform various functions that a CRT terminal (or software terminal emulator) is capable of that a teletypewriter is not, such as moving the terminal's cursor to positions on the screen, clearing and scrolling all or parts of the screen, turning on and off attached printer devices, programmable function keys, changing display colours and attributes (such as
reverse video), and setting display title strings. The escape codes received from the terminal signify things such as
function key,
arrow key, and other special
keystrokes (
home key,
end key,
help key,
PgUp key,
PgDn key,
insert key,
delete key, and so forth). These capabilities are encoded in databases that are configured by a system administrator and accessed from programs via the
terminfo library (which supersedes the older
termcap library), upon which in turn are built libraries such as the
curses and
ncurses libraries. Application programs use the terminal capabilities to provide
textual user interfaces with windows, dialogue boxes, buttons, labels, input fields, menus, and so forth.
Controlling environment variables: TERM et al. The particular set of capabilities for the terminal that a (terminal-aware) program's input and output uses is obtained from the database rather than hardwired into programs and libraries, and is controlled by the TERM
environment variable (and, optionally for the termcap and terminfo libraries, the TERMCAP and TERMINFO environment variables, respectively). This variable is set by whatever
terminal monitor program spawns the programs that then use that terminal for its input and output, or sometimes explicitly. For example: • The
getty program (or equivalent) sets the TERM environment variable according to a system database (variously
inittab or the configuration files for the
ttymon or
launchd programs) defining what local terminals are attached to what serial ports and what terminal types are provided by local virtual terminals or the local system console. • A dial-up user on a remote terminal is not using the type of terminal that the system commonly expects on that dial-up line, and so manually sets the TERM environment variable immediately after login to the correct type. (More usually, the terminal type set by the getty program for the dial-up line, that the system administrator has determined to be used most often by dial-up users with remote terminals, matches the one used by the dial-up user and that user has no need to override the terminal type.) • The
SSH server daemon (or equivalent such as the
rlogin daemon) sets the TERM environment variable to the same terminal type as the SSH client. • The software terminal emulator, using a pseudoterminal, sets the TERM environment variable to specify the type of terminal that it is emulating. Emulated terminals often do not exactly match real terminal hardware, and terminal emulators have type names dedicated for their use. The xterm program (by default) sets xterm as the terminal type, for example. The
GNU Screen program sets screen as the terminal type.
Job control Terminals provide job control facilities. Interactively, the user at the terminal can send control characters that suspend the currently running job, reverting to the interactive job control shell that spawned the job, and can run commands that place jobs in the "background" or that switch another, background, job into the foreground (unsuspending it if necessary).
Line disciplines Strictly speaking, in Unixes a terminal device comprises the underlying
tty device driver, responsible for the physical control of the device hardware via I/O instructions and handling device interrupt requests for character input and output, and the
line discipline. A line discipline is independent of the actual device hardware, and the same line discipline can be used for a
terminal concentrator device responsible for multiple controlling terminals as for a pseudoterminal. In fact, the line discipline (or, in the case of BSD, AIX, and other systems, line
disciplines) are the same across all terminal devices. It is the line discipline that is responsible for local echo, line editing, processing of input modes, processing of output modes, and character mapping. All these things are independent of the actual hardware, dealing as they do in the simple abstractions provided by tty device drivers: transmit a character, receive a character, set various hardware states. In
Seventh Edition Unix,
BSD systems and derivatives including
macOS, and
Linux, each terminal device can be switched amongst multiple line disciplines. In the AT&T
STREAMS system, line disciplines are STREAMS modules that may be pushed onto and popped off a STREAMS I/O stack. == History ==