Skip to content

LZ Converter

FileFlip converts LZ files into 10 other formats entirely inside your browser, using libarchive compiled to WebAssembly. The LZ file is never uploaded to a server: it is read off your disk, converted on your own machine, and saved back by the browser. There is no file-size limit and no account to create.

Convert LZ to

How do I convert an LZ file?#

  1. Drop your LZ file onto the converter at the top of this page, or click it to pick one from your computer.
  2. Choose the format you want out of it. FileFlip downloads the engine that conversion needs, once, and your browser caches it.
  3. Conversion starts the moment you pick the format, and the result is yours to download. The work happens in this tab, so nothing is uploaded and nothing is queued.

Is it safe to convert LZ files online?#

Yes, because nothing is uploaded. FileFlip converts LZ files inside the browser tab you already have open, using WebAssembly builds of the same engines a desktop converter would install. Your file is read from your own disk into the page's memory, and no request carrying it is ever made.

You do not have to take that on trust. Open your browser's network panel, run a conversion, and you will see the engine come down and your file go nowhere. There is no upload, no server-side copy, no retention window, and no account tied to what you converted.

How FileFlip works lists every engine, its version and its download size, and shows how to check for yourself that nothing leaves your machine.

What happens to a LZ file#

FileFlip converts LZ into 10 formats with libarchive, all of it inside the browser tab. Each conversion below names the engine it uses, what it downloads, and exactly what that conversion keeps or drops.

CategoryArchives
File extension.lz
FileFlip supportRead and written
Conversions available10
Engineslibarchive
Downloaded to your browser1.0 MB on the first conversion, then cached

What is an LZ file?#

An LZ file is a single stream of data compressed with lzip, an LZMA-based command-line compressor that Antonio Diaz Diaz released in 2008 as a long-term-archival alternative to gzip, bzip2 and xz.

Pick lzip when an archive needs to survive years of storage or transmission and the ability to partially recover a damaged file matters more than having a GUI tool handle it.

Convert an LZ file to gzip or zip when it needs to open on a system whose tools stop at the common formats, which is most of them.

The LZ file format reference covers the specification, the programs that open one, and what each conversion keeps or drops.

LZ questions people ask#

What's the difference between LZ and ZIP files?

An LZ file holds a single stream compressed with lzip, not a container of separate files like a ZIP. To pack more than one file as lzip, they need to be combined into a tar archive first and the result compressed as a .tar.lz.

Is lzip the same as LZMA?

Lzip is a specific file format and command-line tool built on the LZMA compression algorithm, the same algorithm 7z and xz also use. The three differ in the container wrapped around that compressed data, and an .lz file will not open with a tool that only understands .xz or .7z.

Why would I use lzip instead of xz?

Lzip trades some tool availability for a format built specifically so a corrupted archive can still be partially recovered, which is why long-term archival projects sometimes prefer it over xz. For everyday compression where recovery from bit rot is not a concern, xz has far broader tool support.