How to Register and Patch RHEL Hosts using Satellite Server

|
Last Updated:
|
|
red hat satellite register and patch hosts

In this guide, you will learn how to register and patch RHEL hosts using Satellite Server. Red Hat Satellite is a powerful systems management solution that enables centralized management of RHEL systems, including subscription management, software updates, configuration management, and compliance monitoring. By leveraging Satellite, organizations can efficiently manage large fleets of RHEL hosts, ensuring they remain secure, compliant, and up-to-date.

This tutorial walks you through the entire process, from registering RHEL hosts with your Satellite server to applying critical security patches and updates. Whether you’re managing a few servers or thousands, Satellite provides the tools needed to streamline these tasks. We’ll cover key steps such as setting up activation keys, verifying network connectivity, installing the Katello agent, and scheduling errata application.

By the end of this guide, you’ll have a clear understanding of how to use Satellite to keep your RHEL hosts secure and fully patched, reducing downtime and improving overall system reliability. Let’s get started!

How to Register and Patch RHEL Hosts using Satellite Server

Pre-requisites

Before you can proceed, ensure that:

  • Ensure you have a Satellite account with Register hosts role.
  • Ensure the account to be used on the host to be registered has to have sudo/root privileges.
  • You have a Red Hat Satellite server set up and configured.
  • You have the necessary credentials (activation key, organization, etc.) for registration.
  • Your RHEL hosts time is synchronized
  • Satellite SSL/TLS CA is installed on the hosts for trusted connections
  • The RHEL hosts you want to register are connected to the network and can resolve Satellite FQDN name.

Install and Setup Red Hat Satellite Server

Check the link below on how to setup Red Hat Satellite Server on RHEL 9.

How to Install Red Hat Satellite on RHEL 9

Create Satellite Content View Activation Keys

Ensure that you have Activation keys created for your respective content view. For our demo purposes, we have an activation key for RHEL 9 that provides access to RHEL 9 AppStream and BaseOS repositories.

Create Satellite Activation Keys

You can also list activation keys for your Organization using hammer CLI tool;

hammer activation-key list --organization "Kifarunix_IT"
---|------------|----------------|-----------------------|-------------
ID | NAME       | HOST LIMIT     | LIFECYCLE ENVIRONMENT | CONTENT VIEW
---|------------|----------------|-----------------------|-------------
1  | rhel9_prod | 0 of Unlimited | Production            | RHEL-9      
---|------------|----------------|-----------------------|-------------

Verify Time Synchronization

The host time must be synchronized with Satellite and or Capsule server to which it is connected.

chronyc sources
MS Name/IP address         Stratum Poll Reach LastRx Last sample               
===============================================================================
^* ntp.kifarunix-demo.c>     4   6    37    18  +1410ns[  +23us] +/- 3584us

Verify Host Connectivity to Satellite

Login to the host and confirm that you can connect to the Satellite server.

curl -sI https://satellite.kifarunix-demo.com

If connected, then it means DNS resolution works fine.

dig +short satellite.kifarunix-demo.com

Install Satellite Server SSL CA on the Host

Copy the Satellite server SSL CA file from Satelliter server to the host.

The file is usually stored as /etc/foreman/proxy_ca.pem. However, be sure to confirm this on the Satellite UI (Administer > Settings > Authentication > SSL CA file setting.)

We have copied to file and stored on the RHEL host as /etc/pki/ca-trust/source/anchors/satellite-ca.pem.

You can verify the CA cert file with OpenSSL.

openssl s_client -connect satellite.kifarunix-demo.com:443 -CAfile /etc/pki/ca-trust/source/anchors/satellite-ca.pem

You should see Verify return code: 0 (ok) if all good.

Once you have confirmed the file is fine, then update the truststore:

update-ca-trust

Supported Hosts for Red Hat Satellite Management

Satellite supports the following operating systems and architectures for registration.

The hosts operating systems:

  • Red Hat Enterprise Linux 9 and 8
  • Red Hat Enterprise Linux 7 and 6 with the ELS Add-On
  • You can register the following hosts for converting to RHEL:
    • CentOS Linux 7
    • Oracle Linux 7 and 8

The hosts architectures:

  • AMD and Intel 64-bit architectures
  • The 64-bit ARM architecture
  • IBM Power Systems, Little Endian
  • 64-bit IBM Z architectures

Register RHEL Hosts to Satellite Server

There are different methods in which you can register your hosts to Satellite server:

  • Using global registration script downloaded from Satellite server
  • Using Katello CA consumer (Deprecated)
  • Using Bootstrap script (Deprecated)

We will check the first two methods.

Register RHEL Hosts using Global Registration Script

You can generate a curl script from Satellite server by navigating to Hosts > Register Hosts. On the host registration general tab, most importantly, select respective activation key (You cna select multiple keys so that you can use same command across multiple hosts registration). Also, if the target machine does not trust the host SSL certificate, check the insecure box.

Register and Patch RHEL Hosts using Satellite Server

Advanced settings;

Register and Patch RHEL Hosts using Satellite Server

Define the settings that suites your needs. You can configure other global parameters by navigating to Configure > Global Parameters.

Once you are done defining your parameters, click Generate to generate the curl script.

global registration curl script

Thus, copy the script and execute it on the respective systems.

Sample script;

set -o pipefail && curl -sS  'https://satellite.kifarunix-demo.com/register?activation_keys=rhel8-dev%2Crhel9_prod&location_id=2&organization_id=1&setup_insights=false&setup_remote_execution=false&setup_remote_execution_pull=false&update_packages=false' -H 'Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjo0LCJpYXQiOjE3NDA0MjU1NDgsImp0aSI6IjI5YmJlYTE5MmViNmY3MWNmOGI3ZTRiOWZlYzFkOWY3NWJiZWQ3ZTRhMDkzZmYjOTE2NjJmYzZkZTM2MDZjZTMiLCJleHAiOjE3NDA0Mzk5NDgsInNjb3BlIjoicmVnaXN0cmF0aW9uI2dsb2JhbCByZWdpc3RyYXRpb24jaG9zdCJ9.zNwMA1Rdpp-NqD726w95W_vBkkp59zEPF-4a3awV_Cs' | bash

So, on the host that needs to be registered, copy and run the script.

Let’s register RHEL 9 host by executing the registration command.

register rhel 9 host to satellite

Confirm registration status and repos on the host;

reg status and repos

Verify Host registration on Satellite server: Hosts > All Hosts.

host registration verification

Host is up-to-date. You can click on it to view more details.

Register RHEL Hosts using Katello CA Consumer

Use of Katello CA consumer to register RHEL hosts to satellite is considered deprecated. This means that it is no longer recommended for use and will likely be removed in future versions of Red Hat Satellite; users should instead utilize the “global registration template” demonstrated above to register hosts to the Satellite server.

If you want to use this method, however, simply download Katello CA consumer RPM package from the Satellite server. It should be available under http[s]://<satellite-address>/pub/katello-ca-consumer-latest.noarch.rpm.

For example, in my env, I would simply run the commands below to register the host via Katello CA consumer.

If the host is already registered to another Satellite, you need to unregister it first and remove all data:

subscription-manager unregister
subscription-manager remove --all
subscription-manager clean

Then, remove Katello CA consumer;

yum remove 'katello-ca-consumer*'

After that, reinstall Katello and register the host;

yum install http[s]://<satellite-address>/pub/katello-ca-consumer-latest.noarch.rpm

For example;

yum install https://satellite.kifarunix-demo.com/pub/katello-ca-consumer-latest.noarch.rpm
Updating Subscription Management repositories.
Unable to read consumer identity

This system is not registered with an entitlement server. You can use subscription-manager to register.

katello-ca-consumer-latest.noarch.rpm                                                                                                                                            928 kB/s |  10 kB     00:00    
Dependencies resolved.
=================================================================================================================================================================================================================
 Package                                                                         Architecture                          Version                                 Repository                                   Size
=================================================================================================================================================================================================================
Installing:
 katello-ca-consumer-satellite.kifarunix-demo.com                                noarch                                1.0-1                                   @commandline                                 10 k

Transaction Summary
=================================================================================================================================================================================================================
Install  1 Package

Total size: 10 k
Installed size: 7.7 k
Is this ok [y/N]: y
Downloading Packages:
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                                                                                                                                                         1/1 
  Installing       : katello-ca-consumer-satellite.kifarunix-demo.com-1.0-1.noarch                                                                                                                           1/1 
  Running scriptlet: katello-ca-consumer-satellite.kifarunix-demo.com-1.0-1.noarch                                                                                                                           1/1 
  Verifying        : katello-ca-consumer-satellite.kifarunix-demo.com-1.0-1.noarch                                                                                                                           1/1 
Installed products updated.

Installed:
  katello-ca-consumer-satellite.kifarunix-demo.com-1.0-1.noarch                                                                                                                                                  

Complete!

Then register the host;

You can use Organization label as value of –org in the subscription command below. Check from Satellite server;

hammer organization list
---|--------------|--------------|-------------|-------------
ID | TITLE        | NAME         | DESCRIPTION | LABEL       
---|--------------|--------------|-------------|-------------
1  | Kifarunix IT | Kifarunix IT |             | Kifarunix_IT
---|--------------|--------------|-------------|-------------
subscription-manager register --org "Kifarunix_IT" --activationkey rhel8-dev
The system has been registered with ID: 0017a4dd-1ab0-4c4a-a284-1df86e6b7608
The registered system name is: svhekif001.kifarunix-demo.com

Confirm the host on Satellite;

register host to Satellite

Click on the host to view more details.

The hosts have now been registered and you can proceed to install and manage packages from Satellite.

How to Patch RHEL Hosts using Satellite Server

Now that you have registered the hosts to Satellite server, each host should now be able to access repositories defined by the activation key.

For example, the RHEL 8.8 host has access to the following repos;

subscription-manager repos --list-enabled
+----------------------------------------------------------+
    Available Repositories in /etc/yum.repos.d/redhat.repo
+----------------------------------------------------------+
Repo ID:   rhel-8-for-x86_64-baseos-rpms
Repo Name: Red Hat Enterprise Linux 8 for x86_64 - BaseOS (RPMs)
Repo URL:  https://satellite.kifarunix-demo.com/pulp/content/Kifarunix_IT/Production/RHEL-8/content/dist/rhel8/8/x86_64/baseos/os
Enabled:   1

Repo ID:   rhel-8-for-x86_64-appstream-rpms
Repo Name: Red Hat Enterprise Linux 8 for x86_64 - AppStream (RPMs)
Repo URL:  https://satellite.kifarunix-demo.com/pulp/content/Kifarunix_IT/Production/RHEL-8/content/dist/rhel8/8/x86_64/appstream/os
Enabled:   1

And RHEL 9.5;

subscription-manager repos --list-enabled
+----------------------------------------------------------+
    Available Repositories in /etc/yum.repos.d/redhat.repo
+----------------------------------------------------------+
Repo ID:   rhel-9-for-x86_64-appstream-rpms
Repo Name: Red Hat Enterprise Linux 9 for x86_64 - AppStream (RPMs)
Repo URL:  https://satellite.kifarunix-demo.com/pulp/content/Kifarunix_IT/Production/RHEL-9/content/dist/rhel9/9/x86_64/appstream/os
Enabled:   1

Repo ID:   rhel-9-for-x86_64-baseos-rpms
Repo Name: Red Hat Enterprise Linux 9 for x86_64 - BaseOS (RPMs)
Repo URL:  https://satellite.kifarunix-demo.com/pulp/content/Kifarunix_IT/Production/RHEL-9/content/dist/rhel9/9/x86_64/baseos/os
Enabled:   1

Since the repos for each respective system are in place, simply run your package installation commands to any any package you might need.

If you want to patch your system, simply execute;

yum update

We will execut the patch command on RHEL 8.8 and we expect it to patch all identified Erata and move the OS version to RHEL 8.10.

Host status before patch;

Patch RHEL Hosts using Satellite Server

Run the patch process.

yum update
Updating Subscription Management repositories.
Red Hat Enterprise Linux 8 for x86_64 - AppStream (RPMs)                                                                                                                         122 MB/s |  71 MB     00:00    
Red Hat Enterprise Linux 8 for x86_64 - BaseOS (RPMs)                                                                                                                            132 MB/s |  82 MB     00:00    
Dependencies resolved.
=================================================================================================================================================================================================================
 Package                                                   Architecture              Version                                                           Repository                                           Size
=================================================================================================================================================================================================================
Installing:
 kernel                                                    x86_64                    4.18.0-553.40.1.el8_10                                            rhel-8-for-x86_64-baseos-rpms                        10 M
Upgrading:
 NetworkManager                                            x86_64                    1:1.40.16-18.el8_10                                               rhel-8-for-x86_64-baseos-rpms                       2.3 M
 NetworkManager-config-server                              noarch                    1:1.40.16-18.el8_10                                               rhel-8-for-x86_64-baseos-rpms                       144 k
 NetworkManager-libnm                                      x86_64                    1:1.40.16-18.el8_10                                               rhel-8-for-x86_64-baseos-rpms                       1.9 M
 NetworkManager-team                                       x86_64                    1:1.40.16-18.el8_10                                               rhel-8-for-x86_64-baseos-rpms                       161 k
 NetworkManager-tui                                        x86_64                    1:1.40.16-18.el8_10                                               rhel-8-for-x86_64-baseos-rpms                       356 k
 PackageKit                                                x86_64                    1.1.12-7.el8                                                      rhel-8-for-x86_64-appstream-rpms                    599 k
 PackageKit-glib                                           x86_64                    1.1.12-7.el8                                                      rhel-8-for-x86_64-appstream-rpms                    140 k
 acl                                                       x86_64                    2.2.53-3.el8                                                      rhel-8-for-x86_64-baseos-rpms                        81 k
 alsa-sof-firmware                                         noarch                    2023.09.2-1.el8                                                   rhel-8-for-x86_64-baseos-rpms                       1.3 M
 audit                                                     x86_64                    3.1.2-1.el8                                                       rhel-8-for-x86_64-baseos-rpms                       265 k
 audit-libs                                                x86_64                    3.1.2-1.el8                                                       rhel-8-for-x86_64-baseos-rpms                       125 k
 authselect                                                x86_64                    1.2.6-2.el8                                                       rhel-8-for-x86_64-baseos-rpms                       147 k
 authselect-compat                                         x86_64                    1.2.6-2.el8                                                       rhel-8-for-x86_64-appstream-rpms                     38 k
 authselect-libs                                           x86_64                    1.2.6-2.el8                                                       rhel-8-for-x86_64-baseos-rpms                       244 k
 avahi-libs                                                x86_64                    0.7-27.el8_10.1                                                   rhel-8-for-x86_64-baseos-rpms                        62 k
 bash                                                      x86_64                    4.4.20-5.el8                                                      rhel-8-for-x86_64-baseos-rpms                       1.5 M
 bind-libs                                                 x86_64                    32:9.11.36-16.el8_10.4                                            rhel-8-for-x86_64-appstream-rpms                    177 k
 bind-libs-lite                                            x86_64                    32:9.11.36-16.el8_10.4                                            rhel-8-for-x86_64-appstream-rpms                    1.2 M
 bind-license                                              noarch                    32:9.11.36-16.el8_10.4                                            rhel-8-for-x86_64-appstream-rpms                    105 k
 bind-utils                                                x86_64                    32:9.11.36-16.el8_10.4                                            rhel-8-for-x86_64-appstream-rpms                    454 k
 binutils                                                  x86_64                    2.30-125.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       5.8 M
 blktrace                                                  x86_64                    1.2.0-11.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       149 k
 bpftool                                                   x86_64                    4.18.0-553.40.1.el8_10                                            rhel-8-for-x86_64-baseos-rpms                        11 M
 buildah                                                   x86_64                    2:1.33.12-1.module+el8.10.0+22744+7794713b                        rhel-8-for-x86_64-appstream-rpms                    9.8 M
 bzip2                                                     x86_64                    1.0.6-28.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                        60 k
 bzip2-libs                                                x86_64                    1.0.6-28.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                        48 k
 c-ares                                                    x86_64                    1.13.0-11.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                        94 k
 ca-certificates                                           noarch                    2024.2.69_v8.0.303-80.0.el8_10                                    rhel-8-for-x86_64-baseos-rpms                       983 k
 chkconfig                                                 x86_64                    1.19.2-1.el8                                                      rhel-8-for-x86_64-baseos-rpms                       199 k
 chrony                                                    x86_64                    4.5-2.el8_10                                                      rhel-8-for-x86_64-baseos-rpms                       355 k
 clevis                                                    x86_64                    15-15.el8                                                         rhel-8-for-x86_64-appstream-rpms                     59 k
 clevis-luks                                               x86_64                    15-15.el8                                                         rhel-8-for-x86_64-appstream-rpms                     39 k
 cockpit                                                   x86_64                    310.4-1.el8_10                                                    rhel-8-for-x86_64-baseos-rpms                        90 k
 cockpit-bridge                                            x86_64                    310.4-1.el8_10                                                    rhel-8-for-x86_64-baseos-rpms                       501 k
 cockpit-packagekit                                        noarch                    310.3-3.el8_10                                                    rhel-8-for-x86_64-appstream-rpms                    975 k
 cockpit-podman                                            noarch                    84.1-1.module+el8.10.0+22417+2fb00970                             rhel-8-for-x86_64-appstream-rpms                    684 k
 cockpit-storaged                                          noarch                    310.3-3.el8_10                                                    rhel-8-for-x86_64-appstream-rpms                    903 k
 cockpit-system                                            noarch                    310.4-1.el8_10                                                    rhel-8-for-x86_64-baseos-rpms                       5.2 M
 cockpit-ws                                                x86_64                    310.4-1.el8_10                                                    rhel-8-for-x86_64-baseos-rpms                       983 k
 conmon                                                    x86_64                    3:2.1.10-1.module+el8.10.0+22417+2fb00970                         rhel-8-for-x86_64-appstream-rpms                     58 k
 container-selinux                                         noarch                    2:2.229.0-2.module+el8.10.0+22417+2fb00970                        rhel-8-for-x86_64-appstream-rpms                     71 k
 containernetworking-plugins                               x86_64                    1:1.4.0-5.module+el8.10.0+22417+2fb00970                          rhel-8-for-x86_64-appstream-rpms                     22 M
 containers-common                                         x86_64                    2:1-82.module+el8.10.0+22417+2fb00970                             rhel-8-for-x86_64-appstream-rpms                    143 k
 criu                                                      x86_64                    3.18-5.module+el8.10.0+22417+2fb00970                             rhel-8-for-x86_64-appstream-rpms                    564 k
 cronie                                                    x86_64                    1.5.2-10.el8                                                      rhel-8-for-x86_64-baseos-rpms                       119 k
 cronie-anacron                                            x86_64                    1.5.2-10.el8                                                      rhel-8-for-x86_64-baseos-rpms                        42 k
 crypto-policies                                           noarch                    20230731-1.git3177e06.el8                                         rhel-8-for-x86_64-baseos-rpms                        64 k
 crypto-policies-scripts                                   noarch                    20230731-1.git3177e06.el8                                         rhel-8-for-x86_64-baseos-rpms                        84 k
 cryptsetup                                                x86_64                    2.3.7-7.el8                                                       rhel-8-for-x86_64-baseos-rpms                       200 k
 cryptsetup-libs                                           x86_64                    2.3.7-7.el8                                                       rhel-8-for-x86_64-baseos-rpms                       489 k
 curl                                                      x86_64                    7.61.1-34.el8_10.3                                                rhel-8-for-x86_64-baseos-rpms                       354 k
 dbus                                                      x86_64                    1:1.12.8-26.el8                                                   rhel-8-for-x86_64-baseos-rpms                        42 k
 dbus-common                                               noarch                    1:1.12.8-26.el8                                                   rhel-8-for-x86_64-baseos-rpms                        47 k
 dbus-daemon                                               x86_64                    1:1.12.8-26.el8                                                   rhel-8-for-x86_64-baseos-rpms                       241 k
 dbus-libs                                                 x86_64                    1:1.12.8-26.el8                                                   rhel-8-for-x86_64-baseos-rpms                       185 k
 dbus-tools                                                x86_64                    1:1.12.8-26.el8                                                   rhel-8-for-x86_64-baseos-rpms                        86 k
 device-mapper                                             x86_64                    8:1.02.181-14.el8                                                 rhel-8-for-x86_64-baseos-rpms                       379 k
 device-mapper-event                                       x86_64                    8:1.02.181-14.el8                                                 rhel-8-for-x86_64-baseos-rpms                       273 k
 device-mapper-event-libs                                  x86_64                    8:1.02.181-14.el8                                                 rhel-8-for-x86_64-baseos-rpms                       272 k
 device-mapper-libs                                        x86_64                    8:1.02.181-14.el8                                                 rhel-8-for-x86_64-baseos-rpms                       411 k
 device-mapper-multipath                                   x86_64                    0.8.4-41.el8                                                      rhel-8-for-x86_64-baseos-rpms                       210 k
 device-mapper-multipath-libs                              x86_64                    0.8.4-41.el8                                                      rhel-8-for-x86_64-baseos-rpms                       335 k
 dmidecode                                                 x86_64                    1:3.5-1.el8                                                       rhel-8-for-x86_64-baseos-rpms                        99 k
 dnf                                                       noarch                    4.7.0-20.el8                                                      rhel-8-for-x86_64-baseos-rpms                       543 k
 dnf-data                                                  noarch                    4.7.0-20.el8                                                      rhel-8-for-x86_64-baseos-rpms                       157 k
 dnf-plugin-subscription-manager                           x86_64                    1.28.42-1.el8                                                     rhel-8-for-x86_64-baseos-rpms                       326 k
 dnf-plugins-core                                          noarch                    4.0.21-25.el8                                                     rhel-8-for-x86_64-baseos-rpms                        77 k
 dracut                                                    x86_64                    049-233.git20240115.el8                                           rhel-8-for-x86_64-baseos-rpms                       380 k
 dracut-config-rescue                                      x86_64                    049-233.git20240115.el8                                           rhel-8-for-x86_64-baseos-rpms                        63 k
 dracut-network                                            x86_64                    049-233.git20240115.el8                                           rhel-8-for-x86_64-baseos-rpms                       111 k
 dracut-squash                                             x86_64                    049-233.git20240115.el8                                           rhel-8-for-x86_64-baseos-rpms                        64 k
 elfutils-debuginfod-client                                x86_64                    0.190-2.el8                                                       rhel-8-for-x86_64-baseos-rpms                        76 k
 elfutils-default-yama-scope                               noarch                    0.190-2.el8                                                       rhel-8-for-x86_64-baseos-rpms                        53 k
 elfutils-libelf                                           x86_64                    0.190-2.el8                                                       rhel-8-for-x86_64-baseos-rpms                       233 k
 elfutils-libs                                             x86_64                    0.190-2.el8                                                       rhel-8-for-x86_64-baseos-rpms                       305 k
 emacs-filesystem                                          noarch                    1:26.1-12.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                        70 k
 expat                                                     x86_64                    2.2.5-16.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       115 k
 file                                                      x86_64                    5.33-26.el8                                                       rhel-8-for-x86_64-baseos-rpms                        77 k
 file-libs                                                 x86_64                    5.33-26.el8                                                       rhel-8-for-x86_64-baseos-rpms                       544 k
 findutils                                                 x86_64                    1:4.6.0-23.el8_10                                                 rhel-8-for-x86_64-baseos-rpms                       528 k
 firewalld                                                 noarch                    0.9.11-9.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       511 k
 firewalld-filesystem                                      noarch                    0.9.11-9.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                        79 k
 fuse-common                                               x86_64                    3.3.0-19.el8                                                      rhel-8-for-x86_64-baseos-rpms                        22 k
 fuse-libs                                                 x86_64                    2.9.7-19.el8                                                      rhel-8-for-x86_64-baseos-rpms                       103 k
 fuse-overlayfs                                            x86_64                    1.13-1.module+el8.10.0+22417+2fb00970                             rhel-8-for-x86_64-appstream-rpms                     70 k
 fuse3                                                     x86_64                    3.3.0-19.el8                                                      rhel-8-for-x86_64-baseos-rpms                        55 k
 fuse3-libs                                                x86_64                    3.3.0-19.el8                                                      rhel-8-for-x86_64-baseos-rpms                        96 k
 gdk-pixbuf2                                               x86_64                    2.36.12-6.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                       466 k
 glib2                                                     x86_64                    2.56.4-165.el8_10                                                 rhel-8-for-x86_64-baseos-rpms                       2.5 M
 glibc                                                     x86_64                    2.28-251.el8_10.13                                                rhel-8-for-x86_64-baseos-rpms                       2.2 M
 glibc-common                                              x86_64                    2.28-251.el8_10.13                                                rhel-8-for-x86_64-baseos-rpms                       1.0 M
 glibc-gconv-extra                                         x86_64                    2.28-251.el8_10.13                                                rhel-8-for-x86_64-baseos-rpms                       1.6 M
 glibc-langpack-en                                         x86_64                    2.28-251.el8_10.13                                                rhel-8-for-x86_64-baseos-rpms                       832 k
 gmp                                                       x86_64                    1:6.1.2-11.el8                                                    rhel-8-for-x86_64-baseos-rpms                       318 k
 gnutls                                                    x86_64                    3.6.16-8.el8_9.3                                                  rhel-8-for-x86_64-baseos-rpms                       1.0 M
 gpgme                                                     x86_64                    1.13.1-12.el8                                                     rhel-8-for-x86_64-baseos-rpms                       336 k
 grub2-common                                              noarch                    1:2.02-160.el8_10                                                 rhel-8-for-x86_64-baseos-rpms                       897 k
 grub2-pc                                                  x86_64                    1:2.02-160.el8_10                                                 rhel-8-for-x86_64-baseos-rpms                        47 k
 grub2-pc-modules                                          noarch                    1:2.02-160.el8_10                                                 rhel-8-for-x86_64-baseos-rpms                       923 k
 grub2-tools                                               x86_64                    1:2.02-160.el8_10                                                 rhel-8-for-x86_64-baseos-rpms                       2.0 M
 grub2-tools-extra                                         x86_64                    1:2.02-160.el8_10                                                 rhel-8-for-x86_64-baseos-rpms                       1.1 M
 grub2-tools-minimal                                       x86_64                    1:2.02-160.el8_10                                                 rhel-8-for-x86_64-baseos-rpms                       215 k
 grubby                                                    x86_64                    8.40-49.el8                                                       rhel-8-for-x86_64-baseos-rpms                        50 k
 hwdata                                                    noarch                    0.314-8.22.el8                                                    rhel-8-for-x86_64-baseos-rpms                       1.8 M
 insights-client                                           noarch                    3.2.2-2.el8                                                       rhel-8-for-x86_64-appstream-rpms                    1.3 M
 iproute                                                   x86_64                    6.2.0-6.el8_10                                                    rhel-8-for-x86_64-baseos-rpms                       854 k
 iptables                                                  x86_64                    1.8.5-11.el8_9                                                    rhel-8-for-x86_64-baseos-rpms                       592 k
 iptables-ebtables                                         x86_64                    1.8.5-11.el8_9                                                    rhel-8-for-x86_64-baseos-rpms                        74 k
 iptables-libs                                             x86_64                    1.8.5-11.el8_9                                                    rhel-8-for-x86_64-baseos-rpms                       103 k
 iputils                                                   x86_64                    20180629-11.el8                                                   rhel-8-for-x86_64-baseos-rpms                       149 k
 irqbalance                                                x86_64                    2:1.9.2-1.el8                                                     rhel-8-for-x86_64-baseos-rpms                        72 k
 iscsi-initiator-utils                                     x86_64                    6.2.1.4-8.git095f59c.el8_8                                        rhel-8-for-x86_64-baseos-rpms                       380 k
 iscsi-initiator-utils-iscsiuio                            x86_64                    6.2.1.4-8.git095f59c.el8_8                                        rhel-8-for-x86_64-baseos-rpms                       101 k
 iwl100-firmware                                           noarch                    39.31.5.1-127.el8_10.1                                            rhel-8-for-x86_64-baseos-rpms                       220 k
 iwl1000-firmware                                          noarch                    1:39.31.5.1-127.el8_10.1                                          rhel-8-for-x86_64-baseos-rpms                       220 k
 iwl105-firmware                                           noarch                    18.168.6.1-127.el8_10.1                                           rhel-8-for-x86_64-baseos-rpms                       304 k
 iwl135-firmware                                           noarch                    18.168.6.1-127.el8_10.1                                           rhel-8-for-x86_64-baseos-rpms                       313 k
 iwl2000-firmware                                          noarch                    18.168.6.1-127.el8_10.1                                           rhel-8-for-x86_64-baseos-rpms                       307 k
 iwl2030-firmware                                          noarch                    18.168.6.1-127.el8_10.1                                           rhel-8-for-x86_64-baseos-rpms                       316 k
 iwl3160-firmware                                          noarch                    1:25.30.13.0-127.el8_10.1                                         rhel-8-for-x86_64-baseos-rpms                       547 k
 iwl5000-firmware                                          noarch                    8.83.5.1_1-127.el8_10.1                                           rhel-8-for-x86_64-baseos-rpms                       217 k
 iwl5150-firmware                                          noarch                    8.24.2.2-127.el8_10.1                                             rhel-8-for-x86_64-baseos-rpms                       217 k
 iwl6000-firmware                                          noarch                    9.221.4.1-127.el8_10.1                                            rhel-8-for-x86_64-baseos-rpms                       237 k
 iwl6000g2a-firmware                                       noarch                    18.168.6.1-127.el8_10.1                                           rhel-8-for-x86_64-baseos-rpms                       289 k
 iwl6000g2b-firmware                                       noarch                    18.168.6.1-127.el8_10.1                                           rhel-8-for-x86_64-baseos-rpms                       291 k
 iwl6050-firmware                                          noarch                    41.28.5.1-127.el8_10.1                                            rhel-8-for-x86_64-baseos-rpms                       244 k
 iwl7260-firmware                                          noarch                    1:25.30.13.0-127.el8_10.1                                         rhel-8-for-x86_64-baseos-rpms                        24 M
 jose                                                      x86_64                    10-2.el8_10.3                                                     rhel-8-for-x86_64-appstream-rpms                     58 k
 jq                                                        x86_64                    1.6-9.el8_10                                                      rhel-8-for-x86_64-appstream-rpms                    203 k
 kbd                                                       x86_64                    2.0.4-11.el8                                                      rhel-8-for-x86_64-baseos-rpms                       390 k
 kbd-legacy                                                noarch                    2.0.4-11.el8                                                      rhel-8-for-x86_64-baseos-rpms                       481 k
 kbd-misc                                                  noarch                    2.0.4-11.el8                                                      rhel-8-for-x86_64-baseos-rpms                       1.5 M
 kernel-tools                                              x86_64                    4.18.0-553.40.1.el8_10                                            rhel-8-for-x86_64-baseos-rpms                        11 M
 kernel-tools-libs                                         x86_64                    4.18.0-553.40.1.el8_10                                            rhel-8-for-x86_64-baseos-rpms                        10 M
 kexec-tools                                               x86_64                    2.0.26-14.el8_10.2                                                rhel-8-for-x86_64-baseos-rpms                       532 k
 kmod                                                      x86_64                    25-20.el8                                                         rhel-8-for-x86_64-baseos-rpms                       126 k
 kmod-kvdo                                                 x86_64                    6.2.8.7-94.el8                                                    rhel-8-for-x86_64-baseos-rpms                       357 k
 kmod-libs                                                 x86_64                    25-20.el8                                                         rhel-8-for-x86_64-baseos-rpms                        69 k
 kpartx                                                    x86_64                    0.8.4-41.el8                                                      rhel-8-for-x86_64-baseos-rpms                       120 k
 krb5-libs                                                 x86_64                    1.18.2-30.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                       845 k
 ledmon                                                    x86_64                    0.97-1.el8                                                        rhel-8-for-x86_64-baseos-rpms                        90 k
 less                                                      x86_64                    530-3.el8_10                                                      rhel-8-for-x86_64-baseos-rpms                       164 k
 libX11                                                    x86_64                    1.6.8-9.el8_10                                                    rhel-8-for-x86_64-appstream-rpms                    612 k
 libX11-common                                             noarch                    1.6.8-9.el8_10                                                    rhel-8-for-x86_64-appstream-rpms                    159 k
 libacl                                                    x86_64                    2.2.53-3.el8                                                      rhel-8-for-x86_64-baseos-rpms                        35 k
 libblkid                                                  x86_64                    2.32.1-46.el8                                                     rhel-8-for-x86_64-baseos-rpms                       221 k
 libblockdev                                               x86_64                    2.28-6.el8                                                        rhel-8-for-x86_64-appstream-rpms                    133 k
 libblockdev-crypto                                        x86_64                    2.28-6.el8                                                        rhel-8-for-x86_64-appstream-rpms                     82 k
 libblockdev-fs                                            x86_64                    2.28-6.el8                                                        rhel-8-for-x86_64-appstream-rpms                     88 k
 libblockdev-loop                                          x86_64                    2.28-6.el8                                                        rhel-8-for-x86_64-appstream-rpms                     71 k
 libblockdev-lvm                                           x86_64                    2.28-6.el8                                                        rhel-8-for-x86_64-appstream-rpms                     88 k
 libblockdev-mdraid                                        x86_64                    2.28-6.el8                                                        rhel-8-for-x86_64-appstream-rpms                     78 k
 libblockdev-part                                          x86_64                    2.28-6.el8                                                        rhel-8-for-x86_64-appstream-rpms                     81 k
 libblockdev-swap                                          x86_64                    2.28-6.el8                                                        rhel-8-for-x86_64-appstream-rpms                     73 k
 libblockdev-utils                                         x86_64                    2.28-6.el8                                                        rhel-8-for-x86_64-appstream-rpms                     81 k
 libcap                                                    x86_64                    2.48-6.el8_9                                                      rhel-8-for-x86_64-baseos-rpms                        74 k
 libcurl                                                   x86_64                    7.61.1-34.el8_10.3                                                rhel-8-for-x86_64-baseos-rpms                       304 k
 libdnf                                                    x86_64                    0.63.0-21.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                       712 k
 libertas-usb8388-firmware                                 noarch                    2:20250108-127.gitc0f414a6.el8_10                                 rhel-8-for-x86_64-baseos-rpms                       183 k
 libfastjson                                               x86_64                    0.99.9-2.el8                                                      rhel-8-for-x86_64-appstream-rpms                     38 k
 libfdisk                                                  x86_64                    2.32.1-46.el8                                                     rhel-8-for-x86_64-baseos-rpms                       254 k
 libgcc                                                    x86_64                    8.5.0-23.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                        82 k
 libgomp                                                   x86_64                    8.5.0-23.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       208 k
 libibverbs                                                x86_64                    48.0-1.el8                                                        rhel-8-for-x86_64-baseos-rpms                       404 k
 libipa_hbac                                               x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       129 k
 libjose                                                   x86_64                    10-2.el8_10.3                                                     rhel-8-for-x86_64-appstream-rpms                     64 k
 libkcapi                                                  x86_64                    1.4.0-2.el8                                                       rhel-8-for-x86_64-baseos-rpms                        53 k
 libkcapi-hmaccalc                                         x86_64                    1.4.0-2.el8                                                       rhel-8-for-x86_64-baseos-rpms                        32 k
 libldb                                                    x86_64                    2.8.0-1.el8_10                                                    rhel-8-for-x86_64-baseos-rpms                       192 k
 libmaxminddb                                              x86_64                    1.2.0-10.el8_9.1                                                  rhel-8-for-x86_64-appstream-rpms                     33 k
 libmount                                                  x86_64                    2.32.1-46.el8                                                     rhel-8-for-x86_64-baseos-rpms                       237 k
 libndp                                                    x86_64                    1.7-7.el8_10                                                      rhel-8-for-x86_64-baseos-rpms                        41 k
 libnftnl                                                  x86_64                    1.2.2-3.el8                                                       rhel-8-for-x86_64-baseos-rpms                        87 k
 libnghttp2                                                x86_64                    1.33.0-6.el8_10.1                                                 rhel-8-for-x86_64-baseos-rpms                        78 k
 libproxy                                                  x86_64                    0.4.15-5.5.el8_10                                                 rhel-8-for-x86_64-baseos-rpms                        73 k
 librepo                                                   x86_64                    1.14.2-5.el8                                                      rhel-8-for-x86_64-baseos-rpms                        93 k
 libselinux                                                x86_64                    2.9-9.el8_10                                                      rhel-8-for-x86_64-baseos-rpms                       166 k
 libselinux-utils                                          x86_64                    2.9-9.el8_10                                                      rhel-8-for-x86_64-baseos-rpms                       243 k
 libsemanage                                               x86_64                    2.9-10.el8_10                                                     rhel-8-for-x86_64-baseos-rpms                       169 k
 libslirp                                                  x86_64                    4.4.0-2.module+el8.10.0+22417+2fb00970                            rhel-8-for-x86_64-appstream-rpms                     71 k
 libsmartcols                                              x86_64                    2.32.1-46.el8                                                     rhel-8-for-x86_64-baseos-rpms                       180 k
 libsmbclient                                              x86_64                    4.19.4-6.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       157 k
 libsolv                                                   x86_64                    0.7.20-6.el8                                                      rhel-8-for-x86_64-baseos-rpms                       376 k
 libsoup                                                   x86_64                    2.62.3-7.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       426 k
 libssh                                                    x86_64                    0.9.6-14.el8                                                      rhel-8-for-x86_64-baseos-rpms                       220 k
 libssh-config                                             noarch                    0.9.6-14.el8                                                      rhel-8-for-x86_64-baseos-rpms                        21 k
 libsss_autofs                                             x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       131 k
 libsss_certmap                                            x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       187 k
 libsss_idmap                                              x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       133 k
 libsss_nss_idmap                                          x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       142 k
 libsss_sudo                                               x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       129 k
 libstdc++                                                 x86_64                    8.5.0-23.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       455 k
 libstoragemgmt                                            x86_64                    1.9.1-7.el8                                                       rhel-8-for-x86_64-baseos-rpms                       247 k
 libtalloc                                                 x86_64                    2.4.1-0.el8                                                       rhel-8-for-x86_64-baseos-rpms                        50 k
 libtdb                                                    x86_64                    1.4.9-0.el8                                                       rhel-8-for-x86_64-baseos-rpms                        60 k
 libtevent                                                 x86_64                    0.16.0-0.el8                                                      rhel-8-for-x86_64-baseos-rpms                        55 k
 libtirpc                                                  x86_64                    1.1.4-12.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       114 k
 libudisks2                                                x86_64                    2.9.0-16.el8                                                      rhel-8-for-x86_64-appstream-rpms                    185 k
 libuser                                                   x86_64                    0.62-26.el8_10                                                    rhel-8-for-x86_64-baseos-rpms                       414 k
 libuuid                                                   x86_64                    2.32.1-46.el8                                                     rhel-8-for-x86_64-baseos-rpms                        99 k
 libwbclient                                               x86_64                    4.19.4-6.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       129 k
 libxml2                                                   x86_64                    2.9.7-18.el8_10.2                                                 rhel-8-for-x86_64-baseos-rpms                       697 k
 linux-firmware                                            noarch                    20250108-127.gitc0f414a6.el8_10                                   rhel-8-for-x86_64-baseos-rpms                       402 M
 lvm2                                                      x86_64                    8:2.03.14-14.el8                                                  rhel-8-for-x86_64-baseos-rpms                       1.7 M
 lvm2-libs                                                 x86_64                    8:2.03.14-14.el8                                                  rhel-8-for-x86_64-baseos-rpms                       1.2 M
 man-pages-overrides                                       noarch                    8.9.0.0-1.el8                                                     rhel-8-for-x86_64-appstream-rpms                     90 k
 mcelog                                                    x86_64                    3:195-0.el8                                                       rhel-8-for-x86_64-baseos-rpms                        85 k
 mdadm                                                     x86_64                    4.2-16.el8_10                                                     rhel-8-for-x86_64-baseos-rpms                       470 k
 memstrack                                                 x86_64                    0.2.5-2.el8                                                       rhel-8-for-x86_64-baseos-rpms                        52 k
 microcode_ctl                                             x86_64                    4:20240910-1.el8_10                                               rhel-8-for-x86_64-baseos-rpms                       8.9 M
 nano                                                      x86_64                    2.9.8-3.el8_10                                                    rhel-8-for-x86_64-baseos-rpms                       581 k
 ncurses                                                   x86_64                    6.1-10.20180224.el8                                               rhel-8-for-x86_64-baseos-rpms                       387 k
 ncurses-base                                              noarch                    6.1-10.20180224.el8                                               rhel-8-for-x86_64-baseos-rpms                        81 k
 ncurses-libs                                              x86_64                    6.1-10.20180224.el8                                               rhel-8-for-x86_64-baseos-rpms                       334 k
 nftables                                                  x86_64                    1:1.0.4-7.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                       382 k
 nmap-ncat                                                 x86_64                    2:7.92-1.el8                                                      rhel-8-for-x86_64-appstream-rpms                    243 k
 nspr                                                      x86_64                    4.35.0-1.el8_8                                                    rhel-8-for-x86_64-appstream-rpms                    143 k
 nss                                                       x86_64                    3.101.0-11.el8_8                                                  rhel-8-for-x86_64-appstream-rpms                    766 k
 nss-softokn                                               x86_64                    3.101.0-11.el8_8                                                  rhel-8-for-x86_64-appstream-rpms                    532 k
 nss-softokn-freebl                                        x86_64                    3.101.0-11.el8_8                                                  rhel-8-for-x86_64-appstream-rpms                    392 k
 nss-sysinit                                               x86_64                    3.101.0-11.el8_8                                                  rhel-8-for-x86_64-appstream-rpms                     77 k
 nss-util                                                  x86_64                    3.101.0-11.el8_8                                                  rhel-8-for-x86_64-appstream-rpms                    143 k
 numactl-libs                                              x86_64                    2.0.16-4.el8                                                      rhel-8-for-x86_64-baseos-rpms                        37 k
 nvme-cli                                                  x86_64                    1.16-9.el8                                                        rhel-8-for-x86_64-baseos-rpms                       503 k
 oniguruma                                                 x86_64                    6.8.2-3.el8                                                       rhel-8-for-x86_64-appstream-rpms                    188 k
 openldap                                                  x86_64                    2.4.46-20.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                       354 k
 openssh                                                   x86_64                    8.0p1-25.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       526 k
 openssh-clients                                           x86_64                    8.0p1-25.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       646 k
 openssh-server                                            x86_64                    8.0p1-25.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       495 k
 openssl                                                   x86_64                    1:1.1.1k-14.el8_6                                                 rhel-8-for-x86_64-baseos-rpms                       711 k
 openssl-libs                                              x86_64                    1:1.1.1k-14.el8_6                                                 rhel-8-for-x86_64-baseos-rpms                       1.5 M
 p11-kit                                                   x86_64                    0.23.22-2.el8                                                     rhel-8-for-x86_64-baseos-rpms                       327 k
 p11-kit-trust                                             x86_64                    0.23.22-2.el8                                                     rhel-8-for-x86_64-baseos-rpms                       138 k
 pam                                                       x86_64                    1.3.1-36.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       748 k
 pixman                                                    x86_64                    0.38.4-4.el8                                                      rhel-8-for-x86_64-appstream-rpms                    258 k
 platform-python                                           x86_64                    3.6.8-69.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                        88 k
 platform-python-pip                                       noarch                    9.0.3-24.el8                                                      rhel-8-for-x86_64-baseos-rpms                       1.6 M
 platform-python-setuptools                                noarch                    39.2.0-8.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       632 k
 podman                                                    x86_64                    4:4.9.4-19.module+el8.10.0+22744+7794713b                         rhel-8-for-x86_64-appstream-rpms                     16 M
 podman-catatonit                                          x86_64                    4:4.9.4-19.module+el8.10.0+22744+7794713b                         rhel-8-for-x86_64-appstream-rpms                    376 k
 policycoreutils                                           x86_64                    2.9-26.el8_10                                                     rhel-8-for-x86_64-baseos-rpms                       377 k
 policycoreutils-python-utils                              noarch                    2.9-26.el8_10                                                     rhel-8-for-x86_64-baseos-rpms                       254 k
 polkit                                                    x86_64                    0.115-15.el8_10.2                                                 rhel-8-for-x86_64-baseos-rpms                       155 k
 polkit-libs                                               x86_64                    0.115-15.el8_10.2                                                 rhel-8-for-x86_64-baseos-rpms                        77 k
 procps-ng                                                 x86_64                    3.3.15-14.el8                                                     rhel-8-for-x86_64-baseos-rpms                       330 k
 protobuf-c                                                x86_64                    1.3.0-8.el8                                                       rhel-8-for-x86_64-appstream-rpms                     37 k
 python3-audit                                             x86_64                    3.1.2-1.el8                                                       rhel-8-for-x86_64-baseos-rpms                        88 k
 python3-bind                                              noarch                    32:9.11.36-16.el8_10.4                                            rhel-8-for-x86_64-appstream-rpms                    153 k
 python3-cloud-what                                        x86_64                    1.28.42-1.el8                                                     rhel-8-for-x86_64-baseos-rpms                       325 k
 python3-dnf                                               noarch                    4.7.0-20.el8                                                      rhel-8-for-x86_64-baseos-rpms                       550 k
 python3-dnf-plugins-core                                  noarch                    4.0.21-25.el8                                                     rhel-8-for-x86_64-baseos-rpms                       263 k
 python3-firewall                                          noarch                    0.9.11-9.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       438 k
 python3-gpg                                               x86_64                    1.13.1-12.el8                                                     rhel-8-for-x86_64-baseos-rpms                       244 k
 python3-hawkey                                            x86_64                    0.63.0-21.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                       119 k
 python3-idna                                              noarch                    2.5-7.el8_10                                                      rhel-8-for-x86_64-baseos-rpms                       103 k
 python3-libdnf                                            x86_64                    0.63.0-21.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                       781 k
 python3-librepo                                           x86_64                    1.14.2-5.el8                                                      rhel-8-for-x86_64-baseos-rpms                        54 k
 python3-libs                                              x86_64                    3.6.8-69.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       7.9 M
 python3-libselinux                                        x86_64                    2.9-9.el8_10                                                      rhel-8-for-x86_64-baseos-rpms                       283 k
 python3-libsemanage                                       x86_64                    2.9-10.el8_10                                                     rhel-8-for-x86_64-baseos-rpms                       128 k
 python3-libstoragemgmt                                    x86_64                    1.9.1-7.el8                                                       rhel-8-for-x86_64-baseos-rpms                       176 k
 python3-libxml2                                           x86_64                    2.9.7-18.el8_10.2                                                 rhel-8-for-x86_64-baseos-rpms                       238 k
 python3-linux-procfs                                      noarch                    0.7.3-1.el8                                                       rhel-8-for-x86_64-baseos-rpms                        37 k
 python3-magic                                             noarch                    5.33-26.el8                                                       rhel-8-for-x86_64-baseos-rpms                        47 k
 python3-nftables                                          x86_64                    1:1.0.4-7.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                        32 k
 python3-perf                                              x86_64                    4.18.0-553.40.1.el8_10                                            rhel-8-for-x86_64-baseos-rpms                        11 M
 python3-pip-wheel                                         noarch                    9.0.3-24.el8                                                      rhel-8-for-x86_64-baseos-rpms                       866 k
 python3-policycoreutils                                   noarch                    2.9-26.el8_10                                                     rhel-8-for-x86_64-baseos-rpms                       2.3 M
 python3-requests                                          noarch                    2.20.0-5.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       126 k
 python3-rpm                                               x86_64                    4.14.3-32.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                       156 k
 python3-setools                                           x86_64                    4.3.0-5.el8                                                       rhel-8-for-x86_64-baseos-rpms                       627 k
 python3-setuptools                                        noarch                    39.2.0-8.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       163 k
 python3-setuptools-wheel                                  noarch                    39.2.0-8.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       289 k
 python3-sssdconfig                                        noarch                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       155 k
 python3-subscription-manager-rhsm                         x86_64                    1.28.42-1.el8                                                     rhel-8-for-x86_64-baseos-rpms                       404 k
 python3-syspurpose                                        x86_64                    1.28.42-1.el8                                                     rhel-8-for-x86_64-baseos-rpms                       342 k
 python3-tracer                                            noarch                    1.1-1.el8                                                         rhel-8-for-x86_64-appstream-rpms                    128 k
 python3-unbound                                           x86_64                    1.16.2-5.8.el8_10                                                 rhel-8-for-x86_64-appstream-rpms                    130 k
 python3-urllib3                                           noarch                    1.24.2-8.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       177 k
 qemu-guest-agent                                          x86_64                    15:6.2.0-53.module+el8.10.0+22375+ea5e8167.2                      rhel-8-for-x86_64-appstream-rpms                    371 k
 realmd                                                    x86_64                    0.17.1-2.el8                                                      rhel-8-for-x86_64-baseos-rpms                       259 k
 redhat-logos                                              x86_64                    84.5-2.el8                                                        rhel-8-for-x86_64-baseos-rpms                       364 k
 redhat-release                                            x86_64                    8.10-0.3.el8                                                      rhel-8-for-x86_64-baseos-rpms                        45 k
 redhat-release-eula                                       x86_64                    8.10-0.3.el8                                                      rhel-8-for-x86_64-baseos-rpms                        21 k
 rhc                                                       x86_64                    1:0.2.5-1.el8_10                                                  rhel-8-for-x86_64-appstream-rpms                     11 M
 rhsm-icons                                                noarch                    1.28.42-1.el8                                                     rhel-8-for-x86_64-baseos-rpms                       295 k
 rpm                                                       x86_64                    4.14.3-32.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                       545 k
 rpm-build-libs                                            x86_64                    4.14.3-32.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                       158 k
 rpm-libs                                                  x86_64                    4.14.3-32.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                       348 k
 rpm-plugin-selinux                                        x86_64                    4.14.3-32.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                        79 k
 rpm-plugin-systemd-inhibit                                x86_64                    4.14.3-32.el8_10                                                  rhel-8-for-x86_64-baseos-rpms                        80 k
 rsync                                                     x86_64                    3.1.3-20.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       410 k
 rsyslog                                                   x86_64                    8.2102.0-15.el8_10.1                                              rhel-8-for-x86_64-appstream-rpms                    755 k
 rsyslog-gnutls                                            x86_64                    8.2102.0-15.el8_10.1                                              rhel-8-for-x86_64-appstream-rpms                     34 k
 rsyslog-gssapi                                            x86_64                    8.2102.0-15.el8_10.1                                              rhel-8-for-x86_64-appstream-rpms                     36 k
 rsyslog-relp                                              x86_64                    8.2102.0-15.el8_10.1                                              rhel-8-for-x86_64-appstream-rpms                     35 k
 runc                                                      x86_64                    1:1.1.12-6.module+el8.10.0+22722+0028f543                         rhel-8-for-x86_64-appstream-rpms                    3.1 M
 samba-client-libs                                         x86_64                    4.19.4-6.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       5.0 M
 samba-common                                              noarch                    4.19.4-6.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       234 k
 samba-common-libs                                         x86_64                    4.19.4-6.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       183 k
 selinux-policy                                            noarch                    3.14.3-139.el8_10.1                                               rhel-8-for-x86_64-baseos-rpms                       670 k
 selinux-policy-targeted                                   noarch                    3.14.3-139.el8_10.1                                               rhel-8-for-x86_64-baseos-rpms                        15 M
 setroubleshoot-server                                     x86_64                    3.3.26-6.el8                                                      rhel-8-for-x86_64-appstream-rpms                    390 k
 shadow-utils                                              x86_64                    2:4.6-22.el8                                                      rhel-8-for-x86_64-baseos-rpms                       1.2 M
 shadow-utils-subid                                        x86_64                    2:4.6-22.el8                                                      rhel-8-for-x86_64-baseos-rpms                       113 k
 shared-mime-info                                          x86_64                    1.9-4.el8                                                         rhel-8-for-x86_64-baseos-rpms                       329 k
 slirp4netns                                               x86_64                    1.2.3-1.module+el8.10.0+22417+2fb00970                            rhel-8-for-x86_64-appstream-rpms                     56 k
 smartmontools                                             x86_64                    1:7.1-3.el8                                                       rhel-8-for-x86_64-baseos-rpms                       558 k
 sos                                                       noarch                    4.8.2-1.el8_10                                                    rhel-8-for-x86_64-baseos-rpms                       956 k
 sqlite                                                    x86_64                    3.26.0-19.el8_9                                                   rhel-8-for-x86_64-baseos-rpms                       669 k
 sqlite-libs                                               x86_64                    3.26.0-19.el8_9                                                   rhel-8-for-x86_64-baseos-rpms                       581 k
 squashfs-tools                                            x86_64                    4.3-21.el8                                                        rhel-8-for-x86_64-baseos-rpms                       165 k
 sssd                                                      x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       120 k
 sssd-ad                                                   x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       315 k
 sssd-client                                               x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       246 k
 sssd-common                                               x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       1.7 M
 sssd-common-pac                                           x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       196 k
 sssd-ipa                                                  x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       380 k
 sssd-kcm                                                  x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       267 k
 sssd-krb5                                                 x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       166 k
 sssd-krb5-common                                          x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       207 k
 sssd-ldap                                                 x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       252 k
 sssd-nfs-idmap                                            x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       131 k
 sssd-proxy                                                x86_64                    2.9.4-5.el8_10.1                                                  rhel-8-for-x86_64-baseos-rpms                       165 k
 strace                                                    x86_64                    5.18-2.1.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       1.4 M
 subscription-manager                                      x86_64                    1.28.42-1.el8                                                     rhel-8-for-x86_64-baseos-rpms                       1.2 M
 subscription-manager-cockpit                              noarch                    1.28.42-1.el8                                                     rhel-8-for-x86_64-baseos-rpms                       869 k
 subscription-manager-rhsm-certificates                    noarch                    20220623-1.el8                                                    rhel-8-for-x86_64-baseos-rpms                        21 k
 sudo                                                      x86_64                    1.9.5p2-1.el8_9                                                   rhel-8-for-x86_64-baseos-rpms                       1.0 M
 systemd                                                   x86_64                    239-82.el8_10.3                                                   rhel-8-for-x86_64-baseos-rpms                       3.6 M
 systemd-libs                                              x86_64                    239-82.el8_10.3                                                   rhel-8-for-x86_64-baseos-rpms                       1.1 M
 systemd-pam                                               x86_64                    239-82.el8_10.3                                                   rhel-8-for-x86_64-baseos-rpms                       514 k
 systemd-udev                                              x86_64                    239-82.el8_10.3                                                   rhel-8-for-x86_64-baseos-rpms                       1.6 M
 tcpdump                                                   x86_64                    14:4.9.3-5.el8                                                    rhel-8-for-x86_64-appstream-rpms                    453 k
 tpm2-tss                                                  x86_64                    2.3.2-6.el8                                                       rhel-8-for-x86_64-baseos-rpms                       275 k
 tracer-common                                             noarch                    1.1-1.el8                                                         rhel-8-for-x86_64-appstream-rpms                     37 k
 trousers                                                  x86_64                    0.3.15-2.el8                                                      rhel-8-for-x86_64-baseos-rpms                       153 k
 trousers-lib                                              x86_64                    0.3.15-2.el8                                                      rhel-8-for-x86_64-baseos-rpms                       168 k
 tuned                                                     noarch                    2.22.1-5.el8_10                                                   rhel-8-for-x86_64-baseos-rpms                       368 k
 tzdata                                                    noarch                    2025a-1.el8                                                       rhel-8-for-x86_64-baseos-rpms                       476 k
 udisks2                                                   x86_64                    2.9.0-16.el8                                                      rhel-8-for-x86_64-appstream-rpms                    475 k
 udisks2-iscsi                                             x86_64                    2.9.0-16.el8                                                      rhel-8-for-x86_64-appstream-rpms                     32 k
 udisks2-lvm2                                              x86_64                    2.9.0-16.el8                                                      rhel-8-for-x86_64-appstream-rpms                     47 k
 unbound-libs                                              x86_64                    1.16.2-5.8.el8_10                                                 rhel-8-for-x86_64-appstream-rpms                    577 k
 unzip                                                     x86_64                    6.0-47.el8_10                                                     rhel-8-for-x86_64-baseos-rpms                       196 k
 util-linux                                                x86_64                    2.32.1-46.el8                                                     rhel-8-for-x86_64-baseos-rpms                       2.5 M
 util-linux-user                                           x86_64                    2.32.1-46.el8                                                     rhel-8-for-x86_64-baseos-rpms                       103 k
 vdo                                                       x86_64                    6.2.11.5-14.el8_10                                                rhel-8-for-x86_64-baseos-rpms                       668 k
 virt-what                                                 x86_64                    1.25-4.el8                                                        rhel-8-for-x86_64-baseos-rpms                        38 k
 volume_key-libs                                           x86_64                    0.3.11-6.el8                                                      rhel-8-for-x86_64-appstream-rpms                    149 k
 wget                                                      x86_64                    1.19.5-12.el8_10                                                  rhel-8-for-x86_64-appstream-rpms                    734 k
 which                                                     x86_64                    2.21-20.el8                                                       rhel-8-for-x86_64-baseos-rpms                        50 k
 xfsdump                                                   x86_64                    3.1.8-7.el8_9                                                     rhel-8-for-x86_64-baseos-rpms                       333 k
 xfsprogs                                                  x86_64                    5.0.0-12.el8                                                      rhel-8-for-x86_64-baseos-rpms                       1.1 M
 yum                                                       noarch                    4.7.0-20.el8                                                      rhel-8-for-x86_64-baseos-rpms                       209 k
 zlib                                                      x86_64                    1.2.11-25.el8                                                     rhel-8-for-x86_64-baseos-rpms                       103 k
Installing dependencies:
 dnsmasq                                                   x86_64                    2.79-33.el8_10                                                    rhel-8-for-x86_64-appstream-rpms                    324 k
 grub2-tools-efi                                           x86_64                    1:2.02-160.el8_10                                                 rhel-8-for-x86_64-baseos-rpms                       481 k
 kernel-core                                               x86_64                    4.18.0-553.40.1.el8_10                                            rhel-8-for-x86_64-baseos-rpms                        44 M
 kernel-modules                                            x86_64                    4.18.0-553.40.1.el8_10                                            rhel-8-for-x86_64-baseos-rpms                        36 M
 podman-plugins                                            x86_64                    4:4.9.4-19.module+el8.10.0+22744+7794713b                         rhel-8-for-x86_64-appstream-rpms                    1.4 M
 python3-distro                                            noarch                    1.4.0-2.module+el8.10.0+20784+edafcd43                            rhel-8-for-x86_64-appstream-rpms                     37 k
Installing weak dependencies:
 podman-gvproxy                                            x86_64                    4:4.9.4-19.module+el8.10.0+22744+7794713b                         rhel-8-for-x86_64-appstream-rpms                    4.0 M
Enabling module streams:
 python36                                                                            3.6                                                                                                                        

Transaction Summary
=================================================================================================================================================================================================================
Install    8 Packages
Upgrade  356 Packages

Total download size: 803 M
Is this ok [y/N]: y

Once the patch is done, reboot the system.

Verify the status on Satellite!

rhel8 patched satellite

And that is all. You have successfully registered RHEL hosts and patched them via Satellite.

Conclusion

In conclusion, the process of registering and patching RHEL hosts using Red Hat Satellite involves several manual steps, including ensuring proper prerequisites, generating registration commands, installing necessary agents, and applying updates through yum or Satellite’s errata management features. While this guide walked you through a hands-on approach to achieve these tasks, it is important to note that the entire workflow can be significantly streamlined and automated using Ansible.

We will cover the automation process in the next guide.

SUPPORT US VIA A VIRTUAL CUP OF COFFEE

We're passionate about sharing our knowledge and experiences with you through our blog. If you appreciate our efforts, consider buying us a virtual coffee. Your support keeps us motivated and enables us to continually improve, ensuring that we can provide you with the best content possible. Thank you for being a coffee-fueled champion of our work!

Photo of author
Kifarunix
Linux Certified Engineer, with a passion for open-source technology and a strong understanding of Linux systems. With experience in system administration, troubleshooting, and automation, I am skilled in maintaining and optimizing Linux infrastructure.

Leave a Comment