1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/dnf.md

37 lines
661 B
Markdown
Raw Normal View History

# 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:
2018-07-13 10:07:56 +02:00
`sudo dnf install {{package}}`
- Install a new package and assume yes to all questions:
2015-12-30 14:21:42 +08:00
2018-07-13 10:07:56 +02:00
`sudo dnf -y install {{package}}`
- Remove a package:
2018-07-13 10:07:56 +02:00
`sudo dnf remove {{package}}`
2019-11-11 15:42:06 +01:00
- List installed packages:
`dnf list --installed`
- Find which packages provide a given file:
2019-11-11 15:42:06 +01:00
`dnf provides {{file}}`