2015-12-29 23:23:34 +00:00
|
|
|
# dnf
|
|
|
|
|
2016-10-17 22:46:16 +01:00
|
|
|
> Package management utility for RHEL, Fedora, and CentOS (replaces yum).
|
2022-12-05 00:57:55 +00:00
|
|
|
> For equivalent commands in other package managers, see <https://wiki.archlinux.org/title/Pacman/Rosetta>.
|
2021-09-29 19:56:15 +01:00
|
|
|
> More information: <https://dnf.readthedocs.io>.
|
2020-05-28 13:07:09 +01:00
|
|
|
|
|
|
|
- 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}}`
|
2015-12-29 23:23:34 +00:00
|
|
|
|
2022-07-17 18:03:59 +01:00
|
|
|
- Install a new package (use `-y` to confirm all prompts automatically):
|
2015-12-29 23:23:34 +00:00
|
|
|
|
2018-07-13 09:07:56 +01:00
|
|
|
`sudo dnf install {{package}}`
|
2015-12-29 23:23:34 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Remove a package:
|
2015-12-29 23:23:34 +00:00
|
|
|
|
2018-07-13 09:07:56 +01:00
|
|
|
`sudo dnf remove {{package}}`
|
2015-12-29 23:23:34 +00:00
|
|
|
|
2019-11-11 14:42:06 +00:00
|
|
|
- List installed packages:
|
|
|
|
|
|
|
|
`dnf list --installed`
|
|
|
|
|
2020-05-28 13:07:09 +01:00
|
|
|
- Find which packages provide a given file:
|
2019-11-11 14:42:06 +00:00
|
|
|
|
2020-05-28 13:07:09 +01:00
|
|
|
`dnf provides {{file}}`
|
2022-07-17 18:03:59 +01:00
|
|
|
|
|
|
|
- View all past operations:
|
|
|
|
|
|
|
|
`dnf history`
|