| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 | .. IMPORTANT: this file is auto-generated from borg's built-in help, do not edit!.. _borg_init:borg init---------::    borg init <options> REPOSITORYpositional arguments    REPOSITORY        repository to createoptional arguments    ``-e``, ``--encryption``        | select encryption key mode (default: "repokey")`Common options`_    |Description~~~~~~~~~~~This command initializes an empty repository. A repository is a filesystemdirectory containing the deduplicated data from zero or more archives.Encryption can be enabled at repository init time (the default).It is not recommended to disable encryption. Repository encryption protects youe.g. against the case that an attacker has access to your backup repository.But be careful with the key / the passphrase:If you want "passphrase-only" security, use the repokey mode. The key willbe stored inside the repository (in its "config" file). In above mentionedattack scenario, the attacker will have the key (but not the passphrase).If you want "passphrase and having-the-key" security, use the keyfile mode.The key will be stored in your home directory (in .config/borg/keys). Inthe attack scenario, the attacker who has just access to your repo won't havethe key (and also not the passphrase).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 incase it gets corrupted or lost. Also keep the passphrase at a safe place.The backup that is encrypted with that key won't help you with that, of course.Make sure you use a good passphrase. Not too short, not too simple. The realencryption / decryption key is encrypted with / locked by your passphrase.If an attacker gets your key, he can't unlock and use it without knowing thepassphrase.Be careful with special or non-ascii characters in your passphrase:- Borg processes the passphrase as unicode (and encodes it as utf-8),  so it does not have problems dealing with even the strangest characters.- BUT: that does not necessarily apply to your OS / VM / keyboard configuration.So better use a long passphrase made from simple ascii chars than one thatincludes non-ascii stuff or characters that are hard/impossible to enter ona different keyboard layout.You can change your passphrase for existing repos at any time, it won't affectthe encryption/decryption key or other secrets.When encrypting, AES-CTR-256 is used for encryption, and HMAC-SHA256 forauthentication. Hardware acceleration will be used automatically.
 |