tldr/pages/linux/dnf.md

38 lines
767 B
Markdown
Raw Normal View History

# dnf
> Package management utility for RHEL, Fedora, and CentOS (replaces yum).
> For equivalent commands in other package managers, see <https://wiki.archlinux.org/title/Pacman/Rosetta>.
> 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):
2018-07-13 09:07:56 +01:00
`sudo dnf install {{package}}`
- Remove a package:
2018-07-13 09:07:56 +01:00
`sudo dnf remove {{package}}`
2019-11-11 14:42:06 +00:00
- List installed packages:
`dnf list --installed`
- Find which packages provide a given file:
2019-11-11 14:42:06 +00:00
`dnf provides {{file}}`
- View all past operations:
`dnf history`