|
@@ -27,12 +27,12 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
|
|
|
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
|
|
|
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
|
|
|
..
|
|
|
-.TH "BORG-RCREATE" 1 "2024-09-08" "" "borg backup tool"
|
|
|
+.TH "BORG-REPO-CREATE" 1 "2024-09-08" "" "borg backup tool"
|
|
|
.SH NAME
|
|
|
-borg-rcreate \- Create a new, empty repository
|
|
|
+borg-repo-create \- Create a new, empty repository
|
|
|
.SH SYNOPSIS
|
|
|
.sp
|
|
|
-borg [common options] rcreate [options]
|
|
|
+borg [common options] repo\-create [options]
|
|
|
.SH DESCRIPTION
|
|
|
.sp
|
|
|
This command creates a new, empty repository. A repository is a \fBborgstore\fP store
|
|
@@ -48,7 +48,7 @@ tips will come below):
|
|
|
.sp
|
|
|
.nf
|
|
|
.ft C
|
|
|
-borg rcreate \-\-encryption repokey\-aes\-ocb
|
|
|
+borg repo\-create \-\-encryption repokey\-aes\-ocb
|
|
|
.ft P
|
|
|
.fi
|
|
|
.UNINDENT
|
|
@@ -215,7 +215,7 @@ To normally work with \fBauthenticated\fP repos, you will need the passphrase, b
|
|
|
there is an emergency workaround, see \fBBORG_WORKAROUNDS=authenticated_no_key\fP docs.
|
|
|
.SS Creating a related repository
|
|
|
.sp
|
|
|
-You can use \fBborg rcreate \-\-other\-repo ORIG_REPO ...\fP to create a related repository
|
|
|
+You can use \fBborg repo\-create \-\-other\-repo ORIG_REPO ...\fP to create a related repository
|
|
|
that uses the same secret key material as the given other/original repository.
|
|
|
.sp
|
|
|
By default, only the ID key and chunker secret will be the same (these are important
|
|
@@ -228,7 +228,7 @@ keys to manage.
|
|
|
Creating related repositories is useful e.g. if you want to use \fBborg transfer\fP later.
|
|
|
.SS Creating a related repository for data migration from borg 1.2 or 1.4
|
|
|
.sp
|
|
|
-You can use \fBborg rcreate \-\-other\-repo ORIG_REPO \-\-from\-borg1 ...\fP to create a related
|
|
|
+You can use \fBborg repo\-create \-\-other\-repo ORIG_REPO \-\-from\-borg1 ...\fP to create a related
|
|
|
repository that uses the same secret key material as the given other/original repository.
|
|
|
.sp
|
|
|
Then use \fBborg transfer \-\-other\-repo ORIG_REPO \-\-from\-borg1 ...\fP to transfer the archives.
|
|
@@ -268,28 +268,28 @@ copy the crypt_key (used for authenticated encryption) from the key of the other
|
|
|
# Local repository
|
|
|
$ export BORG_REPO=/path/to/repo
|
|
|
# recommended repokey AEAD crypto modes
|
|
|
-$ borg rcreate \-\-encryption=repokey\-aes\-ocb
|
|
|
-$ borg rcreate \-\-encryption=repokey\-chacha20\-poly1305
|
|
|
-$ borg rcreate \-\-encryption=repokey\-blake2\-aes\-ocb
|
|
|
-$ borg rcreate \-\-encryption=repokey\-blake2\-chacha20\-poly1305
|
|
|
+$ borg repo\-create \-\-encryption=repokey\-aes\-ocb
|
|
|
+$ borg repo\-create \-\-encryption=repokey\-chacha20\-poly1305
|
|
|
+$ borg repo\-create \-\-encryption=repokey\-blake2\-aes\-ocb
|
|
|
+$ borg repo\-create \-\-encryption=repokey\-blake2\-chacha20\-poly1305
|
|
|
# no encryption, not recommended
|
|
|
-$ borg rcreate \-\-encryption=authenticated
|
|
|
-$ borg rcreate \-\-encryption=authenticated\-blake2
|
|
|
-$ borg rcreate \-\-encryption=none
|
|
|
+$ borg repo\-create \-\-encryption=authenticated
|
|
|
+$ borg repo\-create \-\-encryption=authenticated\-blake2
|
|
|
+$ borg repo\-create \-\-encryption=none
|
|
|
|
|
|
# Remote repository (accesses a remote borg via ssh)
|
|
|
$ export BORG_REPO=ssh://user@hostname/~/backup
|
|
|
# repokey: stores the (encrypted) key into <REPO_DIR>/config
|
|
|
-$ borg rcreate \-\-encryption=repokey\-aes\-ocb
|
|
|
+$ borg repo\-create \-\-encryption=repokey\-aes\-ocb
|
|
|
# keyfile: stores the (encrypted) key into ~/.config/borg/keys/
|
|
|
-$ borg rcreate \-\-encryption=keyfile\-aes\-ocb
|
|
|
+$ borg repo\-create \-\-encryption=keyfile\-aes\-ocb
|
|
|
.ft P
|
|
|
.fi
|
|
|
.UNINDENT
|
|
|
.UNINDENT
|
|
|
.SH SEE ALSO
|
|
|
.sp
|
|
|
-\fIborg\-common(1)\fP, \fIborg\-rdelete(1)\fP, \fIborg\-rlist(1)\fP, \fIborg\-check(1)\fP, \fIborg\-benchmark\-cpu(1)\fP, \fIborg\-key\-import(1)\fP, \fIborg\-key\-export(1)\fP, \fIborg\-key\-change\-passphrase(1)\fP
|
|
|
+\fIborg\-common(1)\fP, \fIborg\-repo\-delete(1)\fP, \fIborg\-repo\-list(1)\fP, \fIborg\-check(1)\fP, \fIborg\-benchmark\-cpu(1)\fP, \fIborg\-key\-import(1)\fP, \fIborg\-key\-export(1)\fP, \fIborg\-key\-change\-passphrase(1)\fP
|
|
|
.SH AUTHOR
|
|
|
The Borg Collective
|
|
|
.\" Generated by docutils manpage writer.
|