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
|
.TH RDIFF-BACKUP-FS 1
.SH NAME
rdiff-backup-fs \- Filesystem for accessing rdiff-backup archives.
.SH SYNOPSIS
.B rdiff-backup-fs <mount_point> <repository> [repositories ...] [\-option ...]
.SH DESCRIPTION
.PP
.B rdiff-backup-fs
is a filesystem in userspace that
reads rdiff-backup archives and provides convenient access.
.SH OPTIONS
.TP
.BI "\--debug <0-4>"
Run rdiff-backup-fs in foreground with given verbosity of debug messages.
.TP
.BI "\-f, \--full"
Store information about all revisions in memory. CAUTION: this may take a lot
of memory if your archive contains many revisions.
.TP
.BI "\-l, \--last"
Displays files from the most recent increment as directories, each holding
every version of the file. CAUTION: this stores information about all
revisions in memory and therefore may take a lot of memory if archive contains
many revisions.
.TP
.BI "\-c <n>, \--caching <n>"
How many files retrieved from the rdiff-backup archive may be cached by
filesystem. By default rdiff-backup-fs will cache up to 10 files. If this switch
is set to 0, no caching will be done.
.TP
.BI "\-r <n>, \--revisions <n>"
How many revisions should be stored in memory for on demand revision
retrieval. By default rdiff-backup-fs will store up to 10 revisions
in memory.
.TP
.BI "\-d, \--directory <path>"
Set directory for directory with temporary files. By default rdiff-backup-fs
uses /tmp.
.TP
.BI "\-v, \--version"
Print version of rdiff-backup-fs and exit.
.SH SEE ALSO
.B rdiff-backup(1)
.SH COPYRIGHT
rdiff-backup-fs is Copyright (c) 2007-2011 Filip GruszczyĆski.
rdiff-backup-fs is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
.SH AUTHORS
Filip GruszczyĆski <gruszczy@gmail.com>
|