Backups and Restoring Data with tar M5

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/23

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

24 Terms

1
New cards

Health Insurance Portability and Accountability Act (HIPAA)

requires healthcare providers to keep records for six years.

2
New cards

A backup is

a saved version of specific files in a drive or network folder at a given point in time.

3
New cards

System administrators backup data

so organizations can quickly recover lost assets and restore systems.

4
New cards

why are back ups important

  • A backup saves specified files on your system and copies them to a safe secondary place.

  • Backups are generally completed hourly or daily.

  • Performing regular backups is a top priority for organizations

5
New cards

Different Types of Backups

Full, Differential, Incremental

6
New cards

Full Backup

More reliable and offers complete restoration but requires large storage space

7
New cards

Differential backup

Captures all of the changes made since that initial backup

8
New cards

Incremental Backup

Captures only the changes made since the last backup, whether it was a full, differential, or incremental backup

9
New cards

The tar (tape archive) command

is a Linux utility that system administrators use to create a backup.

10
New cards

An archive

is a special file that contains a concatenation of files and directories

11
New cards

cvf in linux

c stands for create

v stands for verbose

f indicates the title of the archive

12
New cards

gzip in linux

is a command used to create a compressed tar archive, indicated with a tar.gz extension.

  • gzip compression is useful when disk space is an issue

  • Moving files requires less bandwidth, faster transfer times

13
New cards

czvf

cz creates the file and compresses it using gzip.

14
New cards

xzvf

-xz extracts the file and decompresses it using gzip.

15
New cards

A checkpoint

is an action assigned to take place at a specific stage of a backup or restoration

16
New cards

A cronjob

is a script or command designated to run at regular or periodic, predetermined intervals.

17
New cards

The cron in cronjob

refers to a system daemon that keeps track of when to run scheduled tasks.

  • cron is most suitable for scheduling repetitive tasks.

18
New cards

A daemon

is a computer program that runs as a background process, rather than being under the direct control of an interactive user.

19
New cards

cron is a robust task scheduler daemon that

allows users to schedule repetitive tasks to run on a regular basis.

20
New cards

Tasks are stored and scheduled in a file called a

crontab (cron table).

21
New cards

cronjobs run

under the same permissions as the user who creates them.

  • A cronjob created by user root will run with root privileges.

22
New cards

cron in linux

is useful for managing single function tasks

23
New cards

cron ideal for backing up

a single directory: ex /home

but is

Not ideal for multiple directories: ex /home/user1, /home/user2

24
New cards

/home/user2