---
tags: [ packaging ]
---
# To install a package:
dnf install <package>

# To find packages matching <phrase>:
dnf search <phrase>

# To find which package provides an executable:
dnf provides <executable>

# The following are available after installing "dnf-plugins-core"

# To download a package:
dnf download <package>

# To install the build dependencies for a SRPM or from a .spec file:
dnf builddep <file>

# List installed packages
dnf list installed
