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).
|
2015-12-29 23:23:34 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Synchronize list of packages and versions available. This should be run first, before running subsequent dnf commands:
|
2015-12-29 23:23:34 +00:00
|
|
|
|
|
|
|
`dnf update`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Install a new package:
|
2015-12-29 23:23:34 +00:00
|
|
|
|
|
|
|
`dnf install {{package}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Install a new package and assume yes to all questions:
|
2015-12-30 06:21:42 +00:00
|
|
|
|
2015-12-29 23:23:34 +00:00
|
|
|
`dnf -y install {{package}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Remove a package:
|
2015-12-29 23:23:34 +00:00
|
|
|
|
|
|
|
`dnf remove {{package}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Upgrade installed packages to newest available versions:
|
2015-12-29 23:23:34 +00:00
|
|
|
|
|
|
|
`dnf upgrade`
|