ApplicationBinary
application/x-debian-package
Debian Package
Reference for application/x-debian-package, the MIME type for Debian .deb packages used on Ubuntu and Debian Linux.
MIME Type Detector
Drop a file to detect its MIME type — no upload, runs in your browser
📄
Drop any file here or click to choose
Expected extensions: .deb
HTTP Content-Type Header
HTTP Header
Content-Type: application/x-debian-packageAssociated File Extensions
.deb
Quick Facts
| MIME Type | application/x-debian-package |
| Category | Application |
| Type | Binary |
| Extensions | .deb |
Common Usage
DEB files are the software package format for Debian, Ubuntu, and their derivatives. They contain compiled binaries, configuration files, dependency metadata, and installation scripts.
Managed by dpkg and APT, they are the foundation of package management on the most popular Linux distributions.
Code Examples
HTML
<!-- Link or embed with explicit type -->
<link rel="stylesheet" href="file.deb" type="application/x-debian-package">
<!-- Or for script/media elements -->
<script type="application/x-debian-package" src="file.deb"></script>Node.js
// Express.js
app.get('/file', (req, res) => {
res.type('application/x-debian-package');
res.send(data);
});
// Node.js http
res.writeHead(200, { 'Content-Type': 'application/x-debian-package' });nginx
# nginx.conf — add to types block or use default
types {
application/x-debian-package deb;
}
# Or set for a specific location
location /api/ {
default_type application/x-debian-package;
}Related MIME Types
More Application MIME Types
Other application types in the Application family
Related Tools
Explore More MIME Types
Browse our complete reference of 185 MIME types with usage examples, HTTP headers, and code snippets.