tldr/pages/linux/dpkg-deb.md
Axel Navarro 84b6cabf6e
a2query, dpkg*, check-support-status, netselect-apt, reportbug: update Debian link (#7622)
* a2query: update link to Debian manpage

* check-support-status: update link to Debian manpage

* dpkg-deb: update link to Debian manpage

* dpkg: update link to Debian manpage

* netselect-apt: update link to Debian manpage

* reportbug: update link to Debian manpage
2022-01-08 20:39:40 +07:00

605 B

dpkg-deb

Pack, unpack and provide information about Debian archives. More information: https://manpages.debian.org/latest/dpkg/dpkg-deb.html.

  • Display information about a package:

dpkg-deb --info {{path/to/file.deb}}

  • Display the package's name and version on one line:

dpkg-deb --show {{path/to/file.deb}}

  • List the package's contents:

dpkg-deb --contents {{path/to/file.deb}}

  • Extract package's contents into a directory:

dpkg-deb --extract {{path/to/file.deb}} {{path/to/directory}}

  • Create a package from a specified directory:

dpkg-deb --build {{path/to/directory}}