Module 5 Flashcards

1
Q

Redirection

A

modifying the location to which an input is taken from or an
output is sent for a given command; redirection operators are commutative,
meaning they can appear in swapped orders and produce the same result
○ “dup2” system call: implement redirection by passing in two file
descriptors (oldfd and newfd) and causing newfd to point to the file or
data structure that was pointed to by oldf

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Standard input

A

the location where programs look for their inputs; for
programs initiated in command-line, this defaults to your terminal; Standard in
can be redirected, and child processes inherit standard in from their parent
process; the Standard in file descriptor is “0”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Standard output

A

the location where programs stream their outputs; for
programs initiated in command-line, this defaults to your terminal; Standard
out can be redirected, and child processes inherit standard out from their
parent process; the Standard out file descriptor is “1”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Pipe

A

a form of interprocess communication, providing a way to stream data
from one process to the other; pipes have a “write end” to which data gets
written by one process to be sent to another process, and a “read end” from
which the receiving process reads the incoming data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

SIGPIPE

A

a signal generated when a process tries to write to a pipe whose
read end has been closed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Process pipelining

A

running multiple processes at the same time where the output
of one process is used as input to another process

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Half duplex

A

data flows in one direction; pipes between two processes are in the half
duplex communication paradigm as data flows in one direction between the two
processes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

FIFO

A

these are similar to pipes; while pipes are temporary and unnamed
connections, FIFOs are files with names that allow two processes to communicate by
writing to the file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Process group

A

collection of processes that are established in a way such that you
can send (or block) a signal to the entire group at the same time; the processes in a
pipeline are in a single process group

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

PGID

A

process group ID

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Session ID

A

one instance of your login to your shell is a session, and all processes
launched in this session have the same session ID

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

SSH

A

a secure network protocol that allows a remote user to be authenticated to
login to a machine

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Foreground process

A

there is always exactly one foreground process; this process
has access to interactive shell output (in the absence of explicit redirection) and
input, and receives all the terminal generated signals; the shell must wait on this
process before executing another process

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Job terminal control

A

ability to manipulate multiple jobs from a single terminal and
also to allow us to toggle jobs between background and foreground

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Synchronous waiting

A

a process waits finds out the outcome of another process by
implementing a loop that constantly checks for a signal; “busy wait”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Asynchronous waiting

A

a process continues executing normally and when another
process has a signal to send, a generic SIGCHLD is sent to the executing process,
who handles the signal with a SIGCHLD signal handler

17
Q

Background processes

A

there can be any number of background processes; these
processes will allow the user to execute other programs and interact with the shell
without waiting