2013-06-29 21:56:44 +00:00
|
|
|
.. include:: global.rst.inc
|
2013-07-31 18:51:01 +00:00
|
|
|
.. _quickstart:
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2013-07-31 18:51:01 +00:00
|
|
|
Quick Start
|
|
|
|
===========
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2013-07-31 18:51:01 +00:00
|
|
|
This chapter will get you started with |project_name|. The first section
|
2013-08-04 20:50:34 +00:00
|
|
|
presents a simple step by step example that uses |project_name| to backup data.
|
2013-07-31 18:51:01 +00:00
|
|
|
The next section continues by showing how backups can be automated.
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2013-07-31 18:51:01 +00:00
|
|
|
A step by step example
|
|
|
|
----------------------
|
|
|
|
|
2014-02-09 21:15:27 +00:00
|
|
|
1. Before a backup can be made a repository has to be initialized::
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2015-05-09 17:41:03 +00:00
|
|
|
$ borg init /mnt/backup
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2013-07-31 18:51:01 +00:00
|
|
|
2. Backup the ``~/src`` and ``~/Documents`` directories into an archive called
|
2014-04-06 12:03:14 +00:00
|
|
|
*Monday*::
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2015-05-09 17:41:03 +00:00
|
|
|
$ borg create /mnt/backup::Monday ~/src ~/Documents
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2014-04-06 12:03:14 +00:00
|
|
|
3. The next day create a new archive called *Tuesday*::
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2015-05-09 17:41:03 +00:00
|
|
|
$ borg create --stats /mnt/backup::Tuesday ~/src ~/Documents
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2013-07-31 18:51:01 +00:00
|
|
|
This backup will be a lot quicker and a lot smaller since only new never
|
2014-02-09 21:15:27 +00:00
|
|
|
before seen data is stored. The ``--stats`` option causes |project_name| to
|
|
|
|
output statistics about the newly created archive such as the amount of unique
|
2014-04-06 12:03:14 +00:00
|
|
|
data (not shared with other archives)::
|
|
|
|
|
|
|
|
Archive name: Tuesday
|
|
|
|
Archive fingerprint: 387a5e3f9b0e792e91ce87134b0f4bfe17677d9248cb5337f3fbf3a8e157942a
|
2014-04-06 20:47:22 +00:00
|
|
|
Start time: Tue Mar 25 12:00:10 2014
|
|
|
|
End time: Tue Mar 25 12:00:10 2014
|
2014-04-06 12:03:14 +00:00
|
|
|
Duration: 0.08 seconds
|
|
|
|
Number of files: 358
|
|
|
|
Original size Compressed size Deduplicated size
|
|
|
|
This archive: 57.16 MB 46.78 MB 151.67 kB
|
|
|
|
All archives: 114.02 MB 93.46 MB 44.81 MB
|
|
|
|
|
2013-07-31 18:51:01 +00:00
|
|
|
|
|
|
|
4. List all archives in the repository::
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2015-05-09 17:41:03 +00:00
|
|
|
$ borg list /mnt/backup
|
2014-04-06 20:47:22 +00:00
|
|
|
Monday Mon Mar 24 11:59:35 2014
|
|
|
|
Tuesday Tue Mar 25 12:00:10 2014
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2014-04-05 18:24:46 +00:00
|
|
|
5. List the contents of the *Monday* archive::
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2015-05-09 17:41:03 +00:00
|
|
|
$ borg list /mnt/backup::Monday
|
2014-04-06 20:47:22 +00:00
|
|
|
drwxr-xr-x user group 0 Jan 06 15:22 home/user/Documents
|
|
|
|
-rw-r--r-- user group 7961 Nov 17 2012 home/user/Documents/Important.doc
|
|
|
|
...
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2014-04-05 18:24:46 +00:00
|
|
|
6. Restore the *Monday* archive::
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2015-05-09 17:41:03 +00:00
|
|
|
$ borg extract /mnt/backup::Monday
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2014-04-05 18:24:46 +00:00
|
|
|
7. Recover disk space by manually deleting the *Monday* archive::
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2015-05-09 17:41:03 +00:00
|
|
|
$ borg delete /mnt/backup::Monday
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2014-04-06 20:47:22 +00:00
|
|
|
.. Note::
|
2015-05-09 16:40:55 +00:00
|
|
|
Borg is quiet by default. Add the ``-v`` or ``--verbose`` option to
|
2014-04-06 20:47:22 +00:00
|
|
|
get progress reporting during command execution.
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2013-07-31 18:51:01 +00:00
|
|
|
Automating backups
|
|
|
|
------------------
|
|
|
|
|
2015-05-14 18:47:08 +00:00
|
|
|
The following example script backs up ``/home`` and ``/var/www`` to a remote
|
|
|
|
server. The script also uses the :ref:`borg_prune` subcommand to maintain a
|
|
|
|
certain number of old archives::
|
2013-07-31 18:51:01 +00:00
|
|
|
|
|
|
|
#!/bin/sh
|
2015-05-09 17:41:03 +00:00
|
|
|
REPOSITORY=username@remoteserver.com:backup
|
2013-07-31 18:51:01 +00:00
|
|
|
|
|
|
|
# Backup all of /home and /var/www except a few
|
|
|
|
# excluded directories
|
2015-05-14 18:47:08 +00:00
|
|
|
borg create --stats \
|
|
|
|
$REPOSITORY::`hostname`-`date +%Y-%m-%d` \
|
2013-07-31 18:51:01 +00:00
|
|
|
/home \
|
|
|
|
/var/www \
|
|
|
|
--exclude /home/*/.cache \
|
|
|
|
--exclude /home/Ben/Music/Justin\ Bieber \
|
2014-02-09 21:15:27 +00:00
|
|
|
--exclude '*.pyc'
|
2013-07-31 18:51:01 +00:00
|
|
|
|
2015-10-03 12:12:16 +00:00
|
|
|
# Use the `prune` subcommand to maintain 7 daily, 4 weekly and 6 monthly
|
|
|
|
# archives of THIS machine. --prefix `hostname`- is very important to
|
|
|
|
# limit prune's operation to this machine's archives and not apply to
|
|
|
|
# other machine's archives also.
|
|
|
|
borg prune -v $REPOSITORY --prefix `hostname`- \
|
|
|
|
--keep-daily=7 --keep-weekly=4 --keep-monthly=6
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2015-08-10 18:36:21 +00:00
|
|
|
.. backup_compression:
|
|
|
|
|
|
|
|
Backup compression
|
|
|
|
------------------
|
|
|
|
|
|
|
|
Default is no compression, but we support different methods with high speed
|
|
|
|
or high compression:
|
|
|
|
|
2015-10-13 14:31:25 +00:00
|
|
|
If you have a quick repo storage and you want a little compression: ::
|
2015-08-10 18:36:21 +00:00
|
|
|
|
|
|
|
$ borg create --compression lz4 /mnt/backup::repo ~
|
|
|
|
|
2015-08-15 13:45:15 +00:00
|
|
|
If you have a medium fast repo storage and you want a bit more compression (N=0..9,
|
2015-10-13 14:31:25 +00:00
|
|
|
0 means no compression, 9 means high compression): ::
|
2015-08-10 18:36:21 +00:00
|
|
|
|
|
|
|
$ borg create --compression zlib,N /mnt/backup::repo ~
|
|
|
|
|
2015-08-15 13:45:15 +00:00
|
|
|
If you have a very slow repo storage and you want high compression (N=0..9, 0 means
|
2015-10-13 14:31:25 +00:00
|
|
|
low compression, 9 means high compression): ::
|
2015-08-10 18:36:21 +00:00
|
|
|
|
|
|
|
$ borg create --compression lzma,N /mnt/backup::repo ~
|
|
|
|
|
|
|
|
You'll need to experiment a bit to find the best compression for your use case.
|
|
|
|
Keep an eye on CPU load and throughput.
|
|
|
|
|
2013-06-29 21:56:44 +00:00
|
|
|
.. _encrypted_repos:
|
|
|
|
|
|
|
|
Repository encryption
|
|
|
|
---------------------
|
|
|
|
|
2014-02-09 21:15:27 +00:00
|
|
|
Repository encryption is enabled at repository creation time::
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2015-08-29 01:39:53 +00:00
|
|
|
$ borg init --encryption=repokey|keyfile PATH
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2013-07-03 20:38:07 +00:00
|
|
|
When repository encryption is enabled all data is encrypted using 256-bit AES_
|
|
|
|
encryption and the integrity and authenticity is verified using `HMAC-SHA256`_.
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2014-04-06 12:03:14 +00:00
|
|
|
All data is encrypted before being written to the repository. This means that
|
2015-05-14 18:47:08 +00:00
|
|
|
an attacker who manages to compromise the host containing an encrypted
|
2014-04-06 12:03:14 +00:00
|
|
|
archive will not be able to access any of the data.
|
|
|
|
|
2015-08-29 01:39:53 +00:00
|
|
|
|project_name| supports different methods to store the AES and HMAC keys.
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2015-08-29 01:39:53 +00:00
|
|
|
``repokey`` mode
|
|
|
|
The key is stored inside the repository (in its "config" file).
|
|
|
|
Use this mode if you trust in your good passphrase giving you enough
|
|
|
|
protection.
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2015-08-29 01:39:53 +00:00
|
|
|
``keyfile`` mode
|
|
|
|
The key is stored on your local disk (in ``~/.borg/keys/``).
|
|
|
|
Use this mode if you want "passphrase and having-the-key" security.
|
2013-07-30 19:51:21 +00:00
|
|
|
|
2015-08-29 01:39:53 +00:00
|
|
|
In both modes, the key is stored in encrypted form and can be only decrypted
|
|
|
|
by providing the correct passphrase.
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2015-08-29 01:39:53 +00:00
|
|
|
For automated backups the passphrase can be specified using the
|
|
|
|
`BORG_PASSPHRASE` environment variable.
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2015-10-19 20:25:24 +00:00
|
|
|
.. note:: Be careful about how you set that environment, see
|
|
|
|
:ref:`this note about password environments <password_env>`
|
|
|
|
for more information.
|
2015-10-19 15:29:22 +00:00
|
|
|
|
|
|
|
.. important:: The repository data is totally inaccessible without the key:**
|
2015-08-29 01:39:53 +00:00
|
|
|
Make a backup copy of the key file (``keyfile`` mode) or repo config
|
|
|
|
file (``repokey`` mode) and keep it at a safe place, so you still have
|
|
|
|
the key in case it gets corrupted or lost.
|
|
|
|
The backup that is encrypted with that key won't help you with that,
|
|
|
|
of course.
|
2013-06-29 21:56:44 +00:00
|
|
|
|
|
|
|
.. _remote_repos:
|
|
|
|
|
|
|
|
Remote repositories
|
|
|
|
-------------------
|
|
|
|
|
2014-02-04 02:26:36 +00:00
|
|
|
|project_name| can initialize and access repositories on remote hosts if the
|
|
|
|
host is accessible using SSH. This is fastest and easiest when |project_name|
|
|
|
|
is installed on the remote host, in which case the following syntax is used::
|
2013-06-29 21:56:44 +00:00
|
|
|
|
2015-05-14 15:36:53 +00:00
|
|
|
$ borg init user@hostname:/mnt/backup
|
2013-06-29 21:56:44 +00:00
|
|
|
|
|
|
|
or::
|
|
|
|
|
2015-05-14 15:36:53 +00:00
|
|
|
$ borg init ssh://user@hostname:port//mnt/backup
|
2014-02-04 02:26:36 +00:00
|
|
|
|
2015-05-14 15:36:53 +00:00
|
|
|
Remote operations over SSH can be automated with SSH keys. You can restrict the
|
|
|
|
use of the SSH keypair by prepending a forced command to the SSH public key in
|
|
|
|
the remote server's authorized_keys file. Only the forced command will be run
|
2015-05-15 17:22:52 +00:00
|
|
|
when the key authenticates a connection. This example will start |project_name| in server
|
|
|
|
mode, and limit the |project_name| server to a specific filesystem path::
|
2015-05-14 15:36:53 +00:00
|
|
|
|
2015-05-15 17:22:52 +00:00
|
|
|
command="borg serve --restrict-to-path /mnt/backup" ssh-rsa AAAAB3[...]
|
2015-05-14 15:36:53 +00:00
|
|
|
|
|
|
|
If it is not possible to install |project_name| on the remote host,
|
2014-02-04 02:26:36 +00:00
|
|
|
it is still possible to use the remote host to store a repository by
|
|
|
|
mounting the remote filesystem, for example, using sshfs::
|
|
|
|
|
2015-05-14 15:36:53 +00:00
|
|
|
$ sshfs user@hostname:/mnt /mnt
|
2015-05-09 17:41:03 +00:00
|
|
|
$ borg init /mnt/backup
|
|
|
|
$ fusermount -u /mnt
|
2014-02-09 21:15:27 +00:00
|
|
|
|