-
Notifications
You must be signed in to change notification settings - Fork 0
/
rsync-backup.1
89 lines (49 loc) · 1.5 KB
/
rsync-backup.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
.\" Manpage for rsync-backup by user <user@host>
.TH "rsync-backup" "1" "2013-12-04" "user" "Rsync backup"
.SH NAME
rsync-backup - Very simpel backup using Rsync
.SH SYNOPSIS
.nf
rsync-backup [ -d path/to/dest ]
.SH DESCRIPTION
Erstellt ein Backup aller Dateien aus --src in --dest. Es wird alles
ins Backup kopiert, was nicht explizit ausgelassen werden soll.
Um Rekursion zu vermeiden muss sichergestellt sein, dass --dest vom
Backup ausgelassen ist.
.SH OPTIONS
.SS -h, --help
Shows help options.
.SS -s, --src
Quelle. Standardwert ist das Wurzelverzeichnis: /
.SS -d, --dest
Ziel. Standardwert ist das aktuelle Arbeitsverzeichnis: .
.SS -C, --config-dir
Konfigurationsverzeichnis. Standardwert ist /etc/rsync-backup
.SS --
Weitere Optionen für Rsync anhängen.
.SH EXAMPLES
.SS "Doppeltes Ausführen mittels lockfile verhindern"
.nf
flock ~/.rsync-backup.lock rsync-backup [options…]
.SS "Festplatten testen"
.nf
smartcheck && rsync-backup
.SS "Backup over ssh:"
.nf
rsync-backup --src root@host:/ [--dest ./]
.SS "Local backup:"
.nf
rsync-backup [--src /] [--dest ./]
.SS "Cronjob:"
.nf
@daily rsync-backup -d /mnt/Volume/rsync-backup/ -- -q
.SH FILES
.SS /etc/rsync-backup/, ~/.rsync-backup, .rsync-backup
Configuration directory.
.SS $config_dir/rsync-filter
The file-filtering rules.
.SS $config_dir/{pre,post}-hooks.d
Executables in diesen Verzeichnissen, werden mittels run-parts(8) vor bzw.
nach dem Kopieren ausgeführt. Bei Fehlern bricht das Backup ab!
.SH SEE ALSO
.BR rsync(1)