How To Install Security Updates On Oracle Linux Using YUM
It is possible to use package management tools such as yum or dnf included in Oracle Linux to only install security updates, rather than applying all available updates to a system running Oracle Linux.
Oracle Linux 6 and Oracle Linux 7:
Check if the yum-plugin-security is installed. If it isn't installed, install it with the following command:
# yum install yum-plugin-security
To install security updates, run the following:
# yum update --security
or
# yum update-minimal --security
Note
'yum update --security' will install the latest version of any package that includes a security update not already installed on the system. This is different to 'yum update-minimal --security'
Tagged:
1