This website requires JavaScript.
Explore
Help
Sign In
tyler
/
proxmox-backup
Watch
1
Star
0
Fork
0
You've already forked proxmox-backup
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
cabdabba3d
proxmox-backup
/
src
/
bin
/
proxmox_backup_debug
/
mod.rs
5 lines
66 B
Rust
Raw
Normal View
History
Unescape
Escape
add chunk inspection to pb-debug Adds possibility to inspect chunks and find indexes that reference the chunk. Options: - chunk: path to the chunk file - [opt] decode: path to a file or to stdout(-), if specified, the chunk will be decoded into the specified location - [opt] digest: needed when searching for references, if set, it will be used for verification when decoding - [opt] keyfile: path to a keyfile, needed if decode is specified and the data was encrypted - [opt] reference-filter: path in which indexes that reference the chunk should be searched, can be a group, snapshot or the whole datastore, if not specified no references will be searched - [default=true] use-filename-as-digest: use chunk-filename as digest, if no digest is specified Signed-off-by: Hannes Laimer <h.laimer@proxmox.com> Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2021-08-30 08:53:37 +00:00
mod
inspect
;
pub
use
inspect
::
*
;
add index recovery to pb-debug Adds possibility to recover data from an index file. Options: - chunks: path to the directory where the chunks are saved - file: the index file that should be recovered(must be either .fidx or didx) - [opt] keyfile: path to a keyfile, if the data was encrypted, a keyfile is needed - [opt] skip-crc: boolean, if true, read chunks wont be verified with their crc-sum, increases the restore speed by a lot Signed-off-by: Hannes Laimer <h.laimer@proxmox.com> Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2021-08-30 08:53:39 +00:00
mod
recover
;
pub
use
recover
::
*
;
Reference in New Issue
Copy Permalink