1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 00:26:07 +02:00
tldr/pages/linux/dnf.md
Onkar Ruikar 160b91ce95
dnf: add history example (#8220)
The history command shows well formatted installation log. Gives quick idea about what has happened so far.
Also, retrieve the list and repeat the same operations on the new system to get up and running quickly.
2022-07-17 22:33:59 +05:30

659 B

dnf

Package management utility for RHEL, Fedora, and CentOS (replaces yum). More information: https://dnf.readthedocs.io.

  • Upgrade installed packages to the newest available versions:

sudo dnf upgrade

  • Search packages via keywords:

dnf search {{keywords}}

  • Display details about a package:

dnf info {{package}}

  • Install a new package (use -y to confirm all prompts automatically):

sudo dnf install {{package}}

  • Remove a package:

sudo dnf remove {{package}}

  • List installed packages:

dnf list --installed

  • Find which packages provide a given file:

dnf provides {{file}}

  • View all past operations:

dnf history