2015-12-29 23:23:34 +00:00
|
|
|
# yum
|
|
|
|
|
2020-02-09 13:02:47 +00:00
|
|
|
> Package management utility for RHEL, Fedora, and CentOS (for older versions).
|
2020-10-19 17:28:06 +01:00
|
|
|
> More information: <https://man7.org/linux/man-pages/man8/yum.8.html>.
|
2015-12-29 23:23:34 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Install a new package:
|
2015-12-29 23:23:34 +00:00
|
|
|
|
|
|
|
`yum install {{package}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Install a new package and assume yes to all questions (also works with update, great for automated updates):
|
2015-12-30 06:21:42 +00:00
|
|
|
|
2015-12-29 23:23:34 +00:00
|
|
|
`yum -y install {{package}}`
|
|
|
|
|
2016-10-27 21:46:11 +01:00
|
|
|
- Find the package that provides a particular command:
|
|
|
|
|
|
|
|
`yum provides {{command}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Remove a package:
|
2015-12-29 23:23:34 +00:00
|
|
|
|
|
|
|
`yum remove {{package}}`
|
|
|
|
|
2020-10-19 17:28:06 +01:00
|
|
|
- Display available updates for installed packages:
|
|
|
|
|
|
|
|
`yum check-update`
|
|
|
|
|
2021-08-15 18:59:09 +01:00
|
|
|
- Upgrade installed packages to the newest available versions:
|
2015-12-29 23:23:34 +00:00
|
|
|
|
|
|
|
`yum upgrade`
|