.deb

What is a .deb file?

DEB is the package format for Debian-based Linux distributions — Ubuntu, Linux Mint, Pop!_OS, and others.

Use caution
Type System
By Debian Project
MIME application/vnd.debian.binary-package

Drop any file to identify it

No upload. No signup. No sending your file halfway across the internet.
We tell you what it is, right here in your browser.

What is it

You're installing software on Ubuntu, Linux Mint, Debian, Pop!_OS, or any Debian-based Linux distribution. The package format is .deb — a structured archive containing compiled software, configuration files, installation scripts, and dependency metadata that tells the package manager what else needs to be installed.

A .deb file is actually an ar archive containing three parts: debian-binary (format version), control.tar (metadata and scripts), and data.tar (the actual files to install). The APT package manager and dpkg handle .deb files — APT resolves dependencies automatically (downloading required packages), while dpkg handles the low-level installation. This dependency resolution is why `apt install` is preferred over manually downloading .deb files.

Install with `sudo dpkg -i package.deb` (may leave unresolved dependencies) or `sudo apt install ./package.deb` (resolves dependencies automatically). GDebi (GUI tool) provides a graphical installer with dependency resolution. Only install .deb files from trusted repositories — they execute installation scripts with root privileges.

Technical details
Full Name
Debian Package
MIME Type
application/vnd.debian.binary-package
Developer
Debian Project
Magic Bytes
21 3C 61 72 63 68 3E
Safety
.deb requires caution. DEB packages install software with system-level access. Only install from trusted repositories.
What opens it
dpkg / apt
FREE Linux (Debian-based)
GDebi
FREE Linux
FAQ
How do I install a .deb file?
`sudo apt install ./package.deb` is the best method — it resolves dependencies automatically. Alternatively, `sudo dpkg -i package.deb` followed by `sudo apt -f install` to fix any missing dependencies. GDebi provides a graphical option.
Is it safe to install .deb files from the internet?
Only from trusted sources. DEB packages run installation scripts as root — they can modify any file on your system. Prefer official repositories (apt install) over manually downloaded .deb files. Third-party .deb files carry the same risk as running an EXE on Windows.
Related formats