Linux / UNIX: tar Command Stay In Local / File System When Creating Archive

To list or install only security updates in RHEL / CentOS using yum, you can use the yum-plugin-security package. Here are the steps to follow:

  1. Install the yum-plugin-security package by running the following command as the root user:
yum install yum-plugin-security
  1. Once the package is installed, you can list all available security updates by running the following command:
yum updateinfo list security all

This will list all security updates that are available for your system.

  1. If you want to install only the security updates, you can run the following command:
yum update --security

This will install only the security updates that are available for your system.

Note that using the --security option with the yum update command may not always install all security updates, as it only includes updates that are classified as security updates by the upstream vendor. It is still important to regularly update your system with all available updates, not just security updates, to ensure that your system is up-to-date and secure.

(Valium)

Leave a Comment