Thanks for that succinct description Phil, I do use Mint on all boxes which which huff'n'puff under windows but was relatively uncomfortable using command lines: I will have to GET comfortable now!!The backups are tar.gz archives, if you have CWM mode and compression enabled. They are split into many files you can concatenate using cat
Basically, in a linux box, you can run this:
Code:cat backup_file_image* | pigz -d -c | tar -xpv
or
Code:cat backup_file_image* | tar -xzpv
backup_file_image can be system.ext4.tar.gz for example
Note that windows tools cannot open the tar.gz archives because they containe the selinux context extensions, not supported by most windows archive tools as long as I tested
If the image is a tar not compressed (no .gz extension), use this:
Code:cat backup_file_image* | tar -xpv
Real example if your archive set consists of the following files:
command:
Code:cat data.ext4.tar.gz* | pigz -d -c | tar -xpv
or
Code:cat data.ext4.tar.gz* | tar -xzpv
Basically, cat command will concatenate the .a, .b, .c and so on files into one file and extract the resulting archive
To get the whole tar.gz file, just run the cat part of the command
I was kinda surprised that Philz recovery was so easy to implement and load and seems to be so versatile and now discover that I can retrieve data off a (not bricked but) DEAD machine which won't even load Android using it! However many times I implement TWRP successfully with Odin, it constantly recovery-boots to a black screen.
Thanks for responding on page 635 of a thread: Are you SURE this amazing app is end-of-life?