मैं -zip फ़ाइल को कई खंडों में कैसे विभाजित करूं?


27

मेरे पास सभी कमांड लाइन बर्तन स्थापित हैं, और एक मौजूदा .zip(या) नई फ़ाइल (50 एमबी) में विभाजित करने की आवश्यकता है.zip टर्मिनल में सेगमेंट में ।

अर्थात Folder X = 900MB> 50MB सेगमेंट (यानी) में सेल्फ एक्सट्रैक्ट .zipआर्काइव> स्प्लिट .zipआर्काइव बनाएंFolder.X.001.zip )

मैन पेज के अनुसार यहाँ आदेश हैं:

Copyright (c) 1990-2008 Info-ZIP - Type 'zip "-L"' for software license.
Zip 3.0 (July 5th 2008). Usage:
zip [-options] [-b path] [-t mmddyyyy] [-n suffixes] [zipfile list] [-xi list]
  The default action is to add or replace zipfile entries from list, which
  can include the special name - to compress standard input.
  If zipfile and list are omitted, zip compresses stdin to stdout.
  -f   freshen: only changed files  -u   update: only changed or new files
  -d   delete entries in zipfile    -m   move into zipfile (delete OS files)
  -r   recurse into directories     -j   junk (don't record) directory names
  -0   store only                   -l   convert LF to CR LF (-ll CR LF to LF)
  -1   compress faster              -9   compress better
  -q   quiet operation              -v   verbose operation/print version info
  -c   add one-line comments        -z   add zipfile comment
  -@   read names from stdin        -o   make zipfile as old as latest entry
  -x   exclude the following names  -i   include only the following names
  -F   fix zipfile (-FF try harder) -D   do not add directory entries
  -A   adjust self-extracting exe   -J   junk zipfile prefix (unzipsfx)
  -T   test zipfile integrity       -X   eXclude eXtra file attributes
  -y   store symbolic links as the link instead of the referenced file
  -e   encrypt                      -n   don't compress these suffixes
  -h2  show more help

-h2मेरे साथ :

Splits (archives created as a set of split files):
  -s ssize  create split archive with splits of size ssize, where ssize nm
              n number and m multiplier (kmgt, default m), 100k -> 100 kB
  -sp       pause after each split closed to allow changing disks
      WARNING:  Archives created with -sp use data descriptors and should
                work with most unzips but may not work with some
  -sb       ring bell when pause
  -sv       be verbose about creating splits
      Split archives CANNOT be updated, but see --out and Copy Mode below

.....

Using --out (output to new archive):
  --out oa  output to new archive oa
  Instead of updating input archive, create new output archive oa.
  Result is same as without --out but in new archive.  Input archive
  unchanged.
      WARNING:  --out ALWAYS overwrites any existing output file
  For example, to create new_archive like old_archive but add newfile1
  and newfile2:
    zip old_archive newfile1 newfile2 --out new_archive
  Cannot update split archive, so use --out to out new archive:
    zip in_split_archive newfile1 newfile2 --out out_split_archive
  If input is split, output will default to same split size
  Use -s=0 or -s- to turn off splitting to convert split to single file:
    zip in_split_archive -s 0 --out out_single_file_archive
      WARNING:  If overwriting old split archive but need less splits,
                old splits not overwritten are not needed but remain

जवाबों:


39

आपके पास है, existing.zipलेकिन इसे 50Mआकार के भागों में विभाजित करना चाहते हैं ।

zip existing.zip --out new.zip -s 50m

बनाएगा

new.zip
new.z01
new.z02
new.z03
....

उन्हें निकालने के लिए, आपको पहले फ़ाइलों को एक साथ इकट्ठा करना चाहिए और चलाने के लिए zip -F new.zip --out existing.zipया zip -s0 new.zip --out existing.zip, अपने पुनः बनाने के लिए existing.zip। तो आप बस कर सकते हैं unzip existing.zip


आप उम्मीद unzip new.zipकरेंगे कि यह काम करेगा, लेकिन दुर्भाग्य से यह लागू नहीं हुआ

warning [new.zip]:  zipfile claims to be last disk of a multi-part archive;
  attempting to process anyway, assuming all parts have been concatenated
  together in order.  Expect "errors" and warnings...true multi-part support
  doesn't exist yet (coming soon).

और मेरे परीक्षणों में, पुर्जों को समेटना जैसा कि यह सुझाव देता है, अर्थात बिल्ली के साथ, और अनज़िप चलाना, मेरी सभी फाइलों को निकालने में विफल रहा


1
मैं एक वर्चुअल मशीन में विंडोज पर चल रहे 7-ज़िप का उपयोग करके विभाजन से अपने डेटा को .zip फ़ाइलों (मैक ओएस एक्स 10.11 कमांड लाइन पर ज़िप 3.0 के साथ बनाया) से निकालने में सक्षम था। मैंने एक साझा फ़ोल्डर में नई। ज़िप फ़ाइल में 7-ज़िप को इंगित किया और यह एक आकर्षण की तरह काम किया।
User5910

3
जब आप बस उपयोग नहीं कर सकते unzip new.zip, तो आप बस new.zipmacOS पर क्लिक कर सकते हैं और यह सब काम करता है। धन्यवाद!
दान रोसेनस्टार्क

4

यह मेरे लिए काम करता है:

zip -s 50m new.zip big.iso

50MG भागों के लिए

new.zip
new.z01
new.z02
...

इस के साथ 3 जी के chuncks बनाएँ (एक FAT32 डिस्क पर बड़ी फ़ाइलों को डालने के लिए अच्छा)

zip -s 3g new.zip big.iso

नया मैक ओएस इन फाइलों को तब निकालता है जब नई.ज़िप फ़ाइल को डबल क्लिक करते हैं


2
मैक ओएस 10.13.6 हाई सिएरा पर ज़िप फ़ाइल पर डबल क्लिक करना मेरे लिए मूल संग्रह को अनकम्प्रेस्ड नहीं किया। मुझे itunes.apple.com/us/app/the-unarchiver/id425424353
अनारकली

1
मैंने खिड़कियों पर 7zip द्वारा बनाई गई ज़िप फ़ाइल को विभाजित किया था, जो कि एक अलग फ़ाइल नामकरण योजना के साथ समाप्त हुई। अनारकलीवर वह भी निकालने में सक्षम था!
मैक्स

0

परिणामी मल्टीपार्ट जिप फ़ाइल को निकालने के लिए मुझे Unarchiver का उपयोग करना पड़ा, लेकिन अजीब तरह से, इसने जिप फाइल के मूल पथ को फिर से बनाया। उदाहरण के लिए मैंने मूल रूप से यहाँ आर्काइव बनाया है:

/ वॉल्यूम / बाहरी HD / टेस्ट फ़ोल्डर / my-multipart-archive-parts.zip

और आर्काइव के सभी भागों को यहाँ कॉपी किया गया है:

~ / डेस्कटॉप / टेस्ट फ़ोल्डर /

जब मैंने फ़ाइलों को निकालने के लिए Unarchiver का उपयोग किया, तो इसने इसे बनाया:

~ / डेस्कटॉप / टेस्ट फ़ोल्डर / वॉल्यूम / बाहरी HD / टेस्ट फ़ोल्डर / my-multipart-archive.zip

बहुत अजीब...

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.