1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-10 12:35:42 +02:00
tldr/pages/linux/dnf5.md
vicsar 3b7038d9cd
dnf5 add page (#12626)
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: cyqsimon <28627918+cyqsimon@users.noreply.github.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2024-04-10 17:55:07 +02:00

38 lines
973 B
Markdown

# dnf5
> Package management utility for RHEL, Fedora, and CentOS (it replaces dnf, which in turn replaced yum).
> DNF5 is a C++ rewrite of the DNF package manager featuring improved performance and a smaller size.
> For equivalent commands in other package managers, see <https://wiki.archlinux.org/title/Pacman/Rosetta>.
> More information: <https://dnf5.readthedocs.io/>.
- Upgrade installed packages to the newest available versions:
`sudo dnf5 upgrade`
- Search packages via keywords:
`dnf5 search {{keyword1 keyword2 ...}}`
- Display details about a package:
`dnf5 info {{package}}`
- Install new packages (Note: use `-y` to confirm all prompts automatically):
`sudo dnf5 install {{package1 package2 ...}}`
- Remove packages:
`sudo dnf5 remove {{package1 package2 ...}}`
- List installed packages:
`dnf5 list --installed`
- Find which packages provide a given command:
`dnf5 provides {{command}}`
- Remove or expire cached data:
`sudo dnf5 clean all`