Is the default compression for ./7z -tzip <filename> LZMA or LZMA2 or something else?
My understanding .zip is a file format where contents can be compressed by several different compression techniques or they don't have to be compressed at all.
7z l -slt <filename> not very informative it gives: Method = Deflate
Last edit: James JM 2024-08-22
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Yes, Deflate is default. Deflate can be extracted by any zip program. LZMA was added to zip specification later, and some zip unpackers do not support LZMA.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is the default compression for
./7z -tzip <filename>
LZMA or LZMA2 or something else?My understanding .zip is a file format where contents can be compressed by several different compression techniques or they don't have to be compressed at all.
7z l -slt <filename>
not very informative it gives: Method = DeflateLast edit: James JM 2024-08-22
Yes,
Deflate
is default.Deflate
can be extracted by any zip program.LZMA
was added to zip specification later, and some zip unpackers do not supportLZMA
.Thanks for that.