Misalkan saya memiliki 10.000 file XML. Sekarang anggaplah saya ingin mengirim mereka ke teman. Sebelum mengirim mereka, saya ingin mengompres mereka.
Metode 1: Jangan kompres
Hasil:
Resulting Size: 62 MB
Percent of initial size: 100%
Metode 2: Zip setiap file dan kirim 10.000 file xml
Perintah:
for x in $(ls -1) ; do echo $x ; zip "$x.zip" $x ; done
Hasil:
Resulting Size: 13 MB
Percent of initial size: 20%
Metode 3: Buat zip tunggal yang berisi 10.000 file xml
Perintah:
zip all.zip $(ls -1)
Hasil:
Resulting Size: 12 MB
Percent of initial size: 19%
Metode 4: Menggabungkan file menjadi satu file & zip itu
Perintah:
cat *.xml > oneFile.txt ; zip oneFile.zip oneFile.txt
Hasil:
Resulting Size: 2 MB
Percent of initial size: 3%
Pertanyaan:
- Mengapa saya mendapatkan hasil yang jauh lebih baik ketika saya hanya zip file tunggal?
- Saya berharap mendapatkan hasil yang lebih baik secara drastis menggunakan metode 3 daripada metode 2, tetapi tidak. Mengapa?
- Apakah perilaku ini khusus untuk
zip
? Jika saya mencoba menggunakangzip
apakah saya akan mendapatkan hasil yang berbeda?
Informasi tambahan:
$ zip --version
Copyright (c) 1990-2008 Info-ZIP - Type 'zip "-L"' for software license.
This is Zip 3.0 (July 5th 2008), by Info-ZIP.
Currently maintained by E. Gordon. Please send bug reports to
the authors using the web page at www.info-zip.org; see README for details.
Latest sources and executables are at ftp://ftp.info-zip.org/pub/infozip,
as of above date; see http://www.info-zip.org/ for other sites.
Compiled with gcc 4.4.4 20100525 (Red Hat 4.4.4-5) for Unix (Linux ELF) on Nov 11 2010.
Zip special compilation options:
USE_EF_UT_TIME (store Universal Time)
SYMLINK_SUPPORT (symbolic links supported)
LARGE_FILE_SUPPORT (can read and write large files on file system)
ZIP64_SUPPORT (use Zip64 to store large files in archives)
UNICODE_SUPPORT (store and read UTF-8 Unicode paths)
STORE_UNIX_UIDs_GIDs (store UID/GID sizes/values using new extra field)
UIDGID_NOT_16BIT (old Unix 16-bit UID/GID extra field not used)
[encryption, version 2.91 of 05 Jan 2007] (modified for Zip 3)
Edit: Data meta
Satu jawaban menunjukkan bahwa perbedaannya adalah data meta sistem yang disimpan di zip. Saya tidak berpikir ini bisa terjadi. Untuk menguji, saya melakukan hal berikut:
for x in $(seq 10000) ; do touch $x ; done
zip allZip $(ls -1)
Zip yang dihasilkan adalah 1.4MB. Ini berarti masih ada ~ 10 MB ruang yang tidak dapat dijelaskan.
$(ls -1)
, hanya menggunakan *
: for x in *
; zip all.zip *
.tar.gz
bukan hanya zip seluruh direktori.