Yum

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

External

Internal

Overview

yum is an interactive, rpm-based package manager. It can automatically perform system updates, including dependency analysis and obsolete processing based on repository metadata. It can also perform installation of new packages, removal of old packages and perform queries on the installed and/or available packages among many other commands/services.

yum is configured in /etc/yum.conf.

The configuration file contains, among other things, the location of the log file (by default /var/log/yum.log).

yum looks for local repository definitions. More details are found in the Yum Repositories section

Installation

Installation on RHEL8

https://www.geeksforgeeks.org/installation-and-configuration-of-yum-in-red-hat-linux-8/

Yum Repositories

Configuring Yum and Yum Repositories

Yum looks into local repository definitions, which are .repo files kept in /etc/yum.repos.d/. All files with the .repo file extension in this directory are read by yum. More information about configured repository can be obtained with yum repolist.

To query the content of a specific repository, use yum repository-packages.

To install a new repository, see Adding a Repository Definition below.

Yum Variables

Using Yum Variables

Yum supports a series of built-in variables, which can be used in all its configuration files, including repository definitions:

$releasever

This variable references the release version of Red Hat Enterprise Linux. Yum obtains the value of $releasever from the distroverpkg=value line in the /etc/yum.conf configuration file. If there is no such line in /etc/yum.conf, then yum infers the correct value by deriving the version number from the redhat-releaseproduct package that provides the redhat-release file.

Exclusion

Yum can be configured to exclude packages from updates to prevent accidental upgrades when we don't want to upgrade, by adding package names to the "exclude" directive in /etc/yum.conf.

Example:

exclude= tuned-profiles-atomic-openshift-node  atomic-openshift-tests  atomic-openshift-sdn-ovs  atomic-openshift-recycle  atomic-openshift-pod  atomic-openshift-node  atomic-openshift-master  atomic-openshift-dockerregistry  atomic-openshift-clients-redistributable  atomic-openshift-clients  atomic-openshift  docker*1.20*  docker*1.19*  docker*1.18*  docker*1.17*  docker*1.16*  docker*1.15*  docker*1.14*  docker*1.13*

Commands

list

Used to list various information about available packages - packages available from the repositories described in /etc/yum.repos.d/*.repo.

installed

Gets a list of installed packages:

yum list installed

To filter, use | grep:

yum list installed | grep [-i] <package-name>

Example of positive hit:

[root@ns ~]# yum list installed | grep [-i]  httpd
httpd.x86_64                     2.4.6-40.el7                @rhel-7-server-rpms
httpd-tools.x86_64               2.4.6-40.el7                @rhel-7-server-rpms

available

Gets a list of all packages in all available repositories.

yum list available

To filter, use | grep.

info

Without arguments, the command lists all packages available from all installed repositories:

yum info

To get information about a specific package:

yum info <package-name>

This can be used for information on packages that already have been installed or on package that has't been installed yet. If the package has been installed, yum info will report Installed Packages, otherwise will say Available.

repolist

Displays information about configured repositories - repositories described in /etc/yum.repos.d/*.repo files.

yum repolist [-v] [repository-id]

where "repository-id" is the repository identifier declared between square brackets in the .repo file.

search

yum search <string>

provides

"provides" can be used to find packages that might contain a certain command:

yum provides sealert

repository-packages

yum repository-packages dockerrepo list
yum repository-packages dockerrepo info

install

Installs the specified package.

yum install <package-name>

localinstall

https://serverfault.com/questions/940791/whats-the-difference-between-yum-install-local-path-and-yum-localinstall

update

Updates the specified package.

yum update <package-name>

To update all packages, see "Update All Packages"

remove, erase

remove and erase are equivalent.

Removes the specified package and its dependents from the system.

yum remove <package-name>

clean

Remove cached data.

yum clean all

Update All Packages

yum -y update

Adding a Repository Definition

Install CentOS-Base Repository
Install EPEL Repository
Adding a docker Repository
Add an Entitled registry.access.redhat.com Repository

yum-config-manager

yum install yum-utils