Editing Debian package management

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
== intro ==
* dpkg – Debian package … – for handling the packages themselves
* APT – "Advanced Packaging Tool" – on top of dpkg commands, dealing with dependencies and repositories
* apt-... – addons to APT
== APT ==
== APT ==


Line 15: Line 10:


* https://manpages.debian.org/unstable/apt/apt-cache.8.en.html
* https://manpages.debian.org/unstable/apt/apt-cache.8.en.html
<pre>
# ...
apt-cache pkgnames | sort
# perform a full text search on all available package lists for the POSIX regex pattern given
# (options available)
$ apt-cache search regex...
$ apt-cache search --names-only regex...
$ apt-cache search --full regex...
</pre>


=== apt-get -- APT package handling utility -- command-line interface ===
=== apt-get -- APT package handling utility -- command-line interface ===
Line 35: Line 19:
<pre>$ sudo apt-get update</pre>
<pre>$ sudo apt-get update</pre>


==== APT: installing ... ====
=== APT: installing ... ===
<pre>
<pre>
$ sudo apt-get install PACKAGE
$ sudo apt-get install PACKAGE
Line 46: Line 30:
# just download it to the cache directory being specified (instead of /var/cache/apt/archives/):
# just download it to the cache directory being specified (instead of /var/cache/apt/archives/):
$ sudo apt-get install --download-only --option dir::cache=$HOME/tmp PACKAGE
$ sudo apt-get install --download-only --option dir::cache=$HOME/tmp PACKAGE
# install PACKAGE
$ sudo apt-get install PACKAGE
</pre>
</pre>


Line 57: Line 38:
</pre>
</pre>


==== APT: removing ... ====
=== APT: removing ... ===
<pre>
<pre>
$ sudo apt-get remove PACKAGE
$ sudo apt-get remove PACKAGE
Line 85: Line 66:
* https://manpages.debian.org/unstable/dpkg/dpkg.1.en.html
* https://manpages.debian.org/unstable/dpkg/dpkg.1.en.html


==== installing a Debian package ====
==== installing the Debian package ====
<pre>$ sudo dpkg --install PACKAGE.deb</pre>
<pre>$ sudo dpkg --install PACKAGE.deb</pre>


==== removing a Debian package ====
=== dpkg-deb ===
<pre>$ sudo dpkg --remove PACKAGE</pre>
 
==== verifying a Debian package ====
<pre>$ sudo dpkg --verify PACKAGE</pre>
 
=== dpkg-deb -- Debian package archive (.deb) manipulation tool ===


* https://manpages.debian.org/unstable/dpkg/dpkg-deb.1.en.html
* https://manpages.debian.org/unstable/dpkg/dpkg-deb.1.en.html
'''dpkg-deb''' packs, unpacks and provides information about Debian archives.
Use '''dpkg''' to install and remove packages from your system.


==== which files are included? will be created from this package file? ====
==== which files are included? will be created from this package file? ====
Line 107: Line 78:
==== what's the official package name? ====
==== what's the official package name? ====
<pre>$ dpkg-deb --info PACKAGE.deb</pre>
<pre>$ dpkg-deb --info PACKAGE.deb</pre>
==== what is the content of the ctrl-tarfile you can extract from PACKAGE.deb? ====
<pre>$ dpkg-deb --ctrl-tarfile PACKAGE.deb | tar tvf  -
drwxr-xr-x root/root        0 2018-08-27 17:39 ./
-rw-r--r-- root/root    21773 2018-08-27 17:39 ./md5sums
-rw-r--r-- root/root      229 2018-08-27 17:39 ./control
-rw-r--r-- root/root      1071 2018-08-27 17:36 ./conffiles
-rwxr-xr-x root/root      1228 2018-08-27 17:39 ./postinst</pre>
* PACKAGE.deb contains a tarball (ctrl-tarfile).
* the tarball contains ... .
==== what conffiles does PACKAGE.deb contain? ====
<pre>$ dpkg-deb --ctrl-tarfile PACKAGE.deb | tar xf  - --to-stdout ./conffiles</pre>
* PACKAGE.deb contains a tarball (ctrl-tarfile),
* the tarball contains ./conffiles,
* ./conffiles is only a list of what is to be treated as conffiles, it does not contain the conffiles themselves, they are an ordinary part of PACKAGE.deb


=== dpkg-query ===
=== dpkg-query ===
Line 145: Line 98:
<pre>$ dpkg-query --listfiles PACKAGE</pre>
<pre>$ dpkg-query --listfiles PACKAGE</pre>


==== what conffiles does an installed package (e.g. PACKAGE) include ====
==== which installed package includes a certain FILE (utility, ...)? ====
<pre>$ dpkg-query --showformat='${Conffiles}\n' --show PACKAGE
<pre>$ dpkg-query --search FILE</pre>
$ dpkg-query --showformat='${Conffiles}\n' --show PACKAGE | perl -pe 's/^ \s* (.*?) \s* \w+ $/$1/x'</pre>


===== backup all the conffiles of an installed package (e.g. PACKAGE), each one for itself =====
=== dpkg-deb -- Debian package archive (.deb) manipulation tool ===
<pre>$ sudo ~jochen.hayek/bin/create_snapshot.sh $( dpkg-query --showformat='${Conffiles}\n' --show PACKAGE | perl -pe 's/^ \s* (.*?) \s* \w+ $/$1/x' )</pre>


===== backup all the conffiles of an installed package (e.g. PACKAGE) to a single tarball =====
* https://manpages.debian.org/unstable/dpkg/dpkg-deb.1.en.html
<pre>$ sudo tar cvf ~/tmp/PACKAGE.conffiles-$(date '+%Y%m%d%H%M%S').tar --directory / $( dpkg-query --showformat='${Conffiles}\n' --show PACKAGE | perl -pe 's/^ \s* (.*?) \s* \w+ $/$1/x' )</pre>


==== which installed package includes a certain FILE (utility, ...)? ====
'''dpkg-deb''' packs, unpacks and provides information about Debian archives.
<pre>$ dpkg-query --search FILE</pre>


= misc =
Use '''dpkg''' to install and remove packages from your system.
 
* https://superuser.com/questions/408082/how-do-i-get-a-list-of-available-i-e-uninstalled-packages-in-debian How do I get a list of available (i.e. uninstalled) packages in Debian?


= dpkg-source -- Debian source package (.dsc) manipulation tool =
= dpkg-source -- Debian source package (.dsc) manipulation tool =
Please note that all contributions to wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Wiki:Copyrights for details). Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)