.zipファイルを複数のセグメントに分割するにはどうすればよいですか?


27

すべてのコマンドラインユーティリティがインストールされており、ターミナルで既存の.zip(または)新しいファイルを(50MB).zipセグメントに分割する必要があります。

すなわち、フォルダX = 900MB>自己解凍.zipアーカイブを作成> .zipアーカイブを50MBのセグメントに分割(例Folder.X.001.zip

manページによると、コマンドは次のとおりです。

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).

私のテストでは、提案されたとおりにパーツを連結しますつまり、catを使用してunzipを実行すると、すべてのファイルを抽出できませんでした


1
仮想マシンのWindowsで実行されている7-Zipを使用して、分割された.zipファイル(Mac OS X 10.11コマンドラインでZip 3.0で作成された)からデータを抽出できました。7-Zipを共有フォルダー内のnew.zipファイルに向けたところ、魅力のように機能しました。
ユーザー5910

3
単純にを使用することはできませんunzip new.zipnew.zip、macOSでクリックするだけですべて動作します。ありがとう!
ダンローゼンスターク

4

これは私のために働くものです:

zip -s 50m new.zip big.iso

50MGパーツ用

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

これで3Gのチャンクを作成します(FAT32ディスクに大きなファイルを置くのに適しています)

zip -s 3g new.zip big.iso

new.zipファイルをダブルクリックすると、新しいMac OSがこれらのファイルを抽出します


2
Mac OS 10.13.6 High Sierraでzipファイルをダブルクリックしても、元のアーカイブは解凍されませんでした。私はから「unarchiver」アプリを使用していたitunes.apple.com/us/app/the-unarchiver/id425424353
user674669

1
7zipによって作成されたzipファイルをWindowsで分割しましたが、最終的には別のファイル命名スキームになりました。Unarchiverはそれも抽出できました!
最大

0

Unarchiverを使用して、結果のマルチパートZIPファイルも抽出する必要がありましたが、奇妙なことに、zipファイルへの元のパスが再作成されました。たとえば、最初にここでアーカイブを作成しました:

/ Volumes / External HD / Test Folder / my-multipart-archive-parts.zip

そして、アーカイブのすべての部分をここにコピーしました:

〜/ Desktop / Test Folder /

Unarchiverを使用してファイルを抽出すると、次のように作成されました。

〜/ Desktop / Test Folder / Volumes / External HD / Test Folder / my-multipart-archive.zip

非常に奇妙な...

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.