HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

dpkg-deb — Pack, unpack, and provide information about Debian archives. More information: <https://manned.org/d

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandandunpackdpkg-debcliinformationprovidepack
linux

Problem

How to use the dpkg-deb command: Pack, unpack, and provide information about Debian archives. More information: <https://manned.org/dpkg-deb>.

Solution

dpkg-deb — Pack, unpack, and provide information about Debian archives. More information: <https://manned.org/dpkg-deb>.

Display information about a package:
dpkg-deb {{[-I|--info]}} {{path/to/file.deb}}


Display the package's name and version on one line:
dpkg-deb {{[-W|--show]}} {{path/to/file.deb}}


List the package's contents:
dpkg-deb {{[-c|--contents]}} {{path/to/file.deb}}


Extract package's contents into a directory:
dpkg-deb {{[-x|--extract]}} {{path/to/file.deb}} {{path/to/directory}}


Create a package from a specified directory:
dpkg-deb {{[-b|--build]}} {{path/to/directory}}

Code Snippets

Display information about a package

dpkg-deb {{[-I|--info]}} {{path/to/file.deb}}

Display the package's name and version on one line

dpkg-deb {{[-W|--show]}} {{path/to/file.deb}}

List the package's contents

dpkg-deb {{[-c|--contents]}} {{path/to/file.deb}}

Extract package's contents into a directory

dpkg-deb {{[-x|--extract]}} {{path/to/file.deb}} {{path/to/directory}}

Create a package from a specified directory

dpkg-deb {{[-b|--build]}} {{path/to/directory}}

Context

tldr-pages: linux/dpkg-deb

Revisions (0)

No revisions yet.