Hi,
I'm searching for a solution to take a big directory and make a multiarchive zip backup with each zipfile being 1gig. I've looked at zipsplit but appearently you can not actually split files, ie. one of the files in that directory is 5gig, so zipsplit can't handle it because it's bigger then the target size of the zipfile. I like to make zipfiles to make it easier for windows users to access the files.
From serverfault
kimausloos
-
I do not use zip but tar+gzip. What I do is
tar czf - /some/dir | split -b 1GThis will create files xaa xab etc.. (you can change the prefix. Check the man pages)
To restore simply
catthe files together, i.e.cat xaa xab ... | tar xzf -It looks like you can do that with
zipto, using a-for filename, something like (untested)zip - /some/dir | split ...From Dan Andreatta
0 comments:
Post a Comment