Forrest logo
back to context overview

dpkg-query

List of commands for dpkg-query:

  • dpkg-query:ai:36aa9 Lists the files installed by a particular Debian package
    $ dpkg-query -L ${package_name}
    try on your machine
    explain this command
  • dpkg-query:ai:c9b9f Lists all manually installed packages in Debian Linux
    $ dpkg-query --show --showformat='${Package}
    $ '
    try on your machine
    explain this command
  • dpkg-query:tldr:34ae2 dpkg-query: List all installed packages.
    $ dpkg-query --list
    try on your machine
    explain this command
  • dpkg-query:tldr:6c82d dpkg-query: List installed packages matching a pattern.
    $ dpkg-query --list '${libc6*}'
    try on your machine
    explain this command
  • dpkg-query:tldr:7f938 dpkg-query: Search for packages that own files matching a pattern.
    $ dpkg-query --search ${-etc-ld-so-conf-d}
    try on your machine
    explain this command
  • dpkg-query:tldr:969bf dpkg-query: List all files installed by a package.
    $ dpkg-query --listfiles ${libc6}
    try on your machine
    explain this command
  • dpkg-query:tldr:c3dd4 dpkg-query: Show information about a package.
    $ dpkg-query --status ${libc6}
    try on your machine
    explain this command
back to context overview