mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
36 lines
660 B
Markdown
36 lines
660 B
Markdown
# 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:
|
|
|
|
`sudo dnf install {{package}}`
|
|
|
|
- Install a new package and assume yes to all questions:
|
|
|
|
`sudo dnf -y 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}}`
|