Tag Archives: zip

Use 7z to compress & encrypt zip files

7z a -tzip -mem=AES128 -bd -y -pPASSWORD -mx=0 — OUTPUT_FILE.zip file1 file2 file3 file3 This uses AES128 encryption and uses a compression rate of 0 (archive mode). You can pick a number up to 9 (highest compression rate) Enjoy!

Posted in Linux | Tagged , , , , , | Leave a comment

How to extract multi-part, e.g. .z01, .z02 type of zip files on Ubuntu

I couldn’t extract an archive that I downloaded from edelivery which was in 3 files, 1.zip, 1.z01 and 1.z02: In order to extract on Ubuntu, do the following: zip -s- Input.zip -O output.zip This will gather the Input.zip file and … Continue reading

Posted in Uncategorized | Tagged , , , | 7 Comments