Helper tool for creating plain-file cold-storage archives including checksum files
Project description
BackupHelper
A tool for simplifying the process of archiving multiple directories onto several different drives. For each directory a checksum file will be created, which will be verified after the transfer.
You can stage multiple sources and add targets to them. Once you're done you can start the transfer, which will run all copy operations at the same time, while making sure that all disks in a transfer aren't busy with another BackupHelper operation.
Quick start
Add a directory as a source for copying/archiving:
python -m backup_helper stage ~/Documents --alias docs
Staged: /home/m/Documents
with alias: docs
By default the BackupHelper state will be saved in the file
backup_status.json
in the current working directory.
Alternatively a custom path can be used by passing
--status-file /path/to/status.json
to each command.
Add targets to that source. Either the normalized absolute path
can be used as source
or the alias (here: "docs") if present:
$ python -m backup_helper add-target docs /media/storage1/docs_2024 --alias storage1
Added target /media/storage1/docs_2024
with alias: storage1
$ python -m backup_helper add-target docs /media/storage1/docs_2024 --alias storage2
Added target /media/storage1/docs_2024
with alias: storage2
Now you can use the command start
run the whole backup process
in sequence.
python -m backup_helper start
18:22:01 - INFO - Wrote /home/m/Documents/Documents_bh_2024-02-25T18-22-01.cshd
...
18:22:02 - INFO -
NO MISSING FILES!
NO FAILED CHECKSUMS!
SUMMARY:
TOTAL FILES: 3
MATCHES: 3
FAILED CHECKSUMS: 0
MISSING: 0
...
18:22:02 - INFO - /home/m/Documents/Documents_bh_2024-02-25T18-22-01.cshd: No missing files and all files matching their hashes
...
18:22:02 - INFO - Successfully completed the following 5 operation(s):
Hashed '/home/m/Documents':
Hash file: /home/m/Documents/Documents_bh_2024-02-25T18-22-01.cshd
Transfer successful:
From: /home/m/Documents
To: /media/storage1/docs_2024
Transfer successful:
From: /home/m/Documents
To: /media/storage2/docs_2024
Verified transfer '/media/storage1/docs_2024':
Checked: 3
CRC Errors: 0
Missing: 0
Verified transfer '/media/storage2/docs_2024':
Checked: 3
CRC Errors: 0
Missing: 0
Each part of the backup process can be run on its own and on a specific source/target combination only. For more information see the backup process section.
Backup process
The backup process, which can be run automatically using the
start
command is split into the subprocesses:
- Hash all source directories. The checksum file will be added to the directory. A log file of creating the checksum file will be written next to status JSON file.
- Transfer all sources to their targets. Only one read or write operation per disk will be allowed at the same time.
- Verify the transfer by comparing the hashes of the generated checksum file with the hashes of the files on the target. A log of the verification process will be written to the target.
The verification process (3) will be run last if there are more transfer operations on a disk, so:
- More expensive write operations are performed first.
- The transferred files are less likely to be in cache when hashing.
Each part of the backup process can be run on its own and/or on a specific source/target combination only. Required previous steps will be run automatically.
Using the interactive
command it's possible to add sources/targets
while the transfer is running, otherwise all running operations would
need to be completed before executing further commands.
Commands
See python -m backup_helper --help
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file backup_helper-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: backup_helper-0.2.2-py3-none-any.whl
- Upload date:
- Size: 22.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d222be37df89d66dc43d3d0a5a5f3d3f90d3cbebfc9281831a26f38031d54db4 |
|
MD5 | 6b6b6a4bd66a7417d2095a06f577adb2 |
|
BLAKE2b-256 | 894c5ba40cb0f34a1ccde39986bea5548bb0cb86a7ad98c37fdfc4c693e78143 |