123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- .\" Man page generated from reStructuredText.
- .
- .TH BORG-COMPACT 1 "2019-03-21" "" "borg backup tool"
- .SH NAME
- borg-compact \- compact segment files in the repository
- .
- .nr rst2man-indent-level 0
- .
- .de1 rstReportMargin
- \\$1 \\n[an-margin]
- level \\n[rst2man-indent-level]
- level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
- -
- \\n[rst2man-indent0]
- \\n[rst2man-indent1]
- \\n[rst2man-indent2]
- ..
- .de1 INDENT
- .\" .rstReportMargin pre:
- . RS \\$1
- . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
- . nr rst2man-indent-level +1
- .\" .rstReportMargin post:
- ..
- .de UNINDENT
- . RE
- .\" indent \\n[an-margin]
- .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
- .nr rst2man-indent-level -1
- .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
- .in \\n[rst2man-indent\\n[rst2man-indent-level]]u
- ..
- .SH SYNOPSIS
- .sp
- borg [common options] compact [options] REPOSITORY
- .SH DESCRIPTION
- .sp
- This command frees repository space by compacting segments.
- .sp
- Use this regularly to avoid running out of space \- you do not need to use this
- after each borg command though.
- .sp
- borg compact does not need a key, so it is possible to invoke it from the
- client or also from the server.
- .sp
- Depending on the amount of segments that need compaction, it may take a while.
- .sp
- See \fIseparate_compaction\fP in Additional Notes for more details.
- .SH OPTIONS
- .sp
- See \fIborg\-common(1)\fP for common options of Borg commands.
- .SS arguments
- .INDENT 0.0
- .TP
- .B REPOSITORY
- repository to compact
- .UNINDENT
- .SS optional arguments
- .INDENT 0.0
- .TP
- .B \-\-cleanup\-commits
- cleanup commit\-only 17\-byte segment files
- .UNINDENT
- .SH EXAMPLES
- .INDENT 0.0
- .INDENT 3.5
- .sp
- .nf
- .ft C
- # compact segments and free repo disk space
- $ borg compact /path/to/repo
- # same as above plus clean up 17byte commit\-only segments,
- # use this one time after upgrading borg (server) to 1.2+
- # to clean up the tiny segments files created by borg 1.1:
- $ borg compact \-\-cleanup\-commits /path/to/repo
- .ft P
- .fi
- .UNINDENT
- .UNINDENT
- .SH SEE ALSO
- .sp
- \fIborg\-common(1)\fP
- .SH AUTHOR
- The Borg Collective
- .\" Generated by docutils manpage writer.
- .
|