-->
Page 633
by David B. Horvath
Page 634
This is a fairly extensive glossary of terms that are related to the UNIX environment and their definitions. All the authors of this book contributed to this section.
NOTE |
The language of the computer field is constantly expanding. If you cannot find a word in this glossary, it is because it is newer than anything the authors knew about or the authors decided is was so obvious that "everyone should already know it." |
#Octothorpe. $HOMEEnvironment variable that points to your login directory. $PATHPathname environment variable. $PATHThe shell environment variable that contains a set of directories to be searched for UNIX commands. .1Files with this extension contain manual page entries. The actual extension can be any value between 1 and 9 and can have an alphabetic suffix (.3x, .7, and so on). .agApplixware graphics file. .asApplixware spreadsheet file. .awApplixware word processing file. .bmpBitmap graphics file. .cC source file. .CC++ source file. .ccC++ source file. .confConfiguration file. .cxxC++ source file. .dbDatabase file. .dviDevice-independent TeX output. .gifGIF graphics file. .gzFile compressed using the GNU gzip utility. .hC header file. .htmlHTML document.
Page 635
.jpgJPEG graphics file. .mObjective C source file. .oCompiled object file. .pPascal language source file. .pbmPortable bitmap graphics file. .pdfAdobe Acrobat file. .psPostScript file .sAssembler language file. .tartar file. .tgzGzipped tar file. .tifTIFF graphics file. .txtText document. .ZFile compressed using the compress command. /Root directory. /devDevice directory.
/dev/null fileThe place to send output that you are not interested in seeing; also the place to get input from when you have none (but the program or command requires something). This is also known as the bit bucket (where old bits go to die).
/dev/printerSocket for local print requests.
/etc/cshrc fileThe file containing shell environment characteristics common to all users that use the C Shell.
/etc/group fileThis file contains information about groups, the users they contain, and passwords required for access by other users. The password might actually be in another file, the shadow group file, to protect it from attacks.
/etc/inittab fileThe file that contains a list of active terminal ports for which UNIX will issue the login prompt. This also contains a list of background processes for UNIX to initialize. Some versions of UNIX use other files, such as /etc/tty.
/etc/motd fileMessage of the day file; usually contains information the system administrator feels is important for you to know. This file is displayed when the user signs on the system.
/etc/passwd fileContains user information and password. The password might actually be in another file, the shadow password file, to protect it from attacks.
Page 636
/etc/profileThe file containing shell environment characteristics common to all users of the Bourne and Korn shells.
/usr/localLocally developed public executables directory.
/var/spoolVarious spool directories.
[]Brackets.
{}Braces.
ANSIAmerican National Standards Institute.
APIApplication Program Interface. The specific method prescribed by a computer operating system, application, or third-party tool by which a programmer writing an application program can make requests of the operating system. Also known as Application Programmer's Interface.
arArchive utility.
argumentsSee parameters.
ARPASee DARPA.
ASCIIAmerican Standard Code for Information Interchange. Used to represent characters in memory for most computers.
AT&T UNIXOriginal version of UNIX developed at AT&T Bell Labs, later known as UNIX Systems Laboratories. Many current versions of UNIX are descendants; even BSD UNIX was derived from early AT&T UNIX.
attributeThe means of describing objects. The attributes for a ball might be rubber, red, 3 cm in diameter. The behavior of the ball might be how high it bounces when thrown. Attribute is another name for the data contained within an object (class).
awkProgramming language developed by A.V. Aho, P.J. Weinberger, and Brian W. Kernighan. The language is built on C syntax, includes the regular expression search facilities of grep, and adds in the advanced string and array handling features that are missing from the C language. nawk, gawk, and POSIX awk are versions of this language.
backgroundProcesses usually running at a lower priority and with their input
disconnected from the interactive session. Any input and output are usually directed to a file or other
process.
background processAn autonomous process that runs under UNIX without requiring user interaction.
backupThe process of storing the UNIX system, applications, and data files on removable media for future retrieval.
Page 637
bashStands for GNU Bourne Again Shell and is based on the Bourne shell, sh, the original command interpreter.
biffBackground mail notification utility.
bisonGNU parser generator (yacc replacement).
block-specialA device file that is used to communicate with a block-oriented I/O device. Disk and tape drives are examples of block devices. The block-special file refers to the entire device. You should not use this file unless you want to ignore the directory structure of the device (that is, if you are coding a device driver).
boot or boot upThe process of starting the operating system (UNIX).
Bourne shellThe original standard user interface to UNIX that supported limited programming capability.
BSDBerkeley Software Distribution.
BSD UNIXVersion of UNIX developed by Berkeley Software Distribution and written at University of California, Berkeley.
bugAn undocumented program feature.
CProgramming language developed by Brian W. Kernighan and Dennis M. Ritchie. The C language is highly portable and available on many platforms including mainframes, PCs, and, of course, UNIX systems.
C shellA user interface for UNIX written by Bill Joy at Berkeley. It features C
programming-like syntax.
CADComputer-aided design.
castProgramming construct to force type conversion.
catConcatenate files command.
CD-ROMCompact Disk-Read Only Memory. Computer-readable data stored on the same physical form as a musical CD. Large capacity, inexpensive, slower than a hard disk, and limited to reading. There are versions that are writable (CD-R, CD Recordable) and other formats that can be written to once or many times.
CGICommon Gateway Interface. A means of transmitting data between Web pages and programs or scripts executing on the server. Those programs can then process the data and send the results back to the user's browser through dynamically creating HTML.
character specialA device file that is used to communicate with character-oriented I/O devices like terminals, printers, or network communications lines. All I/O access is treated as a series of bytes (characters).
characters, alphabeticThe letters A through Z and a through z.
Page 638
characters, alphanumericThe letters A through Z and a through z, and the numbers 0
through 9.
characters, controlAny nonprintable characters. The characters are used to control devices, separate records, and eject pages on printers.
characters, numericThe numbers 0 through 9.
characters, specialAny of the punctuation characters or printable characters that are not alphanumeric. Include the space, comma, period, and many others.
child processSee subprocess.
child shellSee subshell.
classA model of objects that have attributes (data) and behavior (code or functions). It is also viewed as a collection of objects in their abstracted form.
command-line editingUNIX shells support the ability to recall a previously entered command, modify it, and then execute the new version. The command history can remain between sessions (the commands you did yesterday can be available for you when you log in today). Some shells support a command-line editing mode that uses a subset of the vi, emacs, or gmacs editor commands for command recall and modification.
command-line historySee command-line editing.
command-line parametersUsed to specify parameters to pass to the execute program or procedure. Also known as command-line arguments.
configuration filesCollections of information used to initialize and set up the environment for specific commands and programs. Shell configuration files set up the user's environment.
configuration files, shellFor Bourne shell: /etc/profile and $HOME/.profile.
For Korn and pdksh shells: /etc/profile, $HOME/.profile, and ENV= file.
For C and tcsh shells: /etc/.login, /etc/cshrc, $HOME/.login, $HOME/.cshrc, and $HOME/.logout. Older versions might not support the first two files listed.
For bash: /etc/profile/, $HOME/.bash_profile, $HOME/.bash_login, $HOME/.profile, $HOME/.bashrc, and ~/.bash_logout.
CPUCentral Processing Unit. The primary "brain" of the computerthe calculation engine and logic controller.
daemonA system-related background process that often runs with the permissions of root and services requests from other processes.
DARPA(U.S. Department of) Defense Advanced Research Projects Agency. Funded development of TCP/IP and ARPAnet (predecessor of the Internet).
database serverSee server, database.
Page 639
device fileFile used to implement access to a physical device. This provides a consistent approach to access of storage media under UNIX; data files and devices (like tapes and communication facilities) are implemented as files. To the programmer, there is no real difference.
directoryA means of organizing and collecting files together. The directory itself is a file that consists of a list of files contained within it. The root (/) directory is the top level and every other directory is contained in it (directly or indirectly). A directory might contain other directories, known as subdirectories.
directory navigationThe process of moving through directories is known as navigation. Your current directory is known as the current working directory. Your login directory is known as the default or home directory. Using the cd command, you can move up and down through the tree structure of directories.
DNSDomain Name Server. Used to convert between the name of a machine on the Internet (name.domain.com) to the numeric address (123.45.111.123).
DOSDisk Operating System. Operating system that is based on the use of disks for the storage of commands. It is also a generic name for MS-DOS and PC-DOS on the personal computer. MS-DOS is the version Microsoft sells; PC-DOS is the version IBM sells. Both are based on Microsoft code.
doubleDouble-precision floating point.
dpiDots per inch.
EBCDICExtended Binary Coded Decimal Interchange Code. The code used to represent characters in memory for mainframe computers.
edA common tool used for line-oriented text editing.
elmInteractive mail program.
emacsA freely available editor now part of the GNU software distribution. Originally written by Richard M. Stallman at MIT in the late 1970s, it is available for many platforms. It is extremely extensible and has its own programming language; the name stands for editing with macros.
e-mailMessages sent through an electronic medium instead of through the local postal service. There are many proprietary e-mail systems that are designed to handle mail within a LAN environment; most of these are also able to send over the Internet. Most Internet (open) e-mail systems make use of MIME to handle attached data (which can be binary).
encapsulationThe process of combining data (attributes) and functions (behavior in the form of code) into an object. The data and functions are closely coupled within an object. Instead of all programmers being able to access the data in a structure their own way, they have to use the code connected with that data. This promotes code reuse and standardized methods of working with the data.
Page 640
environment variablesSee variables, environmental.
EthernetA networking method where the systems are connected to a single shared bus and all traffic is available to every machine. The data packets contain an identifier of the recipient, and that is the only machine that should process that packet.
expressionA constant, variable, or operands and operators combined. Used to set a value, perform a calculation, or set the pattern for a comparison (regular expressions).
FIFOFirst In, First Out. See pipe, named.
fileCollection of bytes stored on a device (typically a disk or tape). Can be source code, executable binaries or scripts, or data.
file compressionThe process of applying mathematical formulas to data, typically resulting in a form of the data that occupies less space. A compressed file can be uncompressed, resulting in the original file. When the compress/uncompress process results in exactly the same file as was originally compressed, it is known as lossless. If information about the original file is lost, the compression method is known as lossy. Data and programs need lossless compression; images and sounds can stand lossy compression.
file, indexedA file based on a file structure where data can be retrieved based on specific keys (name, employee number, and so on) or sequentially. The keys are stored in an index. This is not directly supported by the UNIX operating system; usually implemented by the programmer or by using tools from an ISV. A typical form is known as ISAM.
file, line sequentialSee file, text.
file, sequentialThis phrase can mean either a file that can only be accessed sequentially (not randomly), or a file without record separators (typically fixed length, but UNIX does not know what that length is and does not care).
file, textA file with record separators. Can be fixed or variable length; UNIX tools can handle these files because the tools can tell when the record ends (by the separator).
filenameThe name used to identify a collection of data (a file). Without a pathname, it is assumed to be in the current directory.
filename generationThe process of the shell interpreting metacharacters (wildcards) to produce a list of matching files. This is referred to as filename expansion or globbing.
filename, fully qualifiedThe name used to identify a collection of data (a file) and its location. It includes both the path and name of the file; typically, the pathname is fully specified (absolute). See also pathname and pathname, absolute.
filesystemA collection of disk storage that is connected (mounted) to the directory structure at some point (sometimes at the root). Filesystems are stored in a disk partition and are sometimes referred to as being the disk partition.
Page 641
fingerUser information lookup program.
firewallA system used to provide a controlled entry point to the internal network from the outside (usually the Internet). This is used to prevent outside or unauthorized systems from accessing systems on your internal network. The capability depends on the individual software package, but the features typically include filter packets and filter datagrams, system (name or IP address) aliasing, and rejecting packets from certain IP addresses. In theory, it provides protection from malicious programs or people on the outside. It can also prevent internal systems from accessing the Internet on the outside. The name comes from the physical barrier between connected buildings or within a single building that is supposed to prevent fire from spreading from one to another.
flagsSee options.
floatSingle-precision floating point.
foregroundPrograms running while connected to the interactive session.
fseekInternal function used by UNIX to locate data inside a file or filesystem. ANSI standard fseek accepts a parameter that can hold a value of +2 to -2 billion. This function, used by the operating system, system tools, and application programs, is the cause of the 2GB file and filesystem size limitation on most systems. With 64-bit operating systems, this limit is going away.
FSFFree Software Foundation.
FTPFile Transfer Protocol or File Transfer Program. A system-independent means of
transferring files between systems connected via TCP/IP. Ensures that the file is transferred
correctly, even if there are errors during transmission. Can usually handle character set
conversions (ASCII/EBCDIC) and record terminator resolution (linefeed for UNIX, carriage
return and linefeed for MS/PC-DOS).
gatewayA combination of hardware, software, and network connections that provides a link between one architecture and another. Typically, a gateway is used to connect a LAN or UNIX server with a mainframe (that uses SNA for networking, resulting in the name SNA gateway). A gateway can also be the connection between the internal and external network (often referred to as a firewall). See also firewall.
GIDGroup ID number.
globbingSee filename generation.
GNUGNU stands for GNU's Not UNIX, and is the name of free useful software packages commonly found in UNIX environments that are being distributed by the GNU project at MIT, largely through the efforts of Richard Stallman. The circular acronym name ("GNU" containing the acronym GNU as one of the words it stands for) is a joke on Richard Stallman's part. One of the textbooks on operating system design is titled XINU: XINU Is Not UNIX, and GNU follows in that path.
Page 642
GPLGNU General Public License.
grepA common tool used to search a file for a pattern. egrep and fgrep are newer versions. egrep allows the use of extended (hence the e prefix) regular expressions; fgrep uses limited expressions for faster (hence the f prefix) searches.
GUIGraphical user interface.
here documentThe << redirection operator, known as here document, allows keyboard input (stdin) for the program to be included in the script.
HTMLHypertext Markup Language. Describes World Wide Web pages. It is the document language that is used to define the pages available on the Internet through the use of tags. A browser interprets the HTML to display the desired information.
i-nodeUsed to describe a file and its storage. The directory contains a cross-reference between the i-node and pathname/filename combination. Also known as inode. A file's entry in disk data structure (ls -i).
I-PhoneInternet Phone. This is a method of transmitting speech long distances over the Internet in near real-time. Participants avoid paying long distance telephone charges. They still pay for the call to their ISP and the ISP's service charges.
ICCCMInter-Client Communications Conventions Manual.
ICMPInternet Control Message Protocol. Part of TCP/IP that provides network layer management and control.
imakeC preprocessor interface to make utility.
inheritanceA method of object-oriented software reuse in which new classes are developed based on existing ones by using the existing attributes and behavior and adding on to them. If the base object is automobiles (with attributes of engine and four wheels and tires; behavior of acceleration, turning, deceleration), a sports car would modify the attributes: engine might be larger or have more horsepower than the default, the four wheels might include alloy wheels and high-speed_rated tires; the behavior would also be modified: faster acceleration, tighter turning radius, faster deceleration.
inodeSee i-node.
intInteger.
InternetA collection of different networks that provide the ability to move data between them. It is built on the TCP/IP communications protocol. Originally developed by DARPA, it was taken over by NSF, and has now been released from governmental control.
Internet Service ProviderThe people that connect you to the Internet.
IRCInternet relay chat. A server-based application that allows groups of people to communicate simultaneously through text-based conversations. IRC is similar to Citizen Band radio
Page 643
or the chat rooms on some bulletin boards. Some chats can be private (between invited people only) or public (where anyone can join in). IRC now also supports sound files as well as text; it can also be useful for file exchange.
ISAMIndexed Sequential Access Method. On UNIX and other systems, ISAM refers to a method for accessing data in a keyed or sequential way. The UNIX operating system does not directly support ISAM files; they are typically add-on products.
ISOInternational Standards Organization.
ISPSee Internet Service Provider.
ISVIndependent Software Vendor. Generic name for software vendors other than your hardware vendor.
K&RKernighan and Ritchie.
kernelThe core of the operating system that handles tasks like memory allocation, device input and output, process allocation, security, and user access. UNIX tends to have a small kernel when compared to other operating systems.
keys, controlThese are keys that cause some function to be performed instead of displaying a character. These functions have names: The end-of-file key tells UNIX that there is no more input; it is usually Ctrl+D.
keys, specialSee keys, control.
Korn shellA user interface for UNIX with extensive scripting (programming) support. Written by David G. Korn. The shell features command-line editing and will also accept scripts written for the Bourne shell.
LANLocal Area Network. A collection of networking hardware, software, desktop computers, servers, and hosts all connected together within a defined local area. A LAN could be an entire college campus.
limitsSee quota.
link fileFile used to implement a symbolic link producing an alias on one filesystem for a file on another. The file contains only the fully qualified filename of the original (linked-to) file.
link, hardDirectory entry that provides an alias to another file within the same filesystem. Multiple entries appear in the directory (or other directories) for one physical file without replication of the contents.
link, softSee link, symbolic.
link, symbolicDirectory entry that provides an alias to another file that can be in another filesystem. Multiple entries appear in the directory for one physical file without replication of the contents. Implemented through link files; see also link file.
Page 644
LISPList Processing Language.
loginThe process with which a user gains access to a UNIX system. This can also refer to the user ID that is typed at the login prompt.
lpLine printer.
lpcLine printer control program.
lpdLine printer daemon.
lpqPrinter spool queue examination program.
lprmPrinter spool queue job removal program.
lsList directory(s) command.
man pageOnline reference tool under UNIX that contains the documentation for the
systemthe actual pages from the printed manuals. It is stored in a searchable form for
improved ability to locate information.
manual pageSee man page.
memory, realThe amount of storage that is being used within the system (silicon; it used to be magnetic cores).
memory, virtualMemory that exists but you cannot see. Secondary storage (disk) is used to allow the operating system to enable programs to use more memory than is physically available.
Part of a disk is used as a paging file and portions of programs and their data are moved between it and real memory. To the program, it is in real memory. The hardware and operating system performs translation between the memory address the program thinks it is using and where it is actually stored.
metacharacterA printing character that has special meaning to the shell or another command. It is converted into something else by the shell or command; the asterisk (*) is converted by the shell to a list of all files in the current directory.
MIMEMultipurpose Internet Mail Extensions. A set of protocols or methods of attaching binary data (executable programs, images, sound files, and so on) or additional text to e-mail messages.
motdMessage of the day.
MPTNMultiProtocol Transport Network. IBM networking protocol to connect mainframe to TCP/IP network.
MrmMotif resource manager.
mtuMaximum transmission unit.
Page 645
mwmMotif window manager.
NetnewsThis is a loosely controlled collection of discussion groups. A message (similar to an e-mail) is posted in a specific area, and then people can comment on it, publicly replying to the same place (posting a response) for others to see. A collection of messages along the same theme is referred to as a thread. Some of the groups are moderated, which means that nothing is posted without the approval of the owner. Most are not, and the title of the group is no guarantee that the discussion will be related. The official term for this is Usenet news.
NFSNetwork File System. Means of connecting disks that are mounted to a remote system to the local system as if they were physically connected.
NISNetwork Information Service. A service that provides information necessary to all
machines on a network, such as NFS support for hosts and clients, password verification, and
so on.
NNTPNetnews Transport Protocol. Used to transmit Netnews or Usenet messages over top of TCP/IP. See Netnews for more information on the messages transmitted.
Null StatementA program step that performs no operation but to hold space and fulfill syntactical requirements of the programming language. Also known as a NO-OP for no-operation performed.
objectAn object in the truest sense of the word is something that has physical properties, like automobiles, rubber balls, and clouds. These things have attributes and behavior. They can be abstracted into data (attribute) and code (behavior). Instead of just writing functions to work on data, they are encapsulated into a package that is known as an object.
operatorMetacharacter that performs a function on values or variables. The plus sign (+) is an operator that adds two integers.
optionsProgram- or command-specific indicators that control behavior of that program. Sometimes called flags. The -a option to the ls command shows the files that begin with . (such as .profile, .kshrc, and so on). Without it, these files would not be shown, no matter what wildcards were used. These are used on the command line. See also parameters.
OSFOpen Software Foundation.
parametersData passed to a command or program through the command line. These can be options (see options) that control the command or arguments that the command works on. Some have special meaning based on their position on the command line.
parent processProcess that controls another often referred to as the child process or subprocess. See also process.
parent process identifierShown in the heading of the ps command as PPID. The process identifier of the parent process. See also parent process.
Page 646
parent shellShell (typically the login shell) that controls another, often referred to as the child shell or subshell. See also shell.
passwordThe secure code that is used in combination with a user ID to gain access to a UNIX system.
pathnameThe means used to represent the location of a file in the directory structure. If you do not specify a pathname, it defaults to the current directory.
pathname, absoluteThe means used to represent the location of a file in a directory by specifying the exact location, including all directories in the chain including the root.
pathname, relativeThe means used to represent the location of a file in a directory other than the current by navigating up and down through other directories using the current directory as a base.
PDPPersonal Data Processor. Computers manufactured by Digital Equipment Corporation. UNIX was originally written for a PDP-7 and gained popularity on the PDP-11. The entire series were inexpensive minicomputers popular with educational institutions and small businesses.
PerlProgramming language developed by Larry Wall. (Perl stands for "Practical Extraction and Report Language" or "Pathologically Eclectic Rubbish Language"; both are equally valid.) The language provides all of the capabilities of awk and sed, plus many of the features of the shells and C.
permissionsWhen applied to files, they are the attributes that control access to a file. There are three levels of access: Owner (the file creator), Group (people belonging to a related group as determined by the system administrator), and Other (everyone else). The permissions are usually r for read, w for write, and x for execute. The execute permissions flag is also used to control who may search a directory.
PGPPretty Good Privacy encryption system.
pineInteractive mail program.
pipeA method of sending the output of one program (redirecting) to become the input of another. The pipe character (|) tells the shell to perform the redirection.
pipe fileSee pipe, named.
pipe, namedAn expanded function of a regular pipe (redirecting the output of one program to become the input of another). Instead of connecting stdout to stdin, the output of one program is sent to the named pipe and another program reads data from the same file. This is implemented through a special file known as a pipe file or fifo. The operating system ensures the proper sequencing of the data. Little or no data is actually stored in the pipe file; it just acts as a connection between the two.
Page 647
polymorphismAllows code to be written in a general fashion to handle existing and future related classes. Properly developed, the same behavior can act differently depending on the derived object it acts on. With an automobile, the acceleration behavior might be different for a station wagon and a dragster, which are subclasses of the superclass automobile. The function would still be accelerate(), but the version would vary (this might sound confusing, but the compiler keeps track and figures it all out).
POSIXPortable Operating System Interface, UNIX. POSIX is the name for a family of open system standards based on UNIX. The name has been credited to Richard Stallman. The POSIX Shell and Utilities standard developed by IEEE Working Group 1003.2 (POSIX.2) concentrates on the command interpreter interface and utility programs.
PostScriptAdobe Systems, Inc. printer language.
PPPPoint-to-Point Protocol. Internet protocol over serial link (modem).
pppdPoint-to-Point-Protocol daemon.
printcapPrinter capability database.
processA discrete running program under UNIX. The user's interactive session is a process. A process can invoke (run) and control another program that is then referred to as a subprocess. Ultimately, everything a user does is a subprocess of the operating system.
process identifierShown in the heading of the ps command as PID. The unique number assigned to every process running in the system.
pwdPrint working directory command.
quotaGeneral description of a system-imposed limitation on a user or process. It can apply to disk space, memory usage, CPU usage, maximum number of open files, and many other resources.
quotingThe use of single and double quotes to negate the normal command interpretation and concatenate all words and whitespace within the quotes as a single piece of text.
RCSRevision Control System.
redirectionThe process of directing a data flow from the default. Input can be redirected to get data from a file or the output of another program. Normal output can be sent to another program or a file. Errors can be sent to another program or a file.
regular expressionA way of specifying and matching strings for shells (filename wildcarding), grep (file searches), sed, and awk.
reserved wordA set of characters that are recognized by UNIX and related to a specific program, function, or command.
RFCRequest For Comment. Document used for creation of Internet- and TCP/IP-related standards.
Page 648
rloginRemote Login. Gives the same functionality as telnet, with the added functionality of not requiring a password from trusted clients, which can also create security concerns (see also telnet).
rootThe user that owns the operating system and controls the computer. The processes of the operating system run as though a user, root, signed on and started them. Root users are all- powerful and can do anything they want. For this reason, they are often referred to as superusers. Root is also the very top of the directory tree structure.
routingThe process of moving network traffic between two different physical networks; also decides which path to take when there are multiple connections between the two machines. It might also send traffic around transmission interruptions.
RPCRemote Procedural Call. Provides the ability to call functions or subroutines that run on a remote system from the local one.
RPMRed Hat Package Manager.
scriptA program written for a UNIX utility including shells, awk, Perl, sed, and others. See also shell scripts.
SCSISmall Computer System Interface.
sedA common tool used for stream text editing, having ed-like syntax.
server, databaseA system designated to run database software (typically a relational database like Oracle, SQL Server, Sybase, or others). Other systems connect to this one to get the data (client applications).
SGIDSet group ID.
shellThe part of UNIX that handles user input and invokes other programs to run commands. Includes a programming language. See also Bourne shell, C shell, Korn shell, tcsh, and bash.
shell environmentThe shell program (Bourne, Korn, C, tcsh, or bash), invocation options and preset variables that define the characteristics, features, and functionality of the UNIX command-line and program execution interface.
shell or command promptThe single character or set of characters that the UNIX shell displays for which a user can enter a command or set of commands.
shell scriptsA program written using a shell programming language like those supported by Bourne, Korn, or C shells.
signalA special flag or interrupt that is used to communicate special events to programs by the operating system and other programs.
SLIPSerial Line Internet Protocol. Internet over a serial line (modem). The protocol frames and controls the transmission of TCP/IP packets of the line.
Page 649
SNASystem Network Architecture. IBM networking architecture.
stderrThe normal error output for a program that is sent to the screen by default. Can be redirected to a file.
stdinThe normal input for a program, taken from the keyboard by default. Can be redirected to get input from a file or the output of another program.
stdoutThe normal output for a program that is sent to the screen by default. Can be redirected to a file or to the input of another program.
sticky bitOne of the status flags on a file that tells UNIX to load a copy of the file into the page file the first time it is executed. This is done for programs that are commonly used so the bytes are available quickly. When the sticky bit is used on frequently used directories, it is cached in memory.
streamA sequential collection of data. All files are streams to the UNIX operating system. To it, there is no structure to a file; that is something imposed by application programs or special tools (ISAM packages or relational databases).
subdirectorySee directory.
subnetA portion of a network that shares a common IP address component. Used for security and performance reasons.
subprocessProcess running under the control of another, often referred to as the parent process. See also process.
subshellShell running under the control of another, often referred to as the parent shell (typically the login shell). See also shell.
SUIDSet user ID.
superuserUsually the root operator.
sysadminBurnt-out root operator (system administrator).
system administratorThe person who takes care of the operating system and user administrative issues on UNIX systems. Also called a system manager, although that term is much more common in DEC VAX installations.
system managerSee system administrator.
system programmerSee system administrator.
tarTape archiving utility.
TCPTransmission Control Protocol.
TCP/IPTransport Control Protocol/Internet Protocol. The pair of protocols and also generic name for suite of tools and protocols that forms the basis for the Internet. Originally developed to connect systems to the ARPAnet.
Page 650
tcshA C shell-like user interface featuring command-line editing.
telnetRemote login program.
TelnetProtocol for interactive (character user interface) terminal access to remote systems. The terminal emulator that uses the Telnet protocol is often known as telnet or tnvt100.
termcapTerminal capability database.
terminalA hardware device, normally containing a cathode ray tube (screen) and keyboard for human interaction with a computer system.
text processing languagesA way of developing documents in text editors with
embedded commands that handle formatting. The file is fed through a processor that executes the
embedded commands, producing a formatted document. These include
roff, nroff, troff,
RUNOFF, TeX, LaTeX, and even the mainframe SCRIPT.
TFTPTrivial File Transfer Protocol or Trivial File Transfer Program. A system-
independent means of transferring files between systems connected via TCP/IP. It is
different from FTP in that it does not ensure that the file is transferred correctly, does not
authenticate users, and is missing a lot of functionality (like the
ls command).
tinInteractive news reader.
topA common tool used to display information about the top processes on the system.
UDPUser Datagram Protocol. Part of TCP/IP used for control messages and data transmission where the delivery acknowledgment is not needed. The application program must ensure data transmission in this case.
UIDUser ID number.
UILMotif User Interface Language.
URLUniform Resource Locator. The method of specifying the protocol, format, login (usually omitted), and location of materials on the Internet.
UsenetSee Netnews.
UUCPUNIX-to-UNIX copy program. Used to build an early, informal network for the transmission of files, e-mail, and Netnews.
variables, attributesThe modifiers that set the variable type. A variable can be string or integer, left- or right-justified, read-only or changeable, and other attributes.
variables, environmentalA place to store data and values (strings and integers) in the area controlled by the shell so they are available to the current and subprocesses. They can just be local to the current shell or available to a subshell (exported).
variables, substitutionThe process of interpreting an environmental variable to get its value.
Page 651
WANWide Area Network.
WebSee World Wide Web.
whitespaceBlanks, spaces, and tabs that are normally interpreted to delineate commands and filenames unless quoted.
wildcardMeans of specifying filename(s) whereby the operating system determines some of the characters. Multiple files might match and will be available to the tool.
World Wide WebA collection of servers and services on the Internet that run software and communicate using a common protocol (HTTP). Instead of the users' having to remember the location of these resources, links are provided from one Web page to another through the use of URLs.
WWWSee World Wide Web.
WYSIWYGWhat You See Is What You Get.
XSee X Window System.
X Window SystemA windowing and graphics system developed by MIT, to be used in
client/server environments.
X11See X Window System.
X-windowsThe wrong term for the X Window System. See X Window System.
yaccYet another compiler compiler.
Page 652