How do I piece back together my spitted tar-file
by max21 from LinuxQuestions.org on (#57PW7)
This works as far as I can tell. It took me all night to get it right.
Backup:
Code:tar cvzf - /TenGig.vdi | split -b 4096m - /backup/TenGig.tarz.... now I'm stuck. I tried this and many others ways using tar, cat and gzip but I can't get anything to work.
Restore:
Code:tar xvf /backup/TenGig.tarz.* /TenGig.vdiHow can I put these parts back together to restore my VM using a tar command to get the job done. Other ways would also be appreciate.
.


Backup:
Code:tar cvzf - /TenGig.vdi | split -b 4096m - /backup/TenGig.tarz.... now I'm stuck. I tried this and many others ways using tar, cat and gzip but I can't get anything to work.
Restore:
Code:tar xvf /backup/TenGig.tarz.* /TenGig.vdiHow can I put these parts back together to restore my VM using a tar command to get the job done. Other ways would also be appreciate.
.