Difference between revisions of "Lzip"

From Free Software Directory
Jump to: navigation, search
(Created page with "{{Entry |Name=Lzip |Short description=a lossless data compressor based on the LZMA algorithm. |Full description=Lzip is a lossless data compressor based on the LZMA (Lempel-Ziv-M...")
 
(10 intermediate revisions by 3 users not shown)
Line 3: Line 3:
 
|Short description=a lossless data compressor based on the LZMA algorithm.
 
|Short description=a lossless data compressor based on the LZMA algorithm.
 
|Full description=Lzip is a lossless data compressor based on the LZMA (Lempel-Ziv-Markov chain-Algorithm) algorithm designed by Igor Pavlov. The high compression of LZMA comes from combining two basic, well-proven compression ideas: sliding dictionaries (i.e. LZ77/78), and markov models (i.e. the thing used by every compression algorithm that uses a range encoder or similar order-0 entropy coder as its last stage) with segregation of contexts according to what the bits are used for. Lzip is not a replacement for gzip or bzip2, but a complement; which one is best to use depends on user's needs.
 
|Full description=Lzip is a lossless data compressor based on the LZMA (Lempel-Ziv-Markov chain-Algorithm) algorithm designed by Igor Pavlov. The high compression of LZMA comes from combining two basic, well-proven compression ideas: sliding dictionaries (i.e. LZ77/78), and markov models (i.e. the thing used by every compression algorithm that uses a range encoder or similar order-0 entropy coder as its last stage) with segregation of contexts according to what the bits are used for. Lzip is not a replacement for gzip or bzip2, but a complement; which one is best to use depends on user's needs.
 +
 +
Related subprojects include:
 +
 +
;[http://www.nongnu.org/lzip/clzip.html Clzip]
 +
:A C implementation of lzip for systems lacking a C++ compiler.
 +
;[http://www.nongnu.org/lzip/plzip.html Plzip]
 +
:A multi-threaded compressor using the lzip file format.
 +
;[http://www.nongnu.org/lzip/lzlib.html Lzlib]
 +
:A compression library for the lzip file format.
 +
;[http://www.nongnu.org/lzip/lunzip.html Lunzip]
 +
:A small decompressor for lzip files.
 +
;[http://www.nongnu.org/lzip/lziprecover.html Lziprecover]
 +
:A data recovery tool and decompressor for lzip files.
 +
;[http://www.nongnu.org/lzip/pdlzip.html Pdlzip]
 +
:A limited, "public domain" implementation of the lzip data compressor,
 +
intended for those who can't distribute GPL licensed Free Software.
 +
Pdlzip is also able to decompress legacy lzma-alone (.lzma) files.
 +
|Homepage URL=http://www.nongnu.org/lzip/lzip.html
 +
|Is GNU=No
 
|User level=beginner
 
|User level=beginner
 +
|Computer languages=C++
 +
|Documentation note=[http://download.savannah.gnu.org/releases/lzip/manual/ Manual]
 +
|Related projects=Lzlib,Zutils,gzip,Plzip
 +
|Keywords=C++,Compression,gzip,compress,algorithm,bzip,bzip2,compressed,compress/uncompress,compression ratio
 +
|Version identifier=1.13
 +
|Version date=2012/03/13
 +
|Version status=stable
 +
|Version download=http://download.savannah.gnu.org/releases/lzip/lzip-1.13.tar.gz
 +
|Last review by=Matt Lee
 +
|Last review date=2012/03/13
 
|Submitted by=Database conversion
 
|Submitted by=Database conversion
 
|Submitted date=2011-04-01
 
|Submitted date=2011-04-01
|Version identifier=1.4
+
|License verified date=2010-09-27
|Version date=2009-01-28
 
|Version status=stable
 
|Version download=http://download.savannah.gnu.org/releases-noredirect/lzip/lzip-1.4.tar.gz
 
|License verified date=2009-01-28
 
|Version comment=
 
}}
 
{{Software category
 
|Interface=command-line
 
 
}}
 
}}
 
{{Project license
 
{{Project license
 
|License=GPLv3orlater
 
|License=GPLv3orlater
 
|License verified by=Kelly Hopkins
 
|License verified by=Kelly Hopkins
|License verified date=2009-01-28
+
|License verified date=2010-09-27
 +
}}
 +
{{Person
 +
|Real name=Antonio Diaz Diaz
 +
|Role=Maintainer
 +
|Email=ant_diaz@teleline.es
 +
}}
 +
{{Resource
 +
|Resource audience=Developer
 +
|Resource kind=Download
 +
|Resource URL=http://download.savannah.gnu.org/releases-noredirect/lzip/
 +
}}
 +
{{Resource
 +
|Resource audience=Support
 +
|Resource kind=E-mail
 +
|Resource URL=mailto:lzip-bug@nongnu.org
 +
}}
 +
{{Resource
 +
|Resource audience=Help
 +
|Resource kind=Homepage
 +
|Resource URL=http://freshmeat.net/projects/lzip/
 +
}}
 +
{{Resource
 +
|Resource audience=Developer
 +
|Resource kind=Homepage
 +
|Resource URL=https://savannah.nongnu.org/projects/lzip/
 +
}}
 +
{{Resource
 +
|Resource audience=Bug Tracking
 +
|Resource kind=Mailing List Info/Archive
 +
|Resource URL=http://lists.nongnu.org/mailman/listinfo/lzip-bug
 +
}}
 +
{{Software category
 +
|Interface=command-line
 +
|System-administration=backup
 +
|Use=compressing, system-administration
 +
|Works-with=archive
 
}}
 
}}
 +
{{Featured}}

Revision as of 18:00, 29 March 2012


[edit]

Lzip

https://www.nongnu.org/lzip/lzip.html
lossless data compressor based on LZMA algorithm

Lzip is a lossless data compressor based on the LZMA (Lempel-Ziv-Markov chain-Algorithm) algorithm designed by Igor Pavlov. The high compression of LZMA comes from combining two basic, well-proven compression ideas: sliding dictionaries (i.e. LZ77/78), and markov models (i.e. the thing used by every compression algorithm that uses a range encoder or similar order-0 entropy coder as its last stage) with segregation of contexts according to what the bits are used for. Lzip is not a replacement for gzip or bzip2, but a complement; which one is best to use depends on user's needs.

Related subprojects include:

Clzip
A C implementation of lzip for systems lacking a C++ compiler.
Plzip
A multi-threaded compressor using the lzip file format.
Lzlib
A compression library for the lzip file format.
Lunzip
A small decompressor for lzip files.
Lziprecover
A data recovery tool and decompressor for lzip files.
Pdlzip
A limited, "public domain" implementation of the lzip data compressor,

intended for those who can't distribute GPL licensed Free Software. Pdlzip is also able to decompress legacy lzma-alone (.lzma) files.





Licensing

License

Verified by

Verified on

Notes

Verified by

Antonio Diaz Diaz

Verified on

10 May 2018




Leaders and contributors

Contact(s)Role
Antonio Diaz Diaz Maintainer


Resources and communication

AudienceResource typeURI
Savannah (Ref)https://savannah.nongnu.org/projects/lzip
Mailing Listhttps://lists.nongnu.org/mailman/listinfo/lzip-bug
Downloadhttps://download.savannah.nongnu.org/releases/lzip
Debian (Ref)https://tracker.debian.org/pkg/lzip
Debian (Ref) (R)https://tracker.debian.org/pkg/plzip
Debian (Ref) (R)https://tracker.debian.org/pkg/clzip


Software prerequisites




Entry


























Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the page “GNU Free Documentation License”.

The copyright and license notices on this page only apply to the text on this page. Any software or copyright-licenses or other similar notices described in this text has its own copyright notice and license, which can usually be found in the distribution or license text itself.