How do display a list of packages a certain package provides for?

8,248

could be dnf repoquery --alldeps --whatrequires to get the reverse dependencies

Share:
8,248

Related videos on Youtube

polemon
Author by

polemon

Updated on September 18, 2022

Comments

  • polemon
    polemon over 1 year

    On Fedora, I can get a list of packages another package depends on, with the following command:

    dnf repoquery --requires --resolve <package>
    

    But I'd like to have the opposite of that.

    I.e. listing all packages, the package that I'm querying for depend on.

    If possible, either for only installed packages, and perhaps for all packages in my repos.

  • polemon
    polemon almost 7 years
    that and --installed instead of --alldeps, thanks!