TECHIES WORLD

For Techs.... Techniques.... Technologies....

BashLinux

How to install packages using dnf

DNF or Dandified YUM is the next-generation version of the Yellowdog Updater, Modified, a package manager for .rpm-based distributions. It has been the default package manager since Fedora 22 and Red Hat Enterprise Linux 8.

This article explains some useful details regarding dnf utility.

To search a package,

#dnf search packagename

To install a package,

#dnf install packagename

To remove a package,

#dnf remove packagename

That's all…