@@ -43,7 +43,7 @@ in your backup log files (you check them regularly anyway, right?).
43
43
44
44
Also helpful:
45
45
46
- - use `borg rspace ` to reserve some disk space that can be freed when the fs
46
+ - use `borg repo-space ` to reserve some disk space that can be freed when the fs
47
47
does not have free space any more.
48
48
- if you use LVM: use a LV + a filesystem that you can resize later and have
49
49
some unallocated PEs you can add to the LV.
@@ -332,7 +332,7 @@ Repository encryption
332
332
333
333
You can choose the repository encryption mode at repository creation time::
334
334
335
- $ borg rcreate --encryption=MODE
335
+ $ borg repo-create --encryption=MODE
336
336
337
337
For a list of available encryption MODEs and their descriptions, please refer
338
338
to :ref: `borg_rcreate `.
@@ -380,7 +380,7 @@ Borg can initialize and access repositories on remote hosts if the
380
380
host is accessible using SSH. This is fastest and easiest when Borg
381
381
is installed on the remote host, in which case the following syntax is used::
382
382
383
- $ borg -r ssh://user@hostname:port/path/to/repo rcreate ...
383
+ $ borg -r ssh://user@hostname:port/path/to/repo repo-create ...
384
384
385
385
Note: please see the usage chapter for a full documentation of repo URLs.
386
386
@@ -396,7 +396,7 @@ it is still possible to use the remote host to store a repository by
396
396
mounting the remote filesystem, for example, using sshfs::
397
397
398
398
$ sshfs user@hostname:/path/to /path/to
399
- $ borg -r /path/to/repo rcreate ...
399
+ $ borg -r /path/to/repo repo-create ...
400
400
$ fusermount -u /path/to
401
401
402
402
You can also use other remote filesystems in a similar way. Just be careful,
@@ -502,7 +502,7 @@ Example with **borg mount**:
502
502
# open a new, separate terminal (this terminal will be blocked until umount)
503
503
504
504
# now we find out the archive names we have in the repo:
505
- borg rlist
505
+ borg repo-list
506
506
507
507
# mount one archive from a borg repo:
508
508
borg mount -a myserver-system-2019-08-11 /mnt/borg
@@ -528,7 +528,7 @@ Example with **borg extract**:
528
528
cd borg_restore
529
529
530
530
# now we find out the archive names we have in the repo:
531
- borg rlist
531
+ borg repo-list
532
532
533
533
# we could find out the archive contents, esp. the path layout:
534
534
borg list myserver-system-2019-08-11
0 commit comments