List base packages?

Hi everybody!

Is it possible to get a list of base packages equivalent to “dnf list installed” in SB?
My usecase: How do I find the version of Mutter that is used by the current deployment?

1 Like

dnf is not installed in the images but rpm is so you can do this directly with:

# List all packages in the current image:
$ rpm -qa
# Information on a particular package:
$ rpm -qi mutter
2 Likes