DEB to TAR.LZ (TLZ) Converter

Convert your deb files to tar.lz online & free

Drop files here. 1 GB maximum file size or Sign Up
to
Facebook Amazon Microsoft Tesla Nestle Walmart L'Oreal

How to convert DEB to TAR.LZ

1

Select files from Computer, Google Drive, Dropbox, URL or by dragging it on the page.

2

Choose tar.lz or any other format you need as a result (more than 200 formats supported)

3

Let the file convert and you can download your tar.lz file right afterwards

About formats

DEB is the software package format used by the Debian project and its numerous derivatives, including Ubuntu, Linux Mint, and other Debian-based Linux distributions. Created alongside the Debian project's founding in August 1993, the format packages compiled software binaries, configuration files, documentation, and installation scripts into a structured archive for automated software management. A DEB file is actually an ar archive containing three members: debian-binary (a text file with the format version), control.tar (metadata including package name, version, dependencies, maintainer scripts), and data.tar (the actual files to install, compressed with gzip, xz, or zstd). The dpkg tool and higher-level package managers like APT handle DEB installation, dependency resolution, upgrades, and removal. One advantage is the sophisticated dependency system — DEB packages declare precise relationships (depends, recommends, suggests, conflicts, replaces) enabling APT to automatically resolve and install entire dependency chains from repositories. The maintainer script system is another strength, allowing packages to execute pre/post installation and removal logic for tasks like creating system users, initializing databases, or registering services. With Debian and Ubuntu powering a substantial share of servers, desktops, and embedded Linux deployments worldwide, DEB is one of the two dominant Linux packaging formats alongside RPM.
Developer: Debian Project
Initial release: August 16, 1993
TAR.LZ is a compound archive format combining TAR archiving with lzip compression, a format created by Antonio Diaz Diaz and first released in 2009. The TAR layer bundles files with full Unix metadata into a single stream, and lzip applies LZMA compression with a robust container that includes per-member CRC-32 integrity checking and clean member boundaries. Lzip was designed with long-term archival in mind — it produces a simple, well-documented format with strong error recovery properties: if part of a TAR.LZ file is corrupted, undamaged members can still be extracted, unlike monolithic compressed streams where corruption propagates. The compression ratios are essentially identical to LZMA/XZ since lzip uses the same LZMA algorithm. One advantage is archival resilience — the member-based structure means a multi-part archive can survive partial corruption without losing all data, critical for long-term storage. The clean, minimal format design is another strength: lzip has a simple specification that independent implementations can follow precisely, reducing the risk of compatibility issues over decades of archival. TAR.LZ is used by the GNU Project for distributing source releases and is supported by GNU tar with the --lzip flag, as well as by plzip for parallel compression on multi-core systems.
Developer: Antonio Diaz Diaz
Initial release: March 2009