Compare commits

...

5 Commits

Author SHA1 Message Date
kees-z
6c06cf5fd9
Update index.md 2023-10-11 12:37:18 +02:00
kees-z
d0251f231c
Merge pull request #105 from gpatel-fr/azure
correct misplacement of azure option, add hint to manage folders in a…
2023-10-11 12:36:38 +02:00
kees-z
252beda9d5
Merge pull request #104 from gpatel-fr/fulltests
update 06-advanced-options.md
2023-10-11 12:35:34 +02:00
gpatel-fr
f919cae371 correct misplacement of azure option, add hint to manage folders in azure blobs 2023-10-11 09:08:18 +02:00
gpatel-fr
cda150979b update 06-advanced-options.md
change --full-block-verification and --full-remote-verification descriptions to conform them
more to the incredibly complex reality.
Since --full-block-verification accurate description is quite a mouthful, I ordered it with some paragraphs.
2023-09-28 16:58:48 +02:00
3 changed files with 17 additions and 6 deletions

View File

@ -284,9 +284,6 @@ Options:
The password used to connect to the server. This may also be supplied as the environment variable "AUTH_PASSWORD".
* `--auth-username`
The username used to connect to the server. This may also be supplied as the environment variable "AUTH_USERNAME".
* `--azure-blob-container_name (String)`
The name of the storage container.
All files will be written to the container specified.
* `--integrated-authentication`
If the server and client both supports integrated authentication, this option enables that authentication method. This is likely only available with windows servers and clients.
* `--force-digest-authentication`
@ -320,6 +317,12 @@ An alternative parameter for specifying the storage account name. This parameter
* `--auth-password (Password)`
The storage account access key.
An alternative parametyr for specifying the storage account access key. This parameter will be ignored if the access key is specified in the URL or the `--azure-access_key` parameter is provided. This may also be supplied as the environment variable `AUTH_PASSWORD`.
* `--azure-blob-container-name (String)`
The name of the storage container.
All files will be written to the container specified.
The Azure blobs don't support folders, try to use the --prefix general advanced option if you want to manage several backups in one container.
## B2 Cloud Storage

View File

@ -229,11 +229,19 @@ By default, your system locale and culture settings will be used. In some cases
### full-block-verification
`--full-block-verification = false`
Use this option to increase verification by checking the hash of blocks read from a volume before patching restored files with the data.
Use this option to increase verification by checking the hash of ALL blocks in a block volume.
When restoring, all blocks of a volume are tested or none according to this option.
When testing, if this option is set all blocks of a volume are tested, if not, a random 20%.
When testing, this option implies --full-remote-verification.
It is defaulting to false in both backup and explicit test, since it is using several database queries for each block in a remote volume, which is slow.
### full-remote-verification
`--full-remote-verification = false`
After a backup is completed, some files are selected for verification on the remote backend. Use this option to turn on full verification, which will decrypt the files and examine the insides of each volume, instead of simply verifying the external hash, If the option `--no-backend-verification` is set, no remote files are verified. This option is automatically set when then verification is performed directly.
After a backup is completed, some (by default 1 of each type, see the --backup-test- options to change that) files are selected for verification on the remote backend; use this option to turn on verification of the selected volumes, which will decrypt and verify their content, instead of simply verifying the volume hash if false.
Note that whatever the option value, the volume has to be fetched from the backend, but no temporary file is created when just checking the hash.
For backups, to have any effect, the --no-backend-verification option should be NOT set.
For tests launched independently of backups (test in command line mode), if defined, it is set by default to false. However, if not defined, a full remote verification is performed.
Note that a data volume is not necessarily completely verified, see above --full-block-verification.
### full-result
`--full-result = false`

View File

@ -6,7 +6,7 @@
![](duplicatilogo.png)
2023/06/20
2023/10/11