2015-12-29 23:23:34 +00:00
|
|
|
# yum
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Package management utility for RHEL, Feodra, and CentOS (for older versions).
|
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 yum commands:
|
2015-12-29 23:23:34 +00:00
|
|
|
|
|
|
|
`yum update`
|
|
|
|
|
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}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Upgrade installed packages to newest available versions:
|
2015-12-29 23:23:34 +00:00
|
|
|
|
|
|
|
`yum upgrade`
|