In a previous thread I asked how to create a tar archive that would allow me to limit the file size and break up automatically into incremental archives.
http://www.linuxquestions.org/questi...volume-603509/
I decided to use the split option as it is meant for this and the -M flag for tar really isn't.
Code:
tar -cvpj 'directory/name'/ | split -d -b 4000m - /name/of/archive.tar.bz2.
which produces something like...
Code:
archive.tar.bz2.00
archive.tar.bz2.01
archive.tar.bz2.02
My question is this. How with the existing file size limit can I extract the contents of one of these archives back to the file system. I can't reassemble the files onto the file system because they will break the 4GB limit. Is there a way that I can pipe cat through tar? Are their other alternatives still?
Any help is appreciated.