Christoph Feb 5 5:01PM 2018 CLI
I have several storages, each with a different configuration. But I've lost track of the different configs. Is there any way I can read the configuration from the config
files to see the settings (esp. chunk size)?
Nelvin Feb 5 6:48PM 2018
Just open the config files in a text editor of your choice, it's all plain text.
{
"compression-level": 100,
"average-chunk-size": 4194304,
"max-chunk-size": 16777216,
"min-chunk-size": 1048576,
...
}
gchen Feb 5 7:50PM 2018
The config
file is a plain text file if the storage is unencrypted. Otherwise, you can run the command duplicacy -d list
which will show details about the config
file:
Reading the environment variable DUPLICACY_PASSWORD
Reading password from keychain/keyring
Using 16384 iterations for key derivation
Chunk read levels: [1], write level: 1
Compression level: 100
Average chunk size: 4194304
Maximum chunk size: 16777216
Minimum chunk size: 1048576
Chunk seed: b3b59a5d107b5aadb61218b0423e38f197c7b57d7c0fd2da635438fcb2784cd0
Reading the environment variable DUPLICACY_PASSWORD
...
Christoph Feb 6 3:45AM 2018
Yet another undocumented option? Or did I miss something?
gchen Feb 6 10:58AM 2018
Did you mean the -d
option? It is listed in https://github.com/gilbertchen/duplicacy/wiki/Global-Options, although this page is a pretty recent addition.