8.12 Flashcards

1
Q

A copy of all the files that exists at the point in time when the backup is taking place.

A

full backup

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

An ________ stores files that has been changed or added since the last backup has been made

A

incremental backup

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

A ____________ copies all of the files that have been updated since the last full backup.

A

differential backup

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

This feature allows you to take point-in-time snapshots of the files on a system without causing the downtime inherent in traditional backups. A snapshot is set pointers to blocks of data that make up a set of files at a point in time.

A

Snapshot clones backup

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

A single computer file or set of files that contain the contents of a hard disk.

A

image backup

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

An algorithm that produces a 128-bit hash value.

A

message digest algorithm 5 (MD5)

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

A cryptographic hash function that takes an input and produces a 160-bit (20-byte) hash value known as a message digest. SHA is typically rendered as a 40-digit hexadecimal number.

A

Secure Hash Algorithm
(SHA)

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

utility takes the contents of several files and stores them as a single file

A

tar

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

The _____ command can be used to backup directories or entire file systems

A

tar

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

To help others know that the tar utility must be used to ___________ from it, by convention, an archive file created with tar is assigned an extension of .tar.

A

extract files

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

The _____ command reduces the size of the named files using Lempel–Ziv coding (LZ77).

A

gzip

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

Whenever possible, each file is replaced by one with the extension ‘________ while keeping the same ownership modes, access and modification times

A

.gz’,

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

The ___ command is a general-purpose data compression tool with command line syntax similar to gzip and bzip2. The native file format is the .xz format, but also the legacy .lzma format and raw compressed streams with no container format headers are supported.

A

xz

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

The xz command ________ or decompresses each file according to the selected operation mode. If no files are given or file is -, xz reads from the standard input and writes the processed data to standard outpu

A

compresses

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

__________compresses files using the Burrows-Wheeler block sorting text compression algorithm, and Huffman coding.
The command-line options are deliberately very similar to those of GNU gzip, but they are not identical.

A

bzip2

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

bzip2 expects a list of file names to accompany the command-line flags. Each file is replaced by a compressed version of itself______________, with the name . Each compressed file has the same modification date, permissions, and, when possible, ownership as the corresponding original, so that these properties can be correctly restored at decompression time.

A

original_name.bz2