RHEL / CentOS: yum Lists / Installs Only Security Updates

 

 
  
  1. You can easily find out security patches related information using yum-security plugin. This plugin adds the options --security, --cve, --bz and --advisory flags to yum and the list-security and info-security commands. The options make it possible to limit list/upgrade of packages to specific security relevant ones. The commands give you the security information. 
  2. Install Plugin 
  3.  
  4. Type the following command: 
  5. # yum install yum-security 
  6. How Do I Display Available Security Updates? 
  7.  
  8. Type the following command: 
  9. # yum list-security 
  10.  
  11. To list all updates that are security relevant, and get a reutrn code on whether there are security updates use: 
  12. # yum --security check-update 
  13. To get a list of all BZs that are fixed for packages you have installed use: 
  14. # yum list-security bugzillas 
  15. To get the information on advisory RHSA-2009:1148-1 use: 
  16. # yum info-security RHSA-2009:1148-1 
  17.  
  18. To get an info list of the latest packages which contain fixes for Bugzilla 3595; CVE # CVE-2009-1890 and advisories RHSA-2009:1148-1, use: 
  19. # yum --bz 3595 --cve CVE-2009-1890 --advisory RHSA-2009:1148-1 info updates 
  20. How Do I Install All The Security Updates Only? 
  21.  
  22. Type the following command to download and install all the available security updates: 
  23. # yum update --security