62 votes

Comment diviser un fichier .zip en plusieurs segments ?

J'ai installé tous les outils de ligne de commande, et je dois diviser un fichier existant de .zip (ou) nouveau(x) fichier(s) dans (50MB) .zip dans le terminal.

i.e. Dossier X = 900MB > Créer un fichier auto-extractible .zip archive > Séparer .zip en segments de 50 Mo (c.-à-d. Folder.X.001.zip )

D'après la page de manuel, voici les commandes :

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

con -h2 Je reçois :

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

87voto

Daniel Beck Points 105590

Vous avez existing.zip mais souhaite le diviser en 50M pièces de taille.

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

créera

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

Pour les extraire, vous devez d'abord rassembler les fichiers et exécuter la commande suivante zip -F new.zip --out existing.zip o zip -s0 new.zip --out existing.zip pour recréer votre existing.zip . Vous pouvez alors simplement unzip existing.zip .


On peut s'attendre à ce que unzip new.zip fonctionnerait, mais elle n'est malheureusement pas mise en œuvre

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

et dans mes tests, en concaténant les parties comme il est suggéré, c'est-à-dire avec cat, et en lançant unzip, je n'ai pas réussi à extraire tous mes fichiers .

20voto

guya Points 331

Voici ce qui fonctionne pour moi :

zip -s 50m new.zip big.iso

Pour les pièces de 50MG

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

Créer des morceaux de 3G avec ceci (bon pour mettre de gros fichiers sur un disque FAT32)

zip -s 3g new.zip big.iso

Les nouveaux systèmes d'exploitation Mac OS extraient ces fichiers en double-cliquant sur le fichier new.zip.

1voto

Finks Points 1023

J'ai dû utiliser Unarchiver pour extraire le fichier ZIP multipartite résultant, mais bizarrement, il a recréé le chemin d'accès d'origine au fichier zip :

/Volumes/External HD/Dossier de test/my-multipart-archive-parts.zip

Et j'ai copié toutes les parties de l'archive ici :

~/Desktop/Dossier de test/

Lorsque j'ai utilisé Unarchiver pour extraire les fichiers, il a créé ceci :

~/Bureau/Dossier de test/Volumes/Dispositif externe/Dossier de test/my-multipart-archive.zip

Très étrange...

SistemesEz.com

SystemesEZ est une communauté de sysadmins où vous pouvez résoudre vos problèmes et vos doutes. Vous pouvez consulter les questions des autres sysadmins, poser vos propres questions ou résoudre celles des autres.

Powered by:

X