Glossary Flashcards

1
Q

Stream

A

Current

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

Buffer

A

File loaded into memory

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

Sockets

A

A combination of network address and a port number

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

Line

A

A line of text marked by opening LF (line Feed) and closing CR (Carriage Return)

The one line that’s an exception is the opening line.

So a line can be composed of multiple sentences, a sentence does note necessarily mean a line

If a line doesn’t have both a line feed and carraige return, it’s considered orphaned.

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

Standard Input

A

Commands to execute

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

Standard Output

A

Result of commands

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

Window

A

Portion of the buffer currently displayed in the Window

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

Kernel

A

Core operating system. Used to be monolithic, now moduler

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

Shell

A

Interface bettween user and os (take our commands and turn them into system calls)

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

Filesystem

A

Logical, herirachal representation of data on a disk partition

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

File

A

A file is one complete, named unit of digital information, that may be physically contiguous in its storage or spread across a chain of fragments. By complete, what is meant is that you cannot tell the system to delete half of a file.

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

Directories

A

Directories, on the other hand, are special files that do not contain any data themselves—they are just containers that list names of contained (“immediate child”) files and subdirectories. If you want to explore what lies in the directory file, you can open a directory in a text editor (!), just to be sure that it indeed is this way.

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

Symbolic Link

A

Link to a directory

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

Pipe

A

Allows commands to be used as input for other operations

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

Character class

A

Used with regular expressions, to define a set of characters to match on

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

Registers

A

Space you can copy information to

17
Q

null device

A

A special file that information can be pumped into. Evrrything goes in and never comes out.

18
Q

standard input

A

It;s a device node. Where input goes. A nameless file the shell identfies with the name, 0

19
Q

standard output

A

It’s a device node. Where out put goes. A namesless file the shell identifies with the name, 1

20
Q

Standard error

A

A device name where error messages go. A nameless file identified with the name, 2

21
Q

Redirection

A

Allows output to be sent to other files. You can redirect (> which uses the output to populate file) or append (» this will append the content if there is already existing content)

22
Q

Console

A

1) Standard Input / Standard Output (keyboard and Monitor)

2) Console Mode (System running in plain text mode)

23
Q

Hard Link

A

A link to the original with a different name

24
Q

Symbolic Link

A

The link points to original entity

25
Q

Linking data

A

Data show up exactly once in the filesystem

26
Q

What’s the difference between a monotlithic vs modular operating system?

A

Monolithic means all functionality is built into one file.

Modular means that functionality is split up across multiple files where each group of files provides a certain functionality.

27
Q

Switch

A

An option that modifies the behaviour of a command

28
Q

Partition

A

Essentially, a partition is a contiguous portion of a hard disk, the start and end of which are recorded in the first sector of the disk (which hosts a partition table). Every disk can be broken into chunks, each of which can be presented to the operating system as a single storage source (filesystem).

29
Q

What types of partitions are there

A

MBR (Master Boot Record) and GPT (GUID Partition Table).

GUID in turn stand sfor Globally Unique Identifier.