Backup & Scheduling Commands

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 5:49 PM on 5/22/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

25 Terms

1
New cards

Does Linux have an official backup tool?

no

2
New cards

How can you create a custom backup solution in Linux?

using cron job scheduling and file copy scripts, possibly with tar or gzip

3
New cards

What are some backup products available for Linux?

Amanda, Bacula, Fwbackups, and Rsync

4
New cards

What service is used to run batches of commands or scripts for backups or maintenance tasks?

cron

5
New cards

Where can each user schedule tasks for cron?

in their personal crontab

6
New cards

How often does cron check the system-wide schedule?

every minute

7
New cards

What command shows a user's scheduled cron jobs?

crontab -l

8
New cards

What command removes scheduled cron jobs?

crontab -r

9
New cards

What command opens the crontab editor?

crontab -e

10
New cards

What is the default editor for crontab -e?

vi

11
New cards

What do the crontab fields mm, hh, dd, MM, weekday, and command represent?

minute, hour, day of month, month, day of week, and command or script with full path

12
New cards

What values can mm use in crontab?

0–59

13
New cards

What values can hh use in crontab?

0–23

14
New cards

What values can dd use in crontab?

1–31

15
New cards

What values can MM use in crontab?

1–12 or jan, feb, mar

16
New cards

What values can weekday use in crontab?

0–7 or sun, mon, tue

17
New cards

What does * mean in crontab?

any value

18
New cards

What does , mean in crontab?

multiple values

19
New cards

What does - mean in crontab?

range of values

20
New cards

What does /n mean in crontab?

every nth value

21
New cards

What does this crontab entry do: 15 02 * * 5 /usr/bin/rsync -av --delete /home/sam /mount/rsync?

runs rsync at 2:15 a.m. every Friday to synchronize files from /home/sam to /mount/rsync

22
New cards

What does the -v option do in the rsync example?

increased verbosity

23
New cards

What does the --delete option do in the rsync example?

removes files on the source side that don't exist on the destination

24
New cards

What is tar commonly used for in Linux backups?

easy to script into a backup schedule

25
New cards

What is rsync used for in Linux backups?

sync files between storage devices, instantly or on a schedule