How to list installed packages that depend on another installed package in Debian?

herzbube

I am on Debian (testing). How can I list all installed packages that depend on another installed package?

I would prefer to do this using either dpkg or apt, but if another tool (or combination of tools) is required I am willing to install that tool. The only requirement is that the tool must work on the command line and be non-interactive.

mtak

To find the reverse dependencies you can install the apt-rdepends package:

sudo apt-get install apt-rdepends

You can then search for reverse dependencies using:

$ apt-rdepends --state-follow=Installed --state-show=Installed -r firefox
Reading package lists... Done
Building dependency tree       
Reading state information... Done
firefox
  Reverse Depends: firefox-globalmenu (= 20.0+build1-0ubuntu2)
  Reverse Depends: firefox-gnome-support (20.0+build1-0ubuntu2)
  Reverse Depends: lightdm-remote-session-uccsconfigure (1.1-0ubuntu2)
  Reverse Depends: xul-ext-unity (>= 2.4.7bzr13.04.15-0ubuntu1)
  Reverse Depends: xul-ext-webaccounts (>= 0.4.5-0ubuntu4)
firefox-globalmenu
firefox-gnome-support
lightdm-remote-session-uccsconfigure
xul-ext-unity
xul-ext-webaccounts

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Listing packages in Yum that depend on another installed package

From Dev

How to list the packages to be installed by installing a specific package?

From Dev

How to list licences of all installed packages in Debian-based distros?

From Dev

How to get the list of installed packages vulnerable to remote attack on debian?

From Dev

Get the list of packages that are not installed on a Debian system

From Dev

How to find specific package name from list of installed packages

From Dev

View installed packages in Debian

From Dev

How to list all installed packages

From Dev

How to list installed go packages

From Dev

How to list all installed packages

From Java

How do I find all installed packages that depend on a given package in NPM?

From Dev

Why isn't 'ls' included as a package when I list all Debian packages installed?

From Dev

Why isn't 'ls' included as a package when I list all Debian packages installed?

From Dev

How do I replicate installed package selections from one Debian system to another? (Debian Wheezy)

From Dev

Debian: make the package manager aware of manually installed packages

From Dev

How to find out if a specific package is installed on Debian?

From Dev

How to find out if a specific package is installed on Debian?

From Dev

How to downgrade Debian package installed with -t testing?

From Dev

how to get debian package from the installed binary

From Dev

How to list all packages installed as dependencies in Terminal, and what installed them?

From Dev

How do I list installed packages with source URI, distribution and section in Debian?

From Dev

How can I display the list of all packages installed on my Debian system?

From Dev

Where does Synaptic (Debian) stores the installed packages list?

From Dev

List explicitly installed packages

From Dev

Chronological list of installed packages

From Java

How to list npm user-installed packages?

From Dev

How to get the list of installed library packages only?

From Dev

How to list all the installed packages and their version with Cabal?

From Dev

How to list user installed applications (not packages)?

Related Related

  1. 1

    Listing packages in Yum that depend on another installed package

  2. 2

    How to list the packages to be installed by installing a specific package?

  3. 3

    How to list licences of all installed packages in Debian-based distros?

  4. 4

    How to get the list of installed packages vulnerable to remote attack on debian?

  5. 5

    Get the list of packages that are not installed on a Debian system

  6. 6

    How to find specific package name from list of installed packages

  7. 7

    View installed packages in Debian

  8. 8

    How to list all installed packages

  9. 9

    How to list installed go packages

  10. 10

    How to list all installed packages

  11. 11

    How do I find all installed packages that depend on a given package in NPM?

  12. 12

    Why isn't 'ls' included as a package when I list all Debian packages installed?

  13. 13

    Why isn't 'ls' included as a package when I list all Debian packages installed?

  14. 14

    How do I replicate installed package selections from one Debian system to another? (Debian Wheezy)

  15. 15

    Debian: make the package manager aware of manually installed packages

  16. 16

    How to find out if a specific package is installed on Debian?

  17. 17

    How to find out if a specific package is installed on Debian?

  18. 18

    How to downgrade Debian package installed with -t testing?

  19. 19

    how to get debian package from the installed binary

  20. 20

    How to list all packages installed as dependencies in Terminal, and what installed them?

  21. 21

    How do I list installed packages with source URI, distribution and section in Debian?

  22. 22

    How can I display the list of all packages installed on my Debian system?

  23. 23

    Where does Synaptic (Debian) stores the installed packages list?

  24. 24

    List explicitly installed packages

  25. 25

    Chronological list of installed packages

  26. 26

    How to list npm user-installed packages?

  27. 27

    How to get the list of installed library packages only?

  28. 28

    How to list all the installed packages and their version with Cabal?

  29. 29

    How to list user installed applications (not packages)?

HotTag

Archive