1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- .\" Man page generated from reStructuredText.
- .
- .
- .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
- ..
- .TH "BORG-REPO-SPACE" "1" "2025-05-22" "" "borg backup tool"
- .SH NAME
- borg-repo-space \- Manage reserved space in repository
- .SH SYNOPSIS
- .sp
- borg [common options] repo\-space [options]
- .SH DESCRIPTION
- .sp
- This command manages reserved space in a repository.
- .sp
- Borg can not work in disk\-full conditions (can not lock a repo and thus can
- not run prune/delete or compact operations to free disk space).
- .sp
- To avoid running into dead\-end situations like that, you can put some objects
- into a repository that take up some disk space. If you ever run into a
- disk\-full situation, you can free that space and then borg will be able to
- run normally, so you can free more disk space by using prune/delete/compact.
- After that, don\(aqt forget to reserve space again, in case you run into that
- situation again at a later time.
- .sp
- Examples:
- .INDENT 0.0
- .INDENT 3.5
- .sp
- .EX
- # Create a new repository:
- $ borg repo\-create ...
- # Reserve approx. 1GB of space for emergencies:
- $ borg repo\-space \-\-reserve 1G
- # Check amount of reserved space in the repository:
- $ borg repo\-space
- # EMERGENCY! Free all reserved space to get things back to normal:
- $ borg repo\-space \-\-free
- $ borg prune ...
- $ borg delete ...
- $ borg compact \-v # only this actually frees space of deleted archives
- $ borg repo\-space \-\-reserve 1G # reserve space again for next time
- .EE
- .UNINDENT
- .UNINDENT
- .sp
- Reserved space is always rounded up to use full reservation blocks of 64MiB.
- .SH OPTIONS
- .sp
- See \fIborg\-common(1)\fP for common options of Borg commands.
- .SS options
- .INDENT 0.0
- .TP
- .BI \-\-reserve \ SPACE
- Amount of space to reserve (e.g. 100M, 1G). Default: 0.
- .TP
- .B \-\-free
- Free all reserved space. Don\(aqt forget to reserve space later again.
- .UNINDENT
- .SH SEE ALSO
- .sp
- \fIborg\-common(1)\fP
- .SH AUTHOR
- The Borg Collective
- .\" Generated by docutils manpage writer.
- .
|