Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save avary/94a3ec572574763dd7ba60dcb5f7ce29 to your computer and use it in GitHub Desktop.

Select an option

Save avary/94a3ec572574763dd7ba60dcb5f7ce29 to your computer and use it in GitHub Desktop.
Notes about installing AlmaLinux 8 and making customisation's

0. Introduction

Describes notes made about installing AlmaLinux 8, and making customisations as required. The installation was performed on a HP Z640 workstation, and to avoid changing the Windows and Ubuntu installations on the existing RAID arrays used a USB external disk as the target for the AlmaLinux installation.

1. Creation of install media and initial installation.

The full DVD ISO image was downloaded from AlmaLinux-8.4-x86_64-dvd.iso

Followed the instructions at Installation instructions to verify the checksum of the downloaded ISO which was succesful in that the SHA256 of the ISO file matched the expected value:

$ sha256sum AlmaLinux-8.4-x86_64-dvd.iso 
4dd2f7c558bfa34d9a5e71d5add2c77c59fdec58076678a381d9dfd0f9583a51  AlmaLinux-8.4-x86_64-dvd.iso
$ cat CHECKSUM | grep -E 'SHA256.*dvd.iso' 
SHA256 (AlmaLinux-8.4-x86_64-dvd.iso) = 4dd2f7c558bfa34d9a5e71d5add2c77c59fdec58076678a381d9dfd0f9583a51

1.1 Initial failed installation attempt using a SD card in a USB adapter

As the ISO file is 9.2G, didn't have any DVD media large enough. Therefore, followed the instructions at How to Make a Bootable USB Drive With dd to use dd to copy the ISO image to a brand new Kingston 64GB SD card, fitted in a USB 2 adapter (didn't save the console output):

$ sudo dd bs=4M if=AlmaLinux-8.4-x86_64-dvd.iso of=/dev/sdc conv=fdatasync

While the Ubuntu 18.04.6 LTS installation used to download the ISO image on has the Startup Disk Creator graphical utility, that utility didn't seem to accept an ISO installation image which isn't for Ubuntu - after using the Other button button to select the AlmaLinux .iso file it didn't show up in the list of Source Disk Images.

The AlmaLinux installer was able to boot from the SD card, but on attempting to perform the installation failed with a Some packages from local repository have incorrect checksum error from Python. The exact error output wasn't saved.

Googling found the error about incorrect checksums for the local repository can be caused by bad media. Used BeyondCompare to perform a binary comparison of the ISO file and the contents of the mounted SD card. BeyondCompare reported:

  • 7828 same files.
  • 1 different file - Packages/unixODBC-devel-2.3.7-1.el8.i686.rpm. The first difference shows up at byte 0x11B within the 65,176 byte file
  • 2 orphan files - since the [BOOT] directory in the ISO image doesn't showup on the mounted SD card.

Since the BeyondCompare comparison shows one rpm hasn't been copied to the SD card correctly that probably explains the errors from the installer.

Used the comparison described in How to check if the ISO was written to my USB stick without errors? which reported a failure:

$ sudo cmp -n `stat -c '%s' AlmaLinux-8.4-x86_64-dvd.iso` AlmaLinux-8.4-x86_64-dvd.iso /dev/sdc
[sudo] password for mr_halfword: 
AlmaLinux-8.4-x86_64-dvd.iso /dev/sdc differ: byte 12130387, line 39761

1.2. Second failed attempt to create a usable SD card

Run dd:

$ sudo dd bs=4M if=AlmaLinux-8.4-x86_64-dvd.iso of=/dev/sdc conv=fdatasync
2336+1 records in
2336+1 records out
9801039872 bytes (9.8 GB, 9.1 GiB) copied, 942.207 s, 10.4 MB/s

Ejected the SD card, and then re-inserted it. Ran the comparison again which this time didn't report any difference:

$ sudo cmp -n `stat -c '%s' AlmaLinux-8.4-x86_64-dvd.iso` AlmaLinux-8.4-x86_64-dvd.iso /dev/sdc
[sudo] password for mr_halfword: 

While the comparison this time reported a match, the BeyondCompare comparison of the .iso file any mounted SD card still reported an apparent difference in the same unixODBC-devel-2.3.7-1.el8.i686.rpm file at the same byte offset as before. If use BeyondCompare 4.4.1 to the contents of the unixODBC-devel-2.3.7-1.el8.i686.rpm file:

  • The one in the .iso file appears to a i686 package as expected from the filename, as can see a /files/usr/include/unixodbc_conf-i386.h file and a /files/usr/lib directory.
  • Whereas in the mounted SD card what BeyondCompare is showing a /files/usr/include/unixodbc_conf-x86_64.h file and a /files/usr/lib64 directory which are actually from a x86_64 package.

The Ubuntu Archive Manager showed the same inconsistent contents of the unixODBC-devel-2.3.7-1.el8.i686.rpm file as BeyondCompare. After fiddling around and using a different USB port and a micro SD adapter BeyondCompare no longer reported an difference and the Archive Manager no longer reported any inconsistency. Not sure what the original issue was.

However, the install attempt still failed with an error about incorrect package checksums.

1.3. Using a USB3 stick was able to create install media from which could perform an installation

Found a 32GB SanDisk USB3 stick, and wrote the ISO image at a faster rate:

$ sudo dd bs=4M if=AlmaLinux-8.4-x86_64-dvd.iso of=/dev/sdc conv=fdatasync
[sudo] password for mr_halfword: 
2336+1 records in
2336+1 records out
9801039872 bytes (9.8 GB, 9.1 GiB) copied, 432.644 s, 22.7 MB/s

Ejected the stick, re-inserted and ran the comparison which iostat -x 5 reported a read speed of ~120MB/s:

$ time sudo cmp -n `stat -c '%s' AlmaLinux-8.4-x86_64-dvd.iso` AlmaLinux-8.4-x86_64-dvd.iso /dev/sdc

real	1m20.654s
user	0m5.947s
sys	0m11.110s

With the above, was successful able to install AlmaLinux, for which just accepted the defaults.

2. Configuration changes following installation with the defaults

2.1 Wired Ethernet connection changes

The default for the 1G Wired Ethernet connection after installation was:

  • Not connected automatically
  • Used DHCP

Made the following changes in the Wired settings:

  • Under Details selected Connect Automatically.
  • Under IPv4 changed the IPv4 Method from Automatic (DHCP) to Manual
  • Under IPv4 added a static IP address
  • Under IPv4 set the DNS to be the IP address of the default gateway.

2.2 Correct time zone

In the Settings under Date & Time changed the Time Zone from EST (New York, United States) to GMT (London, United Kingdom.

2.3 Set hostname

During the initiall installation a hostname wasn't set, which caused the hostname to be reported of the form Unknown-<mac_address>

Under Settings -> Sharing set the Computer Name to Haswell_Alma and now:

[mr_halfword@haswell-alma ~]$ hostname
haswell-alma

2.4 repolist are set to the Internet

During the original installation the packages were on a USB stick. After installation the enabled repolist points at Internet servers:

[mr_halfword@haswell-alma ~]$ yum repolist --all -v
Loaded plugins: builddep, changelog, config-manager, copr, debug, debuginfo-install, download, generate_completion_cache, groups-manager, needs-restarting, playground, repoclosure, repodiff, repograph, repomanage, reposync
YUM version: 4.4.2
cachedir: /var/tmp/dnf-mr_halfword-ksg11zaj
Last metadata expiration check: 0:15:27 ago on Sun 30 Jan 2022 10:43:29 GMT.
Repo-id            : appstream
Repo-name          : AlmaLinux 8 - AppStream
Repo-status        : enabled
Repo-revision      : 1643358234
Repo-updated       : Fri 28 Jan 2022 08:23:54 GMT
Repo-pkgs          : 6,840
Repo-available-pkgs: 5,809
Repo-size          : 13 G
Repo-mirrors       : https://mirrors.almalinux.org/mirrorlist/8/appstream
Repo-baseurl       : http://mirrors.coreix.net/almalinux/8/AppStream/x86_64/os/
                   : (9 more)
Repo-expire        : 172,800 second(s) (last: Sun 30 Jan 2022 10:43:26 GMT)
Repo-filename      : /etc/yum.repos.d/almalinux.repo

Repo-id            : appstream-debuginfo
Repo-name          : AlmaLinux 8 - AppStream debuginfo
Repo-status        : disabled
Repo-mirrors       : https://mirrors.almalinux.org/mirrorlist/8/appstream-debuginfo
Repo-expire        : 172,800 second(s) (last: unknown)
Repo-filename      : /etc/yum.repos.d/almalinux.repo

Repo-id            : appstream-source
Repo-name          : AlmaLinux 8 - AppStream Source
Repo-status        : disabled
Repo-mirrors       : https://mirrors.almalinux.org/mirrorlist/8/appstream-source
Repo-expire        : 172,800 second(s) (last: unknown)
Repo-filename      : /etc/yum.repos.d/almalinux.repo

Repo-id            : baseos
Repo-name          : AlmaLinux 8 - BaseOS
Repo-status        : enabled
Repo-revision      : 1643182331
Repo-updated       : Wed 26 Jan 2022 07:32:11 GMT
Repo-pkgs          : 1,941
Repo-available-pkgs: 1,939
Repo-size          : 2.5 G
Repo-mirrors       : https://mirrors.almalinux.org/mirrorlist/8/baseos
Repo-baseurl       : http://mirrors.coreix.net/almalinux/8/BaseOS/x86_64/os/ (9
                   : more)
Repo-expire        : 172,800 second(s) (last: Sun 30 Jan 2022 10:43:24 GMT)
Repo-filename      : /etc/yum.repos.d/almalinux.repo

Repo-id            : baseos-debuginfo
Repo-name          : AlmaLinux 8 - BaseOS debuginfo
Repo-status        : disabled
Repo-mirrors       : https://mirrors.almalinux.org/mirrorlist/8/baseos-debuginfo
Repo-expire        : 172,800 second(s) (last: unknown)
Repo-filename      : /etc/yum.repos.d/almalinux.repo

Repo-id            : baseos-source
Repo-name          : AlmaLinux 8 - BaseOS Source
Repo-status        : disabled
Repo-mirrors       : https://mirrors.almalinux.org/mirrorlist/8/baseos-source
Repo-expire        : 172,800 second(s) (last: unknown)
Repo-filename      : /etc/yum.repos.d/almalinux.repo

Repo-id            : extras
Repo-name          : AlmaLinux 8 - Extras
Repo-status        : enabled
Repo-revision      : 8.5
Repo-distro-tags      : [cpe:/o:almalinux:almalinux:8]:  , 8, A, L, a, i, l, m,
                      : n, u, x
Repo-updated       : Thu 11 Nov 2021 16:40:51 GMT
Repo-pkgs          : 34
Repo-available-pkgs: 34
Repo-size          : 525 k
Repo-mirrors       : https://mirrors.almalinux.org/mirrorlist/8/extras
Repo-baseurl       : http://mirrors.coreix.net/almalinux/8/extras/x86_64/os/ (9
                   : more)
Repo-expire        : 172,800 second(s) (last: Sun 30 Jan 2022 10:43:29 GMT)
Repo-filename      : /etc/yum.repos.d/almalinux.repo

Repo-id            : extras-debuginfo
Repo-name          : AlmaLinux 8 - Extras debuginfo
Repo-status        : disabled
Repo-mirrors       : https://mirrors.almalinux.org/mirrorlist/8/extras-debuginfo
Repo-expire        : 172,800 second(s) (last: unknown)
Repo-filename      : /etc/yum.repos.d/almalinux.repo

Repo-id            : extras-source
Repo-name          : AlmaLinux 8 - Extras Source
Repo-status        : disabled
Repo-mirrors       : https://mirrors.almalinux.org/mirrorlist/8/extras-source
Repo-expire        : 172,800 second(s) (last: unknown)
Repo-filename      : /etc/yum.repos.d/almalinux.repo

Repo-id            : ha
Repo-name          : AlmaLinux 8 - HighAvailability
Repo-status        : disabled
Repo-mirrors       : https://mirrors.almalinux.org/mirrorlist/8/ha
Repo-expire        : 172,800 second(s) (last: unknown)
Repo-filename      : /etc/yum.repos.d/almalinux-ha.repo

Repo-id            : ha-debuginfo
Repo-name          : AlmaLinux 8 - HighAvailability debuginfo
Repo-status        : disabled
Repo-mirrors       : https://mirrors.almalinux.org/mirrorlist/8/ha-debuginfo
Repo-expire        : 172,800 second(s) (last: unknown)
Repo-filename      : /etc/yum.repos.d/almalinux-ha.repo

Repo-id            : ha-source
Repo-name          : AlmaLinux 8 - HighAvailability Source
Repo-status        : disabled
Repo-mirrors       : https://mirrors.almalinux.org/mirrorlist/8/ha-source
Repo-expire        : 172,800 second(s) (last: unknown)
Repo-filename      : /etc/yum.repos.d/almalinux-ha.repo

Repo-id            : powertools
Repo-name          : AlmaLinux 8 - PowerTools
Repo-status        : disabled
Repo-mirrors       : https://mirrors.almalinux.org/mirrorlist/8/powertools
Repo-expire        : 172,800 second(s) (last: unknown)
Repo-filename      : /etc/yum.repos.d/almalinux-powertools.repo

Repo-id            : powertools-debuginfo
Repo-name          : AlmaLinux 8 - PowerTools debuginfo
Repo-status        : disabled
Repo-mirrors       : https://mirrors.almalinux.org/mirrorlist/8/powertools-debuginfo
Repo-expire        : 172,800 second(s) (last: unknown)
Repo-filename      : /etc/yum.repos.d/almalinux-powertools.repo

Repo-id            : powertools-source
Repo-name          : AlmaLinux 8 - PowerTools Source
Repo-status        : disabled
Repo-mirrors       : https://mirrors.almalinux.org/mirrorlist/8/powertools-source
Repo-expire        : 172,800 second(s) (last: unknown)
Repo-filename      : /etc/yum.repos.d/almalinux-powertools.repo
Total packages: 8,815

As the computer is connected to the internet, will leave the repolist alone rather than pointing to local media.

3. ConnectX-2 is not supported in the pre-compiled Kernel modules

After installation the Kernel version and release versions were:

[mr_halfword@haswell-alma ~]$ uname -a
Linux haswell-alma 4.18.0-305.el8.x86_64 #1 SMP Wed May 19 18:55:28 EDT 2021 x86_64 x86_64 x86_64 GNU/Linux
[mr_halfword@haswell-alma ~]$ cat /etc/redhat-release 
AlmaLinux release 8.4 (Electric Cheetah)

Installed libibverbs-utils to get user space utilities and libraries:

[mr_halfword@haswell-alma ~]$ sudo yum install libibverbs-utils
[sudo] password for mr_halfword: 
determining the fastest mirror (10 hosts).. done..9 kB/s | 623  B     00:00 ETA
AlmaLinux 8 - BaseOS                            3.5 MB/s | 5.8 MB     00:01    
determining the fastest mirror (2 hosts).. done.710  B/s | 646  B     00:00 ETA
AlmaLinux 8 - AppStream                         3.2 MB/s | 8.9 MB     00:02    
determining the fastest mirror (2 hosts).. done.---  B/s |   0  B     --:-- ETA
AlmaLinux 8 - Extras                             10 kB/s |  12 kB     00:01    
Last metadata expiration check: 0:00:01 ago on Sun 30 Jan 2022 11:11:42 GMT.
Dependencies resolved.
================================================================================
 Package                 Architecture  Version              Repository     Size
================================================================================
Installing:
 libibverbs-utils        x86_64        35.0-1.el8           baseos         81 k
Upgrading:
 libibumad               x86_64        35.0-1.el8           baseos         32 k
 libibverbs              x86_64        35.0-1.el8           baseos        334 k
 librdmacm               x86_64        35.0-1.el8           baseos         76 k
 rdma-core               x86_64        35.0-1.el8           baseos         58 k

Transaction Summary
================================================================================
Install  1 Package
Upgrade  4 Packages

Total download size: 582 k
Is this ok [y/N]: y
Downloading Packages:
done.inux 8 - BaseOS100% [====================] 1.6 kB/s | 623  B     00:00 ETA
(1/5): libibumad-35.0-1.el8.x86_64.rpm          630 kB/s |  32 kB     00:00    
(2/5): libibverbs-utils-35.0-1.el8.x86_64.rpm   1.3 MB/s |  81 kB     00:00    
(3/5): rdma-core-35.0-1.el8.x86_64.rpm          2.7 MB/s |  58 kB     00:00    
(4/5): librdmacm-35.0-1.el8.x86_64.rpm          2.1 MB/s |  76 kB     00:00    
(5/5): libibverbs-35.0-1.el8.x86_64.rpm         2.8 MB/s | 334 kB     00:00    
--------------------------------------------------------------------------------
Total                                           1.1 MB/s | 582 kB     00:00     
warning: /var/cache/dnf/baseos-a4ba83fa826b3b88/packages/libibverbs-utils-35.0-1.el8.x86_64.rpm: Header V4 RSA/SHA256 Signature, key ID c21ad6ea: NOKEY
AlmaLinux 8 - BaseOS                            616 kB/s | 3.4 kB     00:00    
Importing GPG key 0xC21AD6EA:
 Userid     : "AlmaLinux <[email protected]>"
 Fingerprint: E53C F5EF 91CE B0AD 1812 ECB8 51D6 647E C21A D6EA
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux
Is this ok [y/N]: y
Key imported successfully
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Running scriptlet: rdma-core-35.0-1.el8.x86_64                            1/1 
  Upgrading        : rdma-core-35.0-1.el8.x86_64                            1/9 
  Running scriptlet: rdma-core-35.0-1.el8.x86_64                            1/9 
  Upgrading        : libibverbs-35.0-1.el8.x86_64                           2/9 
  Running scriptlet: libibverbs-35.0-1.el8.x86_64                           2/9 
  Installing       : libibverbs-utils-35.0-1.el8.x86_64                     3/9 
  Upgrading        : librdmacm-35.0-1.el8.x86_64                            4/9 
  Running scriptlet: librdmacm-35.0-1.el8.x86_64                            4/9 
  Upgrading        : libibumad-35.0-1.el8.x86_64                            5/9 
  Running scriptlet: libibumad-35.0-1.el8.x86_64                            5/9 
  Cleanup          : librdmacm-32.0-4.el8.x86_64                            6/9 
  Running scriptlet: librdmacm-32.0-4.el8.x86_64                            6/9 
  Cleanup          : libibverbs-32.0-4.el8.x86_64                           7/9 
  Running scriptlet: libibverbs-32.0-4.el8.x86_64                           7/9 
  Cleanup          : libibumad-32.0-4.el8.x86_64                            8/9 
  Running scriptlet: libibumad-32.0-4.el8.x86_64                            8/9 
  Cleanup          : rdma-core-32.0-4.el8.x86_64                            9/9 
  Running scriptlet: rdma-core-32.0-4.el8.x86_64                            9/9 
  Verifying        : libibverbs-utils-35.0-1.el8.x86_64                     1/9 
  Verifying        : libibumad-35.0-1.el8.x86_64                            2/9 
  Verifying        : libibumad-32.0-4.el8.x86_64                            3/9 
  Verifying        : libibverbs-35.0-1.el8.x86_64                           4/9 
  Verifying        : libibverbs-32.0-4.el8.x86_64                           5/9 
  Verifying        : librdmacm-35.0-1.el8.x86_64                            6/9 
  Verifying        : librdmacm-32.0-4.el8.x86_64                            7/9 
  Verifying        : rdma-core-35.0-1.el8.x86_64                            8/9 
  Verifying        : rdma-core-32.0-4.el8.x86_64                            9/9 

Upgraded:
  libibumad-35.0-1.el8.x86_64            libibverbs-35.0-1.el8.x86_64           
  librdmacm-35.0-1.el8.x86_64            rdma-core-35.0-1.el8.x86_64            
Installed:
  libibverbs-utils-35.0-1.el8.x86_64                                            

Complete!

The PC has a Mellanox ConnectX-2 VPI card fitted which was usable under Ubuntu 18.04. However, under AlmaLinux no Kernel modules / drivers are being loaded resulting in:

  • The ConnectX-2 isn't shown by ip link
  • ibv_devinfo reports No IB devices found

modinfo mlx4_core isn't showing the 15b3:0036 PCI vendor / device ID for the ConnectX-2, which explains why there are no drivers loaded for it.

The following shows that the mlx4 Kernel modules haven't been compiled with support for the Old ConnectX-2 hardware:

[mr_halfword@haswell-alma ~]$ grep MLX4_CORE /boot/config-`uname -r`
CONFIG_MLX4_CORE=m
# CONFIG_MLX4_CORE_GEN2 is not set

4. Compilation of RDMA Driver for the Intel E810 adapters

The installed 4.18.0-305.el8.x86_64 Kernel has the ice.ko.xz module for the Intel(R) Ethernet Connection E800 Series Linux Driver, but not the irmda.ko module for RDMA support.

The purpose of this section is to try compiling and installing the RDMA Kernel module and rdma-core user space support for the Intel® Ethernet Network Adapter E810-2CQDA2

4.1 Downloaded files

Linux* RDMA Driver for the E810 and X722 Intel® Ethernet Controllers has the download links and readme files.

Downloaded the following:

  • irdma-1.7.72.tgz
  • readmefirst.txt
  • README_irdma.txt

Which were saved in ~/E810-2CQDA2

4.2 TBD about the need to build the ice driver from source

Both the web page linked in 4.1 and the README_irdma.txt file have the following note:

For both Intel Ethernet 800 Series and X722, the corresponding LAN driver (ice or i40e) must be built from source included in this release and installed on your system prior to installing irdma.

However, within the irdma-1.7.72.tgz there is no obvious source for the ice driver. Therefor, will try and continue just building the irdma driver.

4.3 Install build prerequisites as listed in README_irdma.txt

The Prerequisites section of README_irdma.txt says install the required packages as described in the Building section of the readme for rdma-core v35.0. Since are using AlmaLinux which is based upon RHEL follow the steps in Building on CentOS 6/7, Amazon Linux 1/2.

The required packages:

$ sudo yum install cmake gcc libnl3-devel libudev-devel make pkgconfig valgrind-devel
[sudo] password for mr_halfword: 
Last metadata expiration check: 3:05:17 ago on Sun 30 Jan 2022 11:11:42 GMT.
Package pkgconf-pkg-config-1.4.2-1.el8.x86_64 is already installed.
Dependencies resolved.
================================================================================
 Package               Arch       Version                   Repository     Size
================================================================================
Installing:
 cmake                 x86_64     3.20.2-4.el8              appstream      12 M
 gcc                   x86_64     8.5.0-4.el8_5.alma        appstream      23 M
 libnl3-devel          x86_64     3.5.0-1.el8               baseos         83 k
 make                  x86_64     1:4.2.1-10.el8            baseos        498 k
 systemd-devel         x86_64     239-51.el8_5.3            baseos        386 k
 valgrind-devel        x86_64     1:3.17.0-5.el8            appstream      92 k
Upgrading:
 glibc                 x86_64     2.28-164.el8              baseos        3.6 M
 glibc-common          x86_64     2.28-164.el8              baseos        1.3 M
 glibc-langpack-en     x86_64     2.28-164.el8              baseos        827 k
 libgcc                x86_64     8.5.0-4.el8_5.alma        baseos         78 k
 libgomp               x86_64     8.5.0-4.el8_5.alma        baseos        205 k
 libxcrypt             x86_64     4.1.1-6.el8               baseos         72 k
 systemd               x86_64     239-51.el8_5.3            baseos        3.6 M
 systemd-container     x86_64     239-51.el8_5.3            baseos        751 k
 systemd-libs          x86_64     239-51.el8_5.3            baseos        1.1 M
 systemd-pam           x86_64     239-51.el8_5.3            baseos        476 k
 systemd-udev          x86_64     239-51.el8_5.3            baseos        1.6 M
Installing dependencies:
 cmake-data            noarch     3.20.2-4.el8              appstream     1.7 M
 cmake-filesystem      x86_64     3.20.2-4.el8              appstream      43 k
 cmake-rpm-macros      noarch     3.20.2-4.el8              appstream      43 k
 cpp                   x86_64     8.5.0-4.el8_5.alma        appstream      10 M
 glibc-devel           x86_64     2.28-164.el8              baseos        1.0 M
 glibc-headers         x86_64     2.28-164.el8              baseos        479 k
 isl                   x86_64     0.16.1-6.el8              appstream     841 k
 kernel-headers        x86_64     4.18.0-348.12.2.el8_5     baseos        8.3 M
 libuv                 x86_64     1:1.41.1-1.el8_4          appstream     155 k
 libxcrypt-devel       x86_64     4.1.1-6.el8               baseos         24 k
 valgrind              x86_64     1:3.17.0-5.el8            appstream      11 M

Transaction Summary
================================================================================
Install  17 Packages
Upgrade  11 Packages

Total download size: 84 M
Is this ok [y/N]: y
Downloading Packages:
determining the fastest mirror (4 hosts).. done.756  B/s | 654  B     00:00 ETA
(1/28): glibc-headers-2.28-164.el8.x86_64.rpm   1.8 MB/s | 479 kB     00:00    
(2/28): libnl3-devel-3.5.0-1.el8.x86_64.rpm     2.3 MB/s |  83 kB     00:00    
(3/28): libxcrypt-devel-4.1.1-6.el8.x86_64.rpm  867 kB/s |  24 kB     00:00    
(4/28): glibc-devel-2.28-164.el8.x86_64.rpm     2.9 MB/s | 1.0 MB     00:00    
(5/28): systemd-devel-239-51.el8_5.3.x86_64.rpm 3.3 MB/s | 386 kB     00:00    
(6/28): make-4.2.1-10.el8.x86_64.rpm            2.4 MB/s | 498 kB     00:00    
(7/28): cmake-data-3.20.2-4.el8.noarch.rpm      2.5 MB/s | 1.7 MB     00:00    
(8/28): cmake-filesystem-3.20.2-4.el8.x86_64.rp 836 kB/s |  43 kB     00:00    
(9/28): cmake-rpm-macros-3.20.2-4.el8.noarch.rp 823 kB/s |  43 kB     00:00    
(10/28): cmake-3.20.2-4.el8.x86_64.rpm          3.9 MB/s |  12 MB     00:03    
(11/28): cpp-8.5.0-4.el8_5.alma.x86_64.rpm      2.3 MB/s |  10 MB     00:04    
(12/28): isl-0.16.1-6.el8.x86_64.rpm            2.0 MB/s | 841 kB     00:00    
(13/28): libuv-1.41.1-1.el8_4.x86_64.rpm        1.6 MB/s | 155 kB     00:00    
(14/28): kernel-headers-4.18.0-348.12.2.el8_5.x 1.2 MB/s | 8.3 MB     00:06    
(15/28): valgrind-devel-3.17.0-5.el8.x86_64.rpm 1.0 MB/s |  92 kB     00:00    
(16/28): gcc-8.5.0-4.el8_5.alma.x86_64.rpm      4.3 MB/s |  23 MB     00:05    
(17/28): glibc-common-2.28-164.el8.x86_64.rpm   4.0 MB/s | 1.3 MB     00:00    
(18/28): glibc-langpack-en-2.28-164.el8.x86_64. 3.6 MB/s | 827 kB     00:00    
(19/28): libgcc-8.5.0-4.el8_5.alma.x86_64.rpm   2.3 MB/s |  78 kB     00:00    
(20/28): libgomp-8.5.0-4.el8_5.alma.x86_64.rpm  2.7 MB/s | 205 kB     00:00    
(21/28): libxcrypt-4.1.1-6.el8.x86_64.rpm       2.0 MB/s |  72 kB     00:00    
(22/28): glibc-2.28-164.el8.x86_64.rpm          1.2 MB/s | 3.6 MB     00:02    
(23/28): systemd-container-239-51.el8_5.3.x86_6 1.3 MB/s | 751 kB     00:00    
(24/28): systemd-239-51.el8_5.3.x86_64.rpm      4.0 MB/s | 3.6 MB     00:00    
(25/28): systemd-pam-239-51.el8_5.3.x86_64.rpm  3.4 MB/s | 476 kB     00:00    
(26/28): systemd-udev-239-51.el8_5.3.x86_64.rpm 3.9 MB/s | 1.6 MB     00:00    
(27/28): valgrind-3.17.0-5.el8.x86_64.rpm       2.3 MB/s |  11 MB     00:04    
(28/28): systemd-libs-239-51.el8_5.3.x86_64.rpm 1.5 MB/s | 1.1 MB     00:00    
--------------------------------------------------------------------------------
Total                                           5.9 MB/s |  84 MB     00:14     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Running scriptlet: glibc-common-2.28-164.el8.x86_64                       1/1 
  Upgrading        : glibc-common-2.28-164.el8.x86_64                      1/39 
  Upgrading        : glibc-langpack-en-2.28-164.el8.x86_64                 2/39 
  Running scriptlet: glibc-2.28-164.el8.x86_64                             3/39 
  Upgrading        : glibc-2.28-164.el8.x86_64                             3/39 
  Running scriptlet: glibc-2.28-164.el8.x86_64                             3/39 
  Upgrading        : libgcc-8.5.0-4.el8_5.alma.x86_64                      4/39 
  Running scriptlet: libgcc-8.5.0-4.el8_5.alma.x86_64                      4/39 
  Upgrading        : systemd-libs-239-51.el8_5.3.x86_64                    5/39 
  Running scriptlet: systemd-libs-239-51.el8_5.3.x86_64                    5/39 
  Upgrading        : libxcrypt-4.1.1-6.el8.x86_64                          6/39 
  Running scriptlet: systemd-239-51.el8_5.3.x86_64                         7/39 
  Upgrading        : systemd-239-51.el8_5.3.x86_64                         7/39 
  Running scriptlet: systemd-239-51.el8_5.3.x86_64                         7/39 
  Upgrading        : systemd-pam-239-51.el8_5.3.x86_64                     8/39 
  Installing       : cmake-rpm-macros-3.20.2-4.el8.noarch                  9/39 
  Installing       : cmake-filesystem-3.20.2-4.el8.x86_64                 10/39 
  Installing       : kernel-headers-4.18.0-348.12.2.el8_5.x86_64          11/39 
  Running scriptlet: glibc-headers-2.28-164.el8.x86_64                    12/39 
  Installing       : glibc-headers-2.28-164.el8.x86_64                    12/39 
  Installing       : libxcrypt-devel-4.1.1-6.el8.x86_64                   13/39 
  Installing       : glibc-devel-2.28-164.el8.x86_64                      14/39 
  Running scriptlet: glibc-devel-2.28-164.el8.x86_64                      14/39 
  Installing       : valgrind-1:3.17.0-5.el8.x86_64                       15/39 
  Installing       : make-1:4.2.1-10.el8.x86_64                           16/39 
  Running scriptlet: make-1:4.2.1-10.el8.x86_64                           16/39 
  Installing       : cpp-8.5.0-4.el8_5.alma.x86_64                        17/39 
  Running scriptlet: cpp-8.5.0-4.el8_5.alma.x86_64                        17/39 
  Installing       : isl-0.16.1-6.el8.x86_64                              18/39 
  Running scriptlet: isl-0.16.1-6.el8.x86_64                              18/39 
  Installing       : libuv-1:1.41.1-1.el8_4.x86_64                        19/39 
  Installing       : cmake-data-3.20.2-4.el8.noarch                       20/39 
  Installing       : cmake-3.20.2-4.el8.x86_64                            21/39 
  Upgrading        : libgomp-8.5.0-4.el8_5.alma.x86_64                    22/39 
  Running scriptlet: libgomp-8.5.0-4.el8_5.alma.x86_64                    22/39 
  Installing       : gcc-8.5.0-4.el8_5.alma.x86_64                        23/39 
  Running scriptlet: gcc-8.5.0-4.el8_5.alma.x86_64                        23/39 
  Installing       : valgrind-devel-1:3.17.0-5.el8.x86_64                 24/39 
  Installing       : libnl3-devel-3.5.0-1.el8.x86_64                      25/39 
  Installing       : systemd-devel-239-51.el8_5.3.x86_64                  26/39 
  Upgrading        : systemd-container-239-51.el8_5.3.x86_64              27/39 
  Upgrading        : systemd-udev-239-51.el8_5.3.x86_64                   28/39 
  Running scriptlet: systemd-udev-239-51.el8_5.3.x86_64                   28/39 
  Cleanup          : systemd-container-239-45.el8.x86_64                  29/39 
  Cleanup          : systemd-udev-239-45.el8.x86_64                       30/39 
  Running scriptlet: systemd-udev-239-45.el8.x86_64                       30/39 
  Running scriptlet: systemd-239-45.el8.x86_64                            31/39 
  Cleanup          : systemd-239-45.el8.x86_64                            31/39 
  Cleanup          : systemd-libs-239-45.el8.x86_64                       32/39 
  Cleanup          : systemd-pam-239-45.el8.x86_64                        33/39 
  Running scriptlet: libgomp-8.4.1-1.el8.alma.x86_64                      34/39 
  Cleanup          : libgomp-8.4.1-1.el8.alma.x86_64                      34/39 
  Running scriptlet: libgomp-8.4.1-1.el8.alma.x86_64                      34/39 
  Cleanup          : libxcrypt-4.1.1-4.el8.x86_64                         35/39 
  Cleanup          : glibc-2.28-151.el8.x86_64                            36/39 
  Cleanup          : glibc-langpack-en-2.28-151.el8.x86_64                37/39 
  Cleanup          : glibc-common-2.28-151.el8.x86_64                     38/39 
  Cleanup          : libgcc-8.4.1-1.el8.alma.x86_64                       39/39 
  Running scriptlet: libgcc-8.4.1-1.el8.alma.x86_64                       39/39 
  Running scriptlet: glibc-common-2.28-164.el8.x86_64                     39/39 
  Running scriptlet: systemd-239-51.el8_5.3.x86_64                        39/39 
  Running scriptlet: systemd-udev-239-51.el8_5.3.x86_64                   39/39 
  Verifying        : glibc-devel-2.28-164.el8.x86_64                       1/39 
  Verifying        : glibc-headers-2.28-164.el8.x86_64                     2/39 
  Verifying        : kernel-headers-4.18.0-348.12.2.el8_5.x86_64           3/39 
  Verifying        : libnl3-devel-3.5.0-1.el8.x86_64                       4/39 
  Verifying        : libxcrypt-devel-4.1.1-6.el8.x86_64                    5/39 
  Verifying        : make-1:4.2.1-10.el8.x86_64                            6/39 
  Verifying        : systemd-devel-239-51.el8_5.3.x86_64                   7/39 
  Verifying        : cmake-3.20.2-4.el8.x86_64                             8/39 
  Verifying        : cmake-data-3.20.2-4.el8.noarch                        9/39 
  Verifying        : cmake-filesystem-3.20.2-4.el8.x86_64                 10/39 
  Verifying        : cmake-rpm-macros-3.20.2-4.el8.noarch                 11/39 
  Verifying        : cpp-8.5.0-4.el8_5.alma.x86_64                        12/39 
  Verifying        : gcc-8.5.0-4.el8_5.alma.x86_64                        13/39 
  Verifying        : isl-0.16.1-6.el8.x86_64                              14/39 
  Verifying        : libuv-1:1.41.1-1.el8_4.x86_64                        15/39 
  Verifying        : valgrind-1:3.17.0-5.el8.x86_64                       16/39 
  Verifying        : valgrind-devel-1:3.17.0-5.el8.x86_64                 17/39 
  Verifying        : glibc-2.28-164.el8.x86_64                            18/39 
  Verifying        : glibc-2.28-151.el8.x86_64                            19/39 
  Verifying        : glibc-common-2.28-164.el8.x86_64                     20/39 
  Verifying        : glibc-common-2.28-151.el8.x86_64                     21/39 
  Verifying        : glibc-langpack-en-2.28-164.el8.x86_64                22/39 
  Verifying        : glibc-langpack-en-2.28-151.el8.x86_64                23/39 
  Verifying        : libgcc-8.5.0-4.el8_5.alma.x86_64                     24/39 
  Verifying        : libgcc-8.4.1-1.el8.alma.x86_64                       25/39 
  Verifying        : libgomp-8.5.0-4.el8_5.alma.x86_64                    26/39 
  Verifying        : libgomp-8.4.1-1.el8.alma.x86_64                      27/39 
  Verifying        : libxcrypt-4.1.1-6.el8.x86_64                         28/39 
  Verifying        : libxcrypt-4.1.1-4.el8.x86_64                         29/39 
  Verifying        : systemd-239-51.el8_5.3.x86_64                        30/39 
  Verifying        : systemd-239-45.el8.x86_64                            31/39 
  Verifying        : systemd-container-239-51.el8_5.3.x86_64              32/39 
  Verifying        : systemd-container-239-45.el8.x86_64                  33/39 
  Verifying        : systemd-libs-239-51.el8_5.3.x86_64                   34/39 
  Verifying        : systemd-libs-239-45.el8.x86_64                       35/39 
  Verifying        : systemd-pam-239-51.el8_5.3.x86_64                    36/39 
  Verifying        : systemd-pam-239-45.el8.x86_64                        37/39 
  Verifying        : systemd-udev-239-51.el8_5.3.x86_64                   38/39 
  Verifying        : systemd-udev-239-45.el8.x86_64                       39/39 

Upgraded:
  glibc-2.28-164.el8.x86_64             glibc-common-2.28-164.el8.x86_64       
  glibc-langpack-en-2.28-164.el8.x86_64 libgcc-8.5.0-4.el8_5.alma.x86_64       
  libgomp-8.5.0-4.el8_5.alma.x86_64     libxcrypt-4.1.1-6.el8.x86_64           
  systemd-239-51.el8_5.3.x86_64         systemd-container-239-51.el8_5.3.x86_64
  systemd-libs-239-51.el8_5.3.x86_64    systemd-pam-239-51.el8_5.3.x86_64      
  systemd-udev-239-51.el8_5.3.x86_64   
Installed:
  cmake-3.20.2-4.el8.x86_64                                                     
  cmake-data-3.20.2-4.el8.noarch                                                
  cmake-filesystem-3.20.2-4.el8.x86_64                                          
  cmake-rpm-macros-3.20.2-4.el8.noarch                                          
  cpp-8.5.0-4.el8_5.alma.x86_64                                                 
  gcc-8.5.0-4.el8_5.alma.x86_64                                                 
  glibc-devel-2.28-164.el8.x86_64                                               
  glibc-headers-2.28-164.el8.x86_64                                             
  isl-0.16.1-6.el8.x86_64                                                       
  kernel-headers-4.18.0-348.12.2.el8_5.x86_64                                   
  libnl3-devel-3.5.0-1.el8.x86_64                                               
  libuv-1:1.41.1-1.el8_4.x86_64                                                 
  libxcrypt-devel-4.1.1-6.el8.x86_64                                            
  make-1:4.2.1-10.el8.x86_64                                                    
  systemd-devel-239-51.el8_5.3.x86_64                                           
  valgrind-1:3.17.0-5.el8.x86_64                                                
  valgrind-devel-1:3.17.0-5.el8.x86_64                                          

Complete!

And the suggested more modern tooling for CentOS 7:

$ sudo yum install epel-release
Last metadata expiration check: 3:09:22 ago on Sun 30 Jan 2022 11:11:42 GMT.
Dependencies resolved.
================================================================================
 Package               Architecture    Version            Repository       Size
================================================================================
Installing:
 epel-release          noarch          8-10.el8           extras           22 k

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

Total download size: 22 k
Installed size: 32 k
Is this ok [y/N]: y
Downloading Packages:
epel-release-8-10.el8.noarch.rpm                552 kB/s |  22 kB     00:00    
--------------------------------------------------------------------------------
Total                                            45 kB/s |  22 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : epel-release-8-10.el8.noarch                           1/1 
  Running scriptlet: epel-release-8-10.el8.noarch                           1/1 
  Verifying        : epel-release-8-10.el8.noarch                           1/1 

Installed:
  epel-release-8-10.el8.noarch                                                  

Complete!
$ sudo yum --enablerepo=powertools install cmake3 ninja-build pandoc
AlmaLinux 8 - PowerTools                        3.0 MB/s | 2.5 MB     00:00    
Last metadata expiration check: 0:00:01 ago on Sun 30 Jan 2022 14:23:46 GMT.
Package cmake-3.20.2-4.el8.x86_64 is already installed.
Dependencies resolved.
================================================================================
 Package              Architecture  Version             Repository         Size
================================================================================
Installing:
 ninja-build          x86_64        1.8.2-1.el8         powertools        138 k
 pandoc               x86_64        2.0.6-5.el8         powertools         15 M
Installing dependencies:
 pandoc-common        noarch        2.0.6-5.el8         powertools        157 k

Transaction Summary
================================================================================
Install  3 Packages

Total download size: 16 M
Installed size: 112 M
Is this ok [y/N]: y
Downloading Packages:
(1/3): ninja-build-1.8.2-1.el8.x86_64.rpm       1.6 MB/s | 138 kB     00:00    
(2/3): pandoc-common-2.0.6-5.el8.noarch.rpm     1.5 MB/s | 157 kB     00:00    
(3/3): pandoc-2.0.6-5.el8.x86_64.rpm            7.1 MB/s |  15 MB     00:02    
--------------------------------------------------------------------------------
Total                                           5.9 MB/s |  16 MB     00:02     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : pandoc-common-2.0.6-5.el8.noarch                       1/3 
  Installing       : pandoc-2.0.6-5.el8.x86_64                              2/3 
  Installing       : ninja-build-1.8.2-1.el8.x86_64                         3/3 
  Running scriptlet: ninja-build-1.8.2-1.el8.x86_64                         3/3 
  Verifying        : ninja-build-1.8.2-1.el8.x86_64                         1/3 
  Verifying        : pandoc-2.0.6-5.el8.x86_64                              2/3 
  Verifying        : pandoc-common-2.0.6-5.el8.noarch                       3/3 

Installed:
  ninja-build-1.8.2-1.el8.x86_64             pandoc-2.0.6-5.el8.x86_64          
  pandoc-common-2.0.6-5.el8.noarch          

Complete!

4.4 build.sh was failing due to no Kernel sources

Attempted to run the irdma-1.7.72/build.sh as explained in the README_irdma.txt, but failed with:

$ ./build.sh 
make: *** M=/home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma: No such file or directory.  Stop.
make: *** M=/home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma: No such file or directory.  Stop.

Re-running with tracing enabled showed that the $KSRC variable in the build.sh wasn't being set, which led to the error from make:

$ bash -x ./build.sh 
+ '[' -z '' ']'
+ '[' -z '' ']'
++ uname -r
+ BUILD_KERNEL=4.18.0-305.el8.x86_64
+ '[' -e /usr/src/kernels/linux-4.18.0-305.el8.x86_64/include/config ']'
+ '[' -e /usr/src/kernels/4.18.0-305.el8.x86_64/include/config ']'
+ '[' -e /lib/modules/4.18.0-305.el8.x86_64/build/include/config ']'
+ '[' -z '' ']'
++ uname -r
++ sed 's/\([0-9]*\.[0-9]*\)\..*/\1/'
+ BUILD_KERNEL=4.18
+ '[' -e /usr/src/kernels/linux-4.18/include/config ']'
+ '[' -e /usr/src/kernels/4.18/include/config ']'
+ '[' -e /lib/modules/4.18/build/include/config ']'
+ export KSRC
+ '[' -e /include/linux/kconfig.h ']'
+ '[' -e /include/generated/autoconf.h ']'
+ '[' -e /include/linux/autoconf.h ']'
+ '[' -e /include/generated/utsrelease.h ']'
+ make -C M=/home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma clean
make: *** M=/home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma: No such file or directory.  Stop.
+ which nproc
+ '[' 0 -ne 0 ']'
++ nproc
+ nproc=12
+ '[' -e /lib/modules/4.18/extern-symvers/auxiliary.symvers ']'
+ '[' '' == ofed ']'
+ make 'CFLAGS_MODULE=-DMODULE -DSLE_LOCALVERSION_CODE= -DOFED_VERSION_CODE=' -j12 -C M=/home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma W=1
make: *** M=/home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma: No such file or directory.  Stop.
+ '[' 2 -eq 0 ']'
+ exit 1

Therefore installed the kernel-devel package:

$ sudo yum install kernel-devel
[sudo] password for mr_halfword: 
Last metadata expiration check: 0:37:55 ago on Sun 30 Jan 2022 14:21:44 GMT.
Dependencies resolved.
================================================================================
 Package            Architecture Version                     Repository    Size
================================================================================
Installing:
 kernel-devel       x86_64       4.18.0-348.12.2.el8_5       baseos        20 M

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

Total download size: 20 M
Installed size: 51 M
Is this ok [y/N]: y
Downloading Packages:
kernel-devel-4.18.0-348.12.2.el8_5.x86_64.rpm   6.8 MB/s |  20 MB     00:02    
--------------------------------------------------------------------------------
Total                                           5.9 MB/s |  20 MB     00:03     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : kernel-devel-4.18.0-348.12.2.el8_5.x86_64              1/1 
  Running scriptlet: kernel-devel-4.18.0-348.12.2.el8_5.x86_64              1/1 
  Verifying        : kernel-devel-4.18.0-348.12.2.el8_5.x86_64              1/1 

Installed:
  kernel-devel-4.18.0-348.12.2.el8_5.x86_64                                     

Complete!

And there was now a directory under /usr/include:

$ ls /usr/src/kernels/
4.18.0-348.12.2.el8_5.x86_64

But the version didn't match the installed Kernel and the build.sh still failed.

Trying to install the matching kernel-devel package from the Internet repos failed:

$ sudo yum install kernel-devel-`uname -r`
Last metadata expiration check: 0:41:16 ago on Sun 30 Jan 2022 14:21:44 GMT.
No match for argument: kernel-devel-4.18.0-305.el8.x86_64
Error: Unable to find a match: kernel-devel-4.18.0-305.el8.x86_64

An install from the USB installation media found the matching kernel-devel package version:

$ sudo yum install /run/media/mr_halfword/AlmaLinux-8-4-x86_64-dvd/BaseOS/Packages/kernel-devel-4.18.0-305.el8.x86_64.rpm
Last metadata expiration check: 0:45:39 ago on Sun 30 Jan 2022 14:21:44 GMT.
Dependencies resolved.
================================================================================
 Package            Architecture Version               Repository          Size
================================================================================
Installing:
 kernel-devel       x86_64       4.18.0-305.el8        @commandline        18 M

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

Total size: 18 M
Installed size: 48 M
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       : kernel-devel-4.18.0-305.el8.x86_64                     1/1 
  Running scriptlet: kernel-devel-4.18.0-305.el8.x86_64                     1/1 
  Verifying        : kernel-devel-4.18.0-305.el8.x86_64                     1/1 

Installed:
  kernel-devel-4.18.0-305.el8.x86_64                                            

Complete!

4.5 Further development packages required

Having install the matching kernel-devel package the build.sh script gets further and then reports some more missing packages:

$ ./build.sh 
make: Entering directory '/usr/src/kernels/4.18.0-305.el8.x86_64'
make: Leaving directory '/usr/src/kernels/4.18.0-305.el8.x86_64'
make: Entering directory '/usr/src/kernels/4.18.0-305.el8.x86_64'
Makefile:984: *** "Cannot generate ORC metadata for CONFIG_UNWINDER_ORC=y, please install libelf-dev, libelf-devel or elfutils-libelf-devel".  Stop.
make: Leaving directory '/usr/src/kernels/4.18.0-305.el8.x86_64'

For AlmaLinux 8 the available package is elfutils-libelf-devel which were installed with:

$ sudo yum install elfutils-libelf-devel
[sudo] password for mr_halfword: 
Last metadata expiration check: 0:56:46 ago on Sun 30 Jan 2022 14:21:44 GMT.
Dependencies resolved.
================================================================================
 Package                    Arch        Version               Repository   Size
================================================================================
Installing:
 elfutils-libelf-devel      x86_64      0.185-1.el8           baseos       58 k
Upgrading:
 elfutils-libelf            x86_64      0.185-1.el8           baseos      220 k
 elfutils-libs              x86_64      0.185-1.el8           baseos      291 k
Installing dependencies:
 zlib-devel                 x86_64      1.2.11-17.el8         baseos       56 k

Transaction Summary
================================================================================
Install  2 Packages
Upgrade  2 Packages

Total download size: 626 k
Is this ok [y/N]: y
Downloading Packages:
determining the fastest mirror (1 hosts).. done.1.0 kB/s | 614  B     00:00 ETA
(1/4): elfutils-libelf-devel-0.185-1.el8.x86_64 1.0 MB/s |  58 kB     00:00    
(2/4): zlib-devel-1.2.11-17.el8.x86_64.rpm      639 kB/s |  56 kB     00:00    
(3/4): elfutils-libelf-0.185-1.el8.x86_64.rpm   2.2 MB/s | 220 kB     00:00    
(4/4): elfutils-libs-0.185-1.el8.x86_64.rpm     4.1 MB/s | 291 kB     00:00    
--------------------------------------------------------------------------------
Total                                           502 kB/s | 626 kB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Upgrading        : elfutils-libelf-0.185-1.el8.x86_64                     1/6 
  Installing       : zlib-devel-1.2.11-17.el8.x86_64                        2/6 
  Installing       : elfutils-libelf-devel-0.185-1.el8.x86_64               3/6 
  Upgrading        : elfutils-libs-0.185-1.el8.x86_64                       4/6 
  Cleanup          : elfutils-libs-0.182-3.el8.x86_64                       5/6 
  Cleanup          : elfutils-libelf-0.182-3.el8.x86_64                     6/6 
  Running scriptlet: elfutils-libelf-0.182-3.el8.x86_64                     6/6 
  Verifying        : elfutils-libelf-devel-0.185-1.el8.x86_64               1/6 
  Verifying        : zlib-devel-1.2.11-17.el8.x86_64                        2/6 
  Verifying        : elfutils-libelf-0.185-1.el8.x86_64                     3/6 
  Verifying        : elfutils-libelf-0.182-3.el8.x86_64                     4/6 
  Verifying        : elfutils-libs-0.185-1.el8.x86_64                       5/6 
  Verifying        : elfutils-libs-0.182-3.el8.x86_64                       6/6 

Upgraded:
  elfutils-libelf-0.185-1.el8.x86_64      elfutils-libs-0.185-1.el8.x86_64     
Installed:
  elfutils-libelf-devel-0.185-1.el8.x86_64    zlib-devel-1.2.11-17.el8.x86_64   

Complete!

4.6 Compile error due to linux/auxiliary_bus.h not existing in 4.18.0-305.el8.x86_64

Having install the above package for libelf, build.sh got further but then failed with a compile error:

$ ./build.sh 
make: Entering directory '/usr/src/kernels/4.18.0-305.el8.x86_64'
make: Leaving directory '/usr/src/kernels/4.18.0-305.el8.x86_64'
make: Entering directory '/usr/src/kernels/4.18.0-305.el8.x86_64'
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/main.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/hw.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/cm.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/ctrl.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/hmc.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/pble.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/puda.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/uk.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/utils.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/verbs.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/uda.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/ws.o
In file included from /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/main.c:3:
/home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/main.h:29:10: fatal error: linux/auxiliary_bus.h: No such file or directory
 #include <linux/auxiliary_bus.h>
          ^~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [scripts/Makefile.build:315: /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/main.o] Error 1
make[1]: *** Waiting for unfinished jobs....
In file included from /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/cm.c:3:
/home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/main.h:29:10: fatal error: linux/auxiliary_bus.h: No such file or directory
 #include <linux/auxiliary_bus.h>
          ^~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [scripts/Makefile.build:315: /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/cm.o] Error 1
In file included from /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/hw.c:3:
/home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/main.h:29:10: fatal error: linux/auxiliary_bus.h: No such file or directory
 #include <linux/auxiliary_bus.h>
          ^~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [scripts/Makefile.build:315: /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/hw.o] Error 1
In file included from /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/utils.c:3:
/home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/main.h:29:10: fatal error: linux/auxiliary_bus.h: No such file or directory
 #include <linux/auxiliary_bus.h>
          ^~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [scripts/Makefile.build:315: /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/utils.o] Error 1
In file included from /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/verbs.c:3:
/home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/main.h:29:10: fatal error: linux/auxiliary_bus.h: No such file or directory
 #include <linux/auxiliary_bus.h>
          ^~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [scripts/Makefile.build:315: /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/verbs.o] Error 1
make: *** [Makefile:1563: _module_/home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma] Error 2
make: Leaving directory '/usr/src/kernels/4.18.0-305.el8.x86_64'

Where the file isn't present in the /usr/src/kernels/4.18.0-305.el8.x86_64 tree which matches the Kernel in use, but is in the /usr/src/kernels/4.18.0-348.12.2.el8_5.x86_64 tree which was installed from the internet repo.

From browsing the mainline Kernel source in https://elixir.bootlin.com/linux was seems to first appear in v5.11-rc1 and has an Intel copyright header.

Presumably the linux/auxiliary_bus.h source file has been back-ported into the 4.18.0-348.12.2.el8_5.x86_64 Kernel in the AlmaLinux 8 baseos repo.

4.7 Upgrade Kernel and AlmaLinux versions

Due to above issue, used dnf to perform an update:

$ sudo dnf update
[sudo] password for mr_halfword: 
Last metadata expiration check: 1:19:14 ago on Sun 30 Jan 2022 14:21:44 GMT.
Dependencies resolved.
================================================================================
 Package                         Arch   Version                 Repo       Size
================================================================================
Installing:
 kernel                          x86_64 4.18.0-348.12.2.el8_5   baseos    7.0 M
 kernel-core                     x86_64 4.18.0-348.12.2.el8_5   baseos     38 M
 kernel-modules                  x86_64 4.18.0-348.12.2.el8_5   baseos     30 M
Upgrading:
 ModemManager                    x86_64 1.10.8-4.el8            baseos    922 k
 ModemManager-glib               x86_64 1.10.8-4.el8            baseos    263 k
 NetworkManager                  x86_64 1:1.32.10-4.el8         baseos    2.6 M
 NetworkManager-adsl             x86_64 1:1.32.10-4.el8         baseos    143 k
 NetworkManager-bluetooth        x86_64 1:1.32.10-4.el8         baseos    169 k
 NetworkManager-config-server    noarch 1:1.32.10-4.el8         baseos    130 k
 NetworkManager-libnm            x86_64 1:1.32.10-4.el8         baseos    1.8 M
 NetworkManager-team             x86_64 1:1.32.10-4.el8         baseos    147 k
 NetworkManager-tui              x86_64 1:1.32.10-4.el8         baseos    335 k
 NetworkManager-wifi             x86_64 1:1.32.10-4.el8         baseos    189 k
 NetworkManager-wwan             x86_64 1:1.32.10-4.el8         baseos    175 k
 accountsservice                 x86_64 0.6.55-2.el8_5.2        appstream 138 k
 accountsservice-libs            x86_64 0.6.55-2.el8_5.2        appstream  95 k
 adcli                           x86_64 0.8.2-12.el8            baseos    117 k
 almalinux-backgrounds           noarch 84.5-1.el8              appstream 3.4 M
 almalinux-logos                 x86_64 84.5-1.el8              appstream 362 k
 almalinux-release               x86_64 8.5-4.el8               baseos     24 k
 alsa-lib                        x86_64 1.2.5-4.el8             appstream 488 k
 alsa-ucm                        noarch 1.2.5-4.el8             appstream  77 k
 alsa-utils                      x86_64 1.2.5-3.el8             appstream 1.1 M
 anaconda-core                   x86_64 33.16.5.6-1.el8.alma    appstream 2.4 M
 anaconda-gui                    x86_64 33.16.5.6-1.el8.alma    appstream 572 k
 anaconda-tui                    x86_64 33.16.5.6-1.el8.alma    appstream 287 k
 anaconda-widgets                x86_64 33.16.5.6-1.el8.alma    appstream 221 k
 authselect                      x86_64 1.2.2-3.el8             baseos    132 k
 authselect-compat               x86_64 1.2.2-3.el8             appstream  37 k
 authselect-libs                 x86_64 1.2.2-3.el8             baseos    221 k
 bash                            x86_64 4.4.20-2.el8            baseos    1.5 M
 bind-export-libs                x86_64 32:9.11.26-6.el8        baseos    1.1 M
 bind-libs                       x86_64 32:9.11.26-6.el8        appstream 173 k
 bind-libs-lite                  x86_64 32:9.11.26-6.el8        appstream 1.2 M
 bind-license                    noarch 32:9.11.26-6.el8        appstream 101 k
 bind-utils                      x86_64 32:9.11.26-6.el8        appstream 450 k
 binutils                        x86_64 2.30-108.el8_5.1        baseos    5.8 M
 blivet-data                     noarch 1:3.4.0-6.el8           appstream 245 k
 bluez                           x86_64 5.56-2.el8.alma         baseos    1.3 M
 bluez-libs                      x86_64 5.56-2.el8.alma         baseos    113 k
 bluez-obexd                     x86_64 5.56-2.el8.alma         baseos    232 k
 bpftool                         x86_64 4.18.0-348.12.2.el8_5   baseos    7.7 M
 buildah                         x86_64 1.22.3-2.module_el8.5.0+2586+018f24d7
                                                                appstream 7.7 M
 ca-certificates                 noarch 2021.2.50-80.0.el8_4    baseos    389 k
 chkconfig                       x86_64 1.19.1-1.el8            baseos    197 k
 chrony                          x86_64 4.1-1.el8.alma          baseos    326 k
 cockpit                         x86_64 251.1-1.el8             baseos     77 k
 cockpit-bridge                  x86_64 251.1-1.el8             baseos    538 k
 cockpit-packagekit              noarch 251.1-1.el8             appstream 702 k
 cockpit-podman                  noarch 33-1.module_el8.5.0+2586+018f24d7
                                                                appstream 436 k
 cockpit-storaged                noarch 251.1-1.el8             appstream 654 k
 cockpit-system                  noarch 251.1-1.el8             baseos    3.2 M
 cockpit-ws                      x86_64 251.1-1.el8             baseos    1.3 M
 compat-exiv2-026                x86_64 0.26-6.el8              appstream 888 k
 conmon                          x86_64 2:2.0.29-1.module_el8.5.0+2586+018f24d7
                                                                appstream  51 k
 container-selinux               noarch 2:2.167.0-1.module_el8.5.0+2586+018f24d7
                                                                appstream  53 k
 containernetworking-plugins     x86_64 1.0.0-1.module_el8.5.0+2586+018f24d7
                                                                appstream  19 M
 containers-common               noarch 2:1-2.module_el8.5.0+2586+018f24d7
                                                                appstream  78 k
 coreutils                       x86_64 8.30-12.el8             baseos    1.2 M
 coreutils-common                x86_64 8.30-12.el8             baseos    2.0 M
 criu                            x86_64 3.15-3.module_el8.5.0+2586+018f24d7
                                                                appstream 517 k
 crypto-policies                 noarch 20210617-1.gitc776d3e.el8
                                                                baseos     62 k
 crypto-policies-scripts         noarch 20210617-1.gitc776d3e.el8
                                                                baseos     82 k
 cups                            x86_64 1:2.2.6-40.el8          appstream 1.4 M
 cups-client                     x86_64 1:2.2.6-40.el8          appstream 168 k
 cups-filesystem                 noarch 1:2.2.6-40.el8          appstream 108 k
 cups-filters                    x86_64 1.20.0-27.el8           appstream 778 k
 cups-filters-libs               x86_64 1.20.0-27.el8           appstream 134 k
 cups-ipptool                    x86_64 1:2.2.6-40.el8          appstream 5.8 M
 cups-libs                       x86_64 1:2.2.6-40.el8          baseos    432 k
 curl                            x86_64 7.61.1-22.el8           baseos    350 k
 dbus                            x86_64 1:1.12.8-14.el8         baseos     40 k
 dbus-common                     noarch 1:1.12.8-14.el8         baseos     45 k
 dbus-daemon                     x86_64 1:1.12.8-14.el8         baseos    239 k
 dbus-libs                       x86_64 1:1.12.8-14.el8         baseos    183 k
 dbus-tools                      x86_64 1:1.12.8-14.el8         baseos     84 k
 dbus-x11                        x86_64 1:1.12.8-14.el8         appstream  58 k
 device-mapper                   x86_64 8:1.02.177-10.el8       baseos    376 k
 device-mapper-event             x86_64 8:1.02.177-10.el8       baseos    270 k
 device-mapper-event-libs        x86_64 8:1.02.177-10.el8       baseos    269 k
 device-mapper-libs              x86_64 8:1.02.177-10.el8       baseos    408 k
 device-mapper-multipath         x86_64 0.8.4-17.el8            baseos    196 k
 device-mapper-multipath-libs    x86_64 0.8.4-17.el8            baseos    322 k
 device-mapper-persistent-data   x86_64 0.9.0-4.el8             baseos    935 k
 dhcp-client                     x86_64 12:4.3.6-45.el8         baseos    317 k
 dhcp-common                     noarch 12:4.3.6-45.el8         baseos    206 k
 dhcp-libs                       x86_64 12:4.3.6-45.el8         baseos    147 k
 dmidecode                       x86_64 1:3.2-10.el8            baseos     90 k
 dnf                             noarch 4.7.0-4.el8             baseos    543 k
 dnf-data                        noarch 4.7.0-4.el8             baseos    153 k
 dnf-plugins-core                noarch 4.0.21-3.el8            baseos     69 k
 dnsmasq                         x86_64 2.79-19.el8             appstream 318 k
 dracut                          x86_64 049-191.git20210920.el8 baseos    373 k
 dracut-config-rescue            x86_64 049-191.git20210920.el8 baseos     60 k
 dracut-network                  x86_64 049-191.git20210920.el8 baseos    107 k
 dracut-squash                   x86_64 049-191.git20210920.el8 baseos     60 k
 e2fsprogs                       x86_64 1.45.6-2.el8            baseos    1.0 M
 e2fsprogs-libs                  x86_64 1.45.6-2.el8            baseos    232 k
 edk2-ovmf                       noarch 20210527gite1999b264f1f-3.el8
                                                                appstream 3.6 M
 efibootmgr                      x86_64 16-1.el8.0.1            baseos     46 k
 elfutils-debuginfod-client      x86_64 0.185-1.el8             baseos     65 k
 elfutils-default-yama-scope     noarch 0.185-1.el8             baseos     48 k
 emacs-filesystem                noarch 1:26.1-7.el8            baseos     69 k
 epel-release                    noarch 8-13.el8                epel       23 k
 ethtool                         x86_64 2:5.8-7.el8             baseos    208 k
 evince                          x86_64 3.28.4-14.el8           appstream 1.6 M
 evince-libs                     x86_64 3.28.4-14.el8           appstream 399 k
 evince-nautilus                 x86_64 3.28.4-14.el8           appstream  48 k
 evolution-data-server           x86_64 3.28.5-17.el8           appstream 2.1 M
 evolution-data-server-langpacks noarch 3.28.5-17.el8           appstream 1.4 M
 exiv2                           x86_64 0.27.4-5.el8            appstream 1.0 M
 exiv2-libs                      x86_64 0.27.4-5.el8            appstream 870 k
 file                            x86_64 5.33-20.el8             baseos     76 k
 file-libs                       x86_64 5.33-20.el8             baseos    542 k
 file-roller                     x86_64 3.28.1-4.el8            appstream 1.3 M
 filesystem                      x86_64 3.8-6.el8               baseos    1.1 M
 firefox                         x86_64 91.5.0-1.el8_5.alma     appstream 106 M
 firewalld                       noarch 0.9.3-7.el8             baseos    501 k
 firewalld-filesystem            noarch 0.9.3-7.el8             baseos     76 k
 flatpak                         x86_64 1.8.5-5.el8_5           appstream 1.6 M
 flatpak-libs                    x86_64 1.8.5-5.el8_5           appstream 439 k
 flatpak-selinux                 noarch 1.8.5-5.el8_5           appstream  26 k
 flatpak-session-helper          x86_64 1.8.5-5.el8_5           appstream  74 k
 fontconfig                      x86_64 2.13.1-4.el8            baseos    273 k
 freerdp-libs                    x86_64 2:2.2.0-7.el8_5         appstream 891 k
 fstrm                           x86_64 0.6.1-2.el8             appstream  28 k
 fuse-overlayfs                  x86_64 1.7.1-1.module_el8.5.0+2586+018f24d7
                                                                appstream  71 k
 fwupd                           x86_64 1.5.9-1.el8_4.alma      baseos    2.8 M
 gdm                             x86_64 1:40.0-15.el8           appstream 880 k
 glib2                           x86_64 2.56.4-156.el8          baseos    2.5 M
 glusterfs                       x86_64 6.0-56.4.el8            baseos    666 k
 glusterfs-api                   x86_64 6.0-56.4.el8            appstream  98 k
 glusterfs-cli                   x86_64 6.0-56.4.el8            appstream 193 k
 glusterfs-client-xlators        x86_64 6.0-56.4.el8            baseos    882 k
 glusterfs-libs                  x86_64 6.0-56.4.el8            baseos    417 k
 gnome-autoar                    x86_64 0.2.3-2.el8             appstream  54 k
 gnome-calculator                x86_64 3.28.2-2.el8            appstream 1.1 M
 gnome-classic-session           noarch 3.32.1-22.el8_5         appstream  47 k
 gnome-control-center            x86_64 3.28.2-28.el8           appstream 5.4 M
 gnome-control-center-filesystem noarch 3.28.2-28.el8           appstream  11 k
 gnome-online-accounts           x86_64 3.28.2-3.el8            appstream 546 k
 gnome-session                   x86_64 3.28.1-13.el8           appstream 379 k
 gnome-session-wayland-session   x86_64 3.28.1-13.el8           appstream 8.2 k
 gnome-session-xsession          x86_64 3.28.1-13.el8           appstream  12 k
 gnome-settings-daemon           x86_64 3.32.0-16.el8.alma      appstream 1.0 M
 gnome-shell                     x86_64 3.32.2-40.el8           appstream 1.5 M
 gnome-shell-extension-apps-menu noarch 3.32.1-22.el8_5         appstream  31 k
 gnome-shell-extension-common    noarch 3.32.1-22.el8_5         appstream 170 k
 gnome-shell-extension-desktop-icons
                                 noarch 3.32.1-22.el8_5         appstream  49 k
 gnome-shell-extension-horizontal-workspaces
                                 noarch 3.32.1-22.el8_5         appstream  25 k
 gnome-shell-extension-launch-new-instance
                                 noarch 3.32.1-22.el8_5         appstream  26 k
 gnome-shell-extension-places-menu
                                 noarch 3.32.1-22.el8_5         appstream  31 k
 gnome-shell-extension-window-list
                                 noarch 3.32.1-22.el8_5         appstream  39 k
 gnome-software                  x86_64 3.36.1-10.el8           appstream 7.5 M
 gnutls                          x86_64 3.6.16-4.el8            baseos    1.0 M
 gpgme                           x86_64 1.13.1-9.el8            baseos    335 k
 grilo                           x86_64 0.3.6-3.el8             appstream 219 k
 grub2-common                    noarch 1:2.02-106.el8.alma     baseos    890 k
 grub2-efi-x64                   x86_64 1:2.02-106.el8.alma     baseos    481 k
 grub2-tools                     x86_64 1:2.02-106.el8.alma     baseos    2.0 M
 grub2-tools-extra               x86_64 1:2.02-106.el8.alma     baseos    1.1 M
 grub2-tools-minimal             x86_64 1:2.02-106.el8.alma     baseos    209 k
 grubby                          x86_64 8.40-42.el8             baseos     48 k
 gsettings-desktop-schemas       x86_64 3.32.0-6.el8            baseos    632 k
 gtk-update-icon-cache           x86_64 3.22.30-8.el8           appstream  31 k
 gtk3                            x86_64 3.22.30-8.el8           appstream 4.5 M
 gupnp                           x86_64 1.0.6-2.el8_4           appstream 105 k
 hdparm                          x86_64 9.54-4.el8              baseos     99 k
 hplip-common                    x86_64 3.18.4-9.el8.alma       appstream 109 k
 hplip-libs                      x86_64 3.18.4-9.el8.alma       appstream 203 k
 hwdata                          noarch 0.314-8.10.el8          baseos    1.7 M
 ibus                            x86_64 1.5.19-14.el8_5         appstream 9.2 M
 ibus-gtk2                       x86_64 1.5.19-14.el8_5         appstream  61 k
 ibus-gtk3                       x86_64 1.5.19-14.el8_5         appstream  62 k
 ibus-libs                       x86_64 1.5.19-14.el8_5         appstream 264 k
 ibus-setup                      noarch 1.5.19-14.el8_5         appstream  96 k
 iproute                         x86_64 5.12.0-4.el8            baseos    774 k
 iproute-tc                      x86_64 5.12.0-4.el8            baseos    460 k
 iptables                        x86_64 1.8.4-20.el8            baseos    583 k
 iptables-ebtables               x86_64 1.8.4-20.el8            baseos     71 k
 iptables-libs                   x86_64 1.8.4-20.el8            baseos    106 k
 iscsi-initiator-utils           x86_64 6.2.1.4-4.git095f59c.el8
                                                                baseos    377 k
 iscsi-initiator-utils-iscsiuio  x86_64 6.2.1.4-4.git095f59c.el8
                                                                baseos     99 k
 iwl100-firmware                 noarch 39.31.5.1-103.el8.1     baseos    171 k
 iwl1000-firmware                noarch 1:39.31.5.1-103.el8.1   baseos    234 k
 iwl105-firmware                 noarch 18.168.6.1-103.el8.1    baseos    255 k
 iwl135-firmware                 noarch 18.168.6.1-103.el8.1    baseos    264 k
 iwl2000-firmware                noarch 18.168.6.1-103.el8.1    baseos    258 k
 iwl2030-firmware                noarch 18.168.6.1-103.el8.1    baseos    267 k
 iwl3160-firmware                noarch 1:25.30.13.0-103.el8.1  baseos    1.7 M
 iwl3945-firmware                noarch 15.32.2.9-103.el8.1     baseos    109 k
 iwl4965-firmware                noarch 228.61.2.24-103.el8.1   baseos    122 k
 iwl5000-firmware                noarch 8.83.5.1_1-103.el8.1    baseos    315 k
 iwl5150-firmware                noarch 8.24.2.2-103.el8.1      baseos    168 k
 iwl6000-firmware                noarch 9.221.4.1-103.el8.1     baseos    188 k
 iwl6000g2a-firmware             noarch 18.168.6.1-103.el8.1    baseos    331 k
 iwl6000g2b-firmware             noarch 18.168.6.1-103.el8.1    baseos    331 k
 iwl6050-firmware                noarch 41.28.5.1-103.el8.1     baseos    264 k
 iwl7260-firmware                noarch 1:25.30.13.0-103.el8.1  baseos     18 M
 jasper-libs                     x86_64 2.0.14-5.el8            appstream 166 k
 json-c                          x86_64 0.13.1-2.el8            baseos     39 k
 kernel-tools                    x86_64 4.18.0-348.12.2.el8_5   baseos    7.2 M
 kernel-tools-libs               x86_64 4.18.0-348.12.2.el8_5   baseos    7.0 M
 kexec-tools                     x86_64 2.0.20-57.el8_5.1       baseos    513 k
 keyutils                        x86_64 1.5.10-9.el8            baseos     65 k
 keyutils-libs                   x86_64 1.5.10-9.el8            baseos     33 k
 kmod                            x86_64 25-18.el8               baseos    125 k
 kmod-kvdo                       x86_64 6.2.5.72-81.el8         baseos    340 k
 kmod-libs                       x86_64 25-18.el8               baseos     67 k
 kpartx                          x86_64 0.8.4-17.el8            baseos    112 k
 krb5-libs                       x86_64 1.18.2-14.el8           baseos    839 k
 libX11                          x86_64 1.6.8-5.el8             appstream 610 k
 libX11-common                   noarch 1.6.8-5.el8             appstream 157 k
 libX11-xcb                      x86_64 1.6.8-5.el8             appstream  13 k
 libblkid                        x86_64 2.32.1-28.el8           baseos    216 k
 libblockdev                     x86_64 2.24-7.el8              appstream 130 k
 libblockdev-crypto              x86_64 2.24-7.el8              appstream  80 k
 libblockdev-dm                  x86_64 2.24-7.el8              appstream  71 k
 libblockdev-fs                  x86_64 2.24-7.el8              appstream  85 k
 libblockdev-kbd                 x86_64 2.24-7.el8              appstream  76 k
 libblockdev-loop                x86_64 2.24-7.el8              appstream  69 k
 libblockdev-lvm                 x86_64 2.24-7.el8              appstream  85 k
 libblockdev-mdraid              x86_64 2.24-7.el8              appstream  75 k
 libblockdev-mpath               x86_64 2.24-7.el8              appstream  71 k
 libblockdev-nvdimm              x86_64 2.24-7.el8              appstream  72 k
 libblockdev-part                x86_64 2.24-7.el8              appstream  79 k
 libblockdev-swap                x86_64 2.24-7.el8              appstream  71 k
 libblockdev-utils               x86_64 2.24-7.el8              appstream  79 k
 libcap                          x86_64 2.26-5.el8              baseos     59 k
 libcap-ng                       x86_64 0.7.11-1.el8            baseos     32 k
 libcom_err                      x86_64 1.45.6-2.el8            baseos     48 k
 libcomps                        x86_64 0.1.16-2.el8            baseos     81 k
 libcurl                         x86_64 7.61.1-22.el8           baseos    299 k
 libdb                           x86_64 5.3.28-42.el8_4         baseos    750 k
 libdb-utils                     x86_64 5.3.28-42.el8_4         baseos    149 k
 libdnf                          x86_64 0.63.0-3.el8            baseos    699 k
 libdrm                          x86_64 2.4.106-2.el8           appstream 165 k
 libepoxy                        x86_64 1.5.8-1.el8             appstream 224 k
 libertas-usb8388-firmware       noarch 2:20210702-103.gitd79c2677.el8
                                                                baseos    134 k
 libevdev                        x86_64 1.10.0-1.el8            appstream  43 k
 libfastjson                     x86_64 0.99.9-1.el8            appstream  37 k
 libfdisk                        x86_64 2.32.1-28.el8           baseos    250 k
 libgcrypt                       x86_64 1.8.5-6.el8             baseos    462 k
 libgweather                     x86_64 3.28.2-4.el8            appstream 3.1 M
 libinput                        x86_64 1.16.3-2.el8            appstream 216 k
 libipa_hbac                     x86_64 2.5.2-2.el8_5.3         baseos    115 k
 libiscsi                        x86_64 1.18.0-8.module_el8.5.0+2608+72063365
                                                                appstream  88 k
 libjpeg-turbo                   x86_64 1.5.3-12.el8            appstream 156 k
 libldb                          x86_64 2.3.0-2.el8             baseos    187 k
 libmodulemd                     x86_64 2.13.0-1.el8            baseos    232 k
 libmount                        x86_64 2.32.1-28.el8           baseos    233 k
 libndp                          x86_64 1.7-6.el8               baseos     39 k
 libnfsidmap                     x86_64 1:2.3.3-46.el8          baseos    120 k
 libnma                          x86_64 1.8.32-1.el8            appstream 293 k
 libqmi                          x86_64 1.24.0-3.el8            baseos    566 k
 libqmi-utils                    x86_64 1.24.0-3.el8            baseos    182 k
 librelp                         x86_64 1.9.0-1.el8             appstream  75 k
 librepo                         x86_64 1.14.0-2.el8            baseos     92 k
 libsane-hpaio                   x86_64 3.18.4-9.el8.alma       appstream 127 k
 libsepol                        x86_64 2.9-3.el8               baseos    339 k
 libslirp                        x86_64 4.4.0-1.module_el8.5.0+2586+018f24d7
                                                                appstream  69 k
 libsmartcols                    x86_64 2.32.1-28.el8           baseos    175 k
 libsmbclient                    x86_64 4.14.5-7.el8_5          baseos    147 k
 libsndfile                      x86_64 1.0.28-10.el8_4.1       appstream 192 k
 libsolv                         x86_64 0.7.19-1.el8            baseos    373 k
 libss                           x86_64 1.45.6-2.el8            baseos     52 k
 libssh                          x86_64 0.9.4-3.el8             baseos    214 k
 libssh-config                   noarch 0.9.4-3.el8             baseos     18 k
 libsss_autofs                   x86_64 2.5.2-2.el8_5.3         baseos    117 k
 libsss_certmap                  x86_64 2.5.2-2.el8_5.3         baseos    154 k
 libsss_idmap                    x86_64 2.5.2-2.el8_5.3         baseos    119 k
 libsss_nss_idmap                x86_64 2.5.2-2.el8_5.3         baseos    126 k
 libsss_sudo                     x86_64 2.5.2-2.el8_5.3         baseos    115 k
 libstdc++                       x86_64 8.5.0-4.el8_5.alma      baseos    452 k
 libstoragemgmt                  x86_64 1.9.1-1.el8             baseos    245 k
 libtalloc                       x86_64 2.3.2-1.el8             baseos     48 k
 libtevent                       x86_64 0.11.0-0.el8            baseos     49 k
 libtiff                         x86_64 4.0.9-20.el8            appstream 187 k
 libtirpc                        x86_64 1.1.4-5.el8             baseos    111 k
 libudisks2                      x86_64 2.9.0-7.el8             appstream 183 k
 libuuid                         x86_64 2.32.1-28.el8           baseos     95 k
 libvirt-daemon                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream 349 k
 libvirt-daemon-config-network   x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream  62 k
 libvirt-daemon-driver-interface x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream 208 k
 libvirt-daemon-driver-network   x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream 234 k
 libvirt-daemon-driver-nodedev   x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream 207 k
 libvirt-daemon-driver-nwfilter  x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream 231 k
 libvirt-daemon-driver-qemu      x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream 842 k
 libvirt-daemon-driver-secret    x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream 197 k
 libvirt-daemon-driver-storage   x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream  60 k
 libvirt-daemon-driver-storage-core
                                 x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream 258 k
 libvirt-daemon-driver-storage-disk
                                 x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream  81 k
 libvirt-daemon-driver-storage-gluster
                                 x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream  86 k
 libvirt-daemon-driver-storage-iscsi
                                 x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream  78 k
 libvirt-daemon-driver-storage-iscsi-direct
                                 x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream  80 k
 libvirt-daemon-driver-storage-logical
                                 x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream  82 k
 libvirt-daemon-driver-storage-mpath
                                 x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream  76 k
 libvirt-daemon-driver-storage-rbd
                                 x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream  86 k
 libvirt-daemon-driver-storage-scsi
                                 x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream  78 k
 libvirt-daemon-kvm              x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream  59 k
 libvirt-libs                    x86_64 6.0.0-37.module_el8.5.0+2608+72063365
                                                                appstream 4.3 M
 libwacom                        x86_64 1.6-3.el8               appstream  41 k
 libwacom-data                   noarch 1.6-3.el8               appstream 103 k
 libwayland-client               x86_64 1.19.0-1.el8            appstream  38 k
 libwayland-cursor               x86_64 1.19.0-1.el8            appstream  25 k
 libwayland-egl                  x86_64 1.19.0-1.el8            appstream  18 k
 libwayland-server               x86_64 1.19.0-1.el8            appstream  46 k
 libwbclient                     x86_64 4.14.5-7.el8_5          baseos    120 k
 libwebp                         x86_64 1.0.0-5.el8             appstream 271 k
 libwinpr                        x86_64 2:2.2.0-7.el8_5         appstream 356 k
 libxml2                         x86_64 2.9.7-9.el8_4.2         baseos    695 k
 linux-firmware                  noarch 20210702-103.gitd79c2677.el8
                                                                baseos    161 M
 llvm-libs                       x86_64 12.0.1-2.module_el8.5.0+2598+6a7729ff
                                                                appstream  23 M
 lshw                            x86_64 B.02.19.2-6.el8         baseos    340 k
 lsscsi                          x86_64 0.32-3.el8              baseos     70 k
 lua                             x86_64 5.3.4-12.el8            appstream 191 k
 lua-libs                        x86_64 5.3.4-12.el8            baseos    117 k
 lvm2                            x86_64 8:2.03.12-10.el8        baseos    1.6 M
 lvm2-libs                       x86_64 8:2.03.12-10.el8        baseos    1.2 M
 lz4                             x86_64 1.8.3-3.el8_4           baseos    102 k
 lz4-libs                        x86_64 1.8.3-3.el8_4           baseos     65 k
 man-db                          x86_64 2.7.6.1-18.el8          baseos    886 k
 man-pages-overrides             noarch 8.5.0.1-1.el8           appstream  97 k
 mcelog                          x86_64 3:175-1.el8             baseos     82 k
 mdadm                           x86_64 4.2-rc2.el8             baseos    459 k
 mesa-dri-drivers                x86_64 21.1.5-1.el8            appstream  11 M
 mesa-filesystem                 x86_64 21.1.5-1.el8            appstream  33 k
 mesa-libEGL                     x86_64 21.1.5-1.el8            appstream 134 k
 mesa-libGL                      x86_64 21.1.5-1.el8            appstream 183 k
 mesa-libgbm                     x86_64 21.1.5-1.el8            appstream  56 k
 mesa-libglapi                   x86_64 21.1.5-1.el8            appstream  64 k
 mesa-libxatracker               x86_64 21.1.5-1.el8            appstream 1.9 M
 microcode_ctl                   x86_64 4:20210608-1.el8        baseos    5.5 M
 mobile-broadband-provider-info  noarch 20210805-1.el8          baseos     76 k
 mutter                          x86_64 3.32.2-60.el8           appstream 2.5 M
 ncurses                         x86_64 6.1-9.20180224.el8      baseos    386 k
 ncurses-base                    noarch 6.1-9.20180224.el8      baseos     80 k
 ncurses-libs                    x86_64 6.1-9.20180224.el8      baseos    333 k
 net-snmp-libs                   x86_64 1:5.8-22.el8            baseos    826 k
 netcf-libs                      x86_64 0.2.8-12.module_el8.5.0+2608+72063365
                                                                appstream  75 k
 nettle                          x86_64 3.4.1-7.el8             baseos    300 k
 nfs-utils                       x86_64 1:2.3.3-46.el8          baseos    500 k
 nftables                        x86_64 1:0.9.3-21.el8          baseos    320 k
 nm-connection-editor            x86_64 1.18.0-3.el8            appstream 881 k
 nmap-ncat                       x86_64 2:7.70-6.el8            appstream 236 k
 nspr                            x86_64 4.32.0-1.el8_4          appstream 141 k
 nss                             x86_64 3.67.0-7.el8_5          appstream 740 k
 nss-softokn                     x86_64 3.67.0-7.el8_5          appstream 486 k
 nss-softokn-freebl              x86_64 3.67.0-7.el8_5          appstream 394 k
 nss-sysinit                     x86_64 3.67.0-7.el8_5          appstream  72 k
 nss-util                        x86_64 3.67.0-7.el8_5          appstream 136 k
 numactl-libs                    x86_64 2.0.12-13.el8           baseos     35 k
 open-vm-tools                   x86_64 11.2.5-2.el8            appstream 770 k
 open-vm-tools-desktop           x86_64 11.2.5-2.el8            appstream 194 k
 openjpeg2                       x86_64 2.4.0-4.el8             appstream 164 k
 openldap                        x86_64 2.4.46-18.el8           baseos    351 k
 openssh                         x86_64 8.0p1-10.el8            baseos    521 k
 openssh-askpass                 x86_64 8.0p1-10.el8            appstream  92 k
 openssh-clients                 x86_64 8.0p1-10.el8            baseos    667 k
 openssh-server                  x86_64 8.0p1-10.el8            baseos    484 k
 openssl                         x86_64 1:1.1.1k-5.el8_5        baseos    708 k
 openssl-libs                    x86_64 1:1.1.1k-5.el8_5        baseos    1.5 M
 os-prober                       x86_64 1.74-9.el8              baseos     50 k
 osinfo-db                       noarch 20210903-1.el8          appstream 249 k
 ostree                          x86_64 2021.3-1.el8            appstream 246 k
 ostree-libs                     x86_64 2021.3-1.el8            appstream 430 k
 pam                             x86_64 1.3.1-15.el8            baseos    737 k
 pango                           x86_64 1.42.4-8.el8            appstream 296 k
 parted                          x86_64 3.2-39.el8              baseos    554 k
 pcre                            x86_64 8.42-6.el8              baseos    210 k
 perl-Errno                      x86_64 1.28-420.el8            baseos     75 k
 perl-IO                         x86_64 1.38-420.el8            baseos    141 k
 perl-Math-Complex               noarch 1.59-420.el8            baseos    107 k
 perl-interpreter                x86_64 4:5.26.3-420.el8        baseos    6.3 M
 perl-libs                       x86_64 4:5.26.3-420.el8        baseos    1.6 M
 perl-macros                     x86_64 4:5.26.3-420.el8        baseos     71 k
 platform-python                 x86_64 3.6.8-41.el8.alma       baseos     84 k
 platform-python-pip             noarch 9.0.3-20.el8            baseos    1.7 M
 plymouth                        x86_64 0.9.4-10.20200615git1e36e30.el8
                                                                appstream 126 k
 plymouth-core-libs              x86_64 0.9.4-10.20200615git1e36e30.el8
                                                                appstream 121 k
 plymouth-graphics-libs          x86_64 0.9.4-10.20200615git1e36e30.el8
                                                                appstream  84 k
 plymouth-plugin-label           x86_64 0.9.4-10.20200615git1e36e30.el8
                                                                appstream  42 k
 plymouth-plugin-two-step        x86_64 0.9.4-10.20200615git1e36e30.el8
                                                                appstream  56 k
 plymouth-scripts                x86_64 0.9.4-10.20200615git1e36e30.el8
                                                                appstream  43 k
 plymouth-system-theme           x86_64 0.9.4-10.20200615git1e36e30.el8
                                                                appstream  35 k
 plymouth-theme-charge           x86_64 0.9.4-10.20200615git1e36e30.el8
                                                                appstream  40 k
 plymouth-theme-spinner          x86_64 0.9.4-10.20200615git1e36e30.el8
                                                                appstream 160 k
 podman                          x86_64 3.3.1-9.module_el8.5.0+2586+018f24d7
                                                                appstream  12 M
 podman-catatonit                x86_64 3.3.1-9.module_el8.5.0+2586+018f24d7
                                                                appstream 339 k
 policycoreutils                 x86_64 2.9-16.el8              baseos    372 k
 policycoreutils-python-utils    noarch 2.9-16.el8              baseos    251 k
 polkit                          x86_64 0.115-13.el8_5.1        baseos    153 k
 polkit-libs                     x86_64 0.115-13.el8_5.1        baseos     75 k
 poppler                         x86_64 20.11.0-3.el8_5.1       appstream 1.1 M
 poppler-glib                    x86_64 20.11.0-3.el8_5.1       appstream 173 k
 poppler-utils                   x86_64 20.11.0-3.el8_5.1       appstream 247 k
 python3-bind                    noarch 32:9.11.26-6.el8        appstream 149 k
 python3-blivet                  noarch 1:3.4.0-6.el8           appstream 1.0 M
 python3-blockdev                x86_64 2.24-7.el8              appstream  79 k
 python3-cryptography            x86_64 3.2.1-5.el8             baseos    558 k
 python3-dnf                     noarch 4.7.0-4.el8             baseos    544 k
 python3-dnf-plugins-core        noarch 4.0.21-3.el8            baseos    233 k
 python3-firewall                noarch 0.9.3-7.el8             baseos    431 k
 python3-gpg                     x86_64 1.13.1-9.el8            baseos    243 k
 python3-hawkey                  x86_64 0.63.0-3.el8            baseos    115 k
 python3-kickstart               noarch 3.16.14-1.el8           appstream 449 k
 python3-libcomps                x86_64 0.1.16-2.el8            baseos     50 k
 python3-libdnf                  x86_64 0.63.0-3.el8            baseos    776 k
 python3-librepo                 x86_64 1.14.0-2.el8            baseos     52 k
 python3-libs                    x86_64 3.6.8-41.el8.alma       baseos    7.8 M
 python3-libstoragemgmt          x86_64 1.9.1-1.el8             baseos    174 k
     replacing  python3-libstoragemgmt-clibs.x86_64 1.8.7-1.el8
 python3-libxml2                 x86_64 2.9.7-9.el8_4.2         baseos    236 k
 python3-lxml                    x86_64 4.2.3-3.el8             appstream 1.5 M
 python3-nftables                x86_64 1:0.9.3-21.el8          baseos     28 k
 python3-perf                    x86_64 4.18.0-348.12.2.el8_5   baseos    7.1 M
 python3-pip                     noarch 9.0.3-20.el8            appstream  19 k
 python3-pip-wheel               noarch 9.0.3-20.el8            baseos    1.0 M
 python3-policycoreutils         noarch 2.9-16.el8              baseos    2.2 M
 python3-psutil                  x86_64 5.4.3-11.el8            appstream 372 k
 python3-pyparted                x86_64 1:3.11.7-4.el8          appstream 123 k
 python3-rpm                     x86_64 4.14.3-19.el8           baseos    153 k
 python3-sssdconfig              noarch 2.5.2-2.el8_5.3         baseos    141 k
 python3-syspurpose              x86_64 1.28.21-3.el8.alma      baseos    311 k
 python3-unbound                 x86_64 1.7.3-17.el8            appstream 118 k
 python36                        x86_64 3.6.8-38.module_el8.5.0+2569+5c5719bc
                                                                appstream  18 k
 qemu-guest-agent                x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                                appstream 256 k
 qemu-img                        x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                                appstream 1.0 M
 qemu-kvm                        x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                                appstream 125 k
 qemu-kvm-block-curl             x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                                appstream 136 k
 qemu-kvm-block-gluster          x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                                appstream 138 k
 qemu-kvm-block-iscsi            x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                                appstream 144 k
 qemu-kvm-block-rbd              x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                                appstream 138 k
 qemu-kvm-block-ssh              x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                                appstream 139 k
 qemu-kvm-common                 x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                                appstream 1.2 M
 qemu-kvm-core                   x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                                appstream 3.5 M
 quota                           x86_64 1:4.04-14.el8           baseos    213 k
 quota-nls                       noarch 1:4.04-14.el8           baseos     94 k
 rasdaemon                       x86_64 0.6.1-6.el8             baseos    106 k
 realmd                          x86_64 0.16.3-23.el8           baseos    237 k
 rng-tools                       x86_64 6.13-1.git.d207e0b6.el8 baseos     70 k
 rpm                             x86_64 4.14.3-19.el8           baseos    542 k
 rpm-build-libs                  x86_64 4.14.3-19.el8           baseos    155 k
 rpm-libs                        x86_64 4.14.3-19.el8           baseos    343 k
 rpm-plugin-selinux              x86_64 4.14.3-19.el8           baseos     76 k
 rpm-plugin-systemd-inhibit      x86_64 4.14.3-19.el8           baseos     77 k
 rsyslog                         x86_64 8.2102.0-5.el8          appstream 751 k
 rsyslog-gnutls                  x86_64 8.2102.0-5.el8          appstream  31 k
 rsyslog-gssapi                  x86_64 8.2102.0-5.el8          appstream  33 k
 rsyslog-relp                    x86_64 8.2102.0-5.el8          appstream  32 k
 runc                            x86_64 1.0.2-1.module_el8.5.0+2586+018f24d7
                                                                appstream 3.1 M
 samba-client-libs               x86_64 4.14.5-7.el8_5          baseos    5.4 M
 samba-common                    noarch 4.14.5-7.el8_5          baseos    220 k
 samba-common-libs               x86_64 4.14.5-7.el8_5          baseos    173 k
 seabios-bin                     noarch 1.13.0-2.module_el8.5.0+2608+72063365
                                                                appstream 126 k
 seavgabios-bin                  noarch 1.13.0-2.module_el8.5.0+2608+72063365
                                                                appstream  41 k
 selinux-policy                  noarch 3.14.3-80.el8_5.2       baseos    635 k
 selinux-policy-targeted         noarch 3.14.3-80.el8_5.2       baseos     15 M
 setroubleshoot-plugins          noarch 3.3.14-1.el8            appstream 357 k
 setroubleshoot-server           x86_64 3.3.24-4.el8            appstream 387 k
 sgabios-bin                     noarch 1:0.20170427git-3.module_el8.5.0+2608+72063365
                                                                appstream  12 k
 shadow-utils                    x86_64 2:4.6-14.el8            baseos    1.2 M
 sil-nuosu-fonts                 noarch 2.200-2.el8             appstream 134 k
 slirp4netns                     x86_64 1.1.8-1.module_el8.5.0+2586+018f24d7
                                                                appstream  50 k
 sos                             noarch 4.1-5.el8.alma          baseos    705 k
 sqlite                          x86_64 3.26.0-15.el8           baseos    667 k
 sqlite-libs                     x86_64 3.26.0-15.el8           baseos    580 k
 sssd                            x86_64 2.5.2-2.el8_5.3         baseos    106 k
 sssd-ad                         x86_64 2.5.2-2.el8_5.3         baseos    270 k
 sssd-client                     x86_64 2.5.2-2.el8_5.3         baseos    204 k
 sssd-common                     x86_64 2.5.2-2.el8_5.3         baseos    1.6 M
 sssd-common-pac                 x86_64 2.5.2-2.el8_5.3         baseos    178 k
 sssd-ipa                        x86_64 2.5.2-2.el8_5.3         baseos    346 k
 sssd-kcm                        x86_64 2.5.2-2.el8_5.3         baseos    253 k
 sssd-krb5                       x86_64 2.5.2-2.el8_5.3         baseos    149 k
 sssd-krb5-common                x86_64 2.5.2-2.el8_5.3         baseos    185 k
 sssd-ldap                       x86_64 2.5.2-2.el8_5.3         baseos    208 k
 sssd-nfs-idmap                  x86_64 2.5.2-2.el8_5.3         baseos    115 k
 sssd-proxy                      x86_64 2.5.2-2.el8_5.3         baseos    147 k
 strace                          x86_64 5.7-3.el8               baseos    1.1 M
 sudo                            x86_64 1.8.29-7.el8_4.1        baseos    924 k
 tcpdump                         x86_64 14:4.9.3-2.el8          appstream 451 k
 tigervnc-license                noarch 1.11.0-9.el8            appstream  38 k
 tigervnc-server-minimal         x86_64 1.11.0-9.el8            appstream 1.1 M
 tpm2-tools                      x86_64 4.1.1-5.el8             baseos    1.0 M
 tpm2-tss                        x86_64 2.3.2-4.el8             baseos    274 k
 tuned                           noarch 2.16.0-1.el8            baseos    311 k
 tzdata                          noarch 2021e-1.el8             baseos    473 k
 udisks2                         x86_64 2.9.0-7.el8             appstream 473 k
 udisks2-iscsi                   x86_64 2.9.0-7.el8             appstream  29 k
 udisks2-lvm2                    x86_64 2.9.0-7.el8             appstream  44 k
 unbound-libs                    x86_64 1.7.3-17.el8            appstream 502 k
 unzip                           x86_64 6.0-45.el8_4            baseos    194 k
 usermode                        x86_64 1.113-2.el8             baseos    201 k
 util-linux                      x86_64 2.32.1-28.el8           baseos    2.5 M
 util-linux-user                 x86_64 2.32.1-28.el8           baseos     99 k
 vdo                             x86_64 6.2.5.74-14.el8         baseos    662 k
 vim-common                      x86_64 2:8.0.1763-16.el8       appstream 6.3 M
 vim-enhanced                    x86_64 2:8.0.1763-16.el8       appstream 1.4 M
 vim-filesystem                  noarch 2:8.0.1763-16.el8       appstream  48 k
 vim-minimal                     x86_64 2:8.0.1763-16.el8       baseos    572 k
 vino                            x86_64 3.22.0-11.el8           appstream 460 k
 virt-what                       x86_64 1.18-12.el8             baseos     35 k
 webkit2gtk3                     x86_64 2.32.3-2.el8            appstream  17 M
 webkit2gtk3-jsc                 x86_64 2.32.3-2.el8            appstream 6.3 M
 which                           x86_64 2.21-16.el8             baseos     48 k
 xdg-desktop-portal              x86_64 1.6.0-5.el8             appstream 406 k
 xfsprogs                        x86_64 5.0.0-9.el8             baseos    1.1 M
 xorg-x11-font-utils             x86_64 1:7.5-41.el8            appstream 102 k
 xorg-x11-server-Xorg            x86_64 1.20.11-2.el8           appstream 1.5 M
 xorg-x11-server-Xwayland        x86_64 21.1.1-6.el8            appstream 961 k
 xorg-x11-server-common          x86_64 1.20.11-2.el8           appstream  41 k
 yum                             noarch 4.7.0-4.el8             baseos    202 k
Installing dependencies:
 grub2-tools-efi                 x86_64 1:2.02-106.el8.alma     baseos    474 k
 ima-evm-utils                   x86_64 1.3.2-12.el8            baseos     63 k
 libbpf                          x86_64 0.4.0-1.el8             baseos    109 k
Installing weak dependencies:
 python3-beautifulsoup4          noarch 4.6.3-2.el8.1           epel      185 k
 python3-cssselect               noarch 0.9.2-10.el8            epel       40 k

Transaction Summary
================================================================================
Install    8 Packages
Upgrade  509 Packages

Total download size: 772 M
Is this ok [y/N]: y
Downloading Packages:
determining the fastest mirror (2 hosts).. done.1.2 kB/s | 651  B     00:00 ETA
(1/517): ima-evm-utils-1.3.2-12.el8.x86_64.rpm  759 kB/s |  63 kB     00:00    
(2/517): grub2-tools-efi-2.02-106.el8.alma.x86_ 1.3 MB/s | 474 kB     00:00    
(3/517): kernel-4.18.0-348.12.2.el8_5.x86_64.rp 1.7 MB/s | 7.0 MB     00:04    
(4/517): libbpf-0.4.0-1.el8.x86_64.rpm          1.1 MB/s | 109 kB     00:00    
[MIRROR] python3-beautifulsoup4-4.6.3-2.el8.1.noarch.rpm: Curl error (35): SSL connect error for https://mirrors.20i.com/pub/fedora/epel/8/Everything/x86_64/Packages/p/python3-beautifulsoup4-4.6.3-2.el8.1.noarch.rpm [error:14094410:SSL routines:ssl3_read_bytes:sslv3 alert handshake failure]
[MIRROR] python3-beautifulsoup4-4.6.3-2.el8.1.noarch.rpm: Interrupted by header callback: Server reports Content-Length: 7410 but expected size is: 189576
(5/517): python3-beautifulsoup4-4.6.3-2.el8.1.n  67 kB/s | 185 kB     00:02    
[MIRROR] python3-cssselect-0.9.2-10.el8.noarch.rpm: Curl error (35): SSL connect error for https://mirrors.20i.com/pub/fedora/epel/8/Everything/x86_64/Packages/p/python3-cssselect-0.9.2-10.el8.noarch.rpm [error:14094410:SSL routines:ssl3_read_bytes:sslv3 alert handshake failure]
[MIRROR] python3-cssselect-0.9.2-10.el8.noarch.rpm: Interrupted by header callback: Server reports Content-Length: 7396 but expected size is: 41044
(6/517): python3-cssselect-0.9.2-10.el8.noarch.  16 kB/s |  40 kB     00:02    
(7/517): ModemManager-1.10.8-4.el8.x86_64.rpm   658 kB/s | 922 kB     00:01    
(8/517): ModemManager-glib-1.10.8-4.el8.x86_64. 1.7 MB/s | 263 kB     00:00    
(9/517): NetworkManager-1.32.10-4.el8.x86_64.rp 1.2 MB/s | 2.6 MB     00:02    
(10/517): NetworkManager-adsl-1.32.10-4.el8.x86 1.8 MB/s | 143 kB     00:00    
(11/517): NetworkManager-bluetooth-1.32.10-4.el 1.9 MB/s | 169 kB     00:00    
(12/517): NetworkManager-config-server-1.32.10- 1.7 MB/s | 130 kB     00:00    
(13/517): NetworkManager-libnm-1.32.10-4.el8.x8 2.2 MB/s | 1.8 MB     00:00    
(14/517): NetworkManager-team-1.32.10-4.el8.x86 2.0 MB/s | 147 kB     00:00    
(15/517): NetworkManager-tui-1.32.10-4.el8.x86_ 1.8 MB/s | 335 kB     00:00    
(16/517): kernel-core-4.18.0-348.12.2.el8_5.x86 2.5 MB/s |  38 MB     00:14    
(17/517): NetworkManager-wifi-1.32.10-4.el8.x86 1.1 MB/s | 189 kB     00:00    
(18/517): NetworkManager-wwan-1.32.10-4.el8.x86 3.3 MB/s | 175 kB     00:00    
(19/517): almalinux-release-8.5-4.el8.x86_64.rp 1.9 MB/s |  24 kB     00:00    
(20/517): authselect-1.2.2-3.el8.x86_64.rpm     3.4 MB/s | 132 kB     00:00    
(21/517): adcli-0.8.2-12.el8.x86_64.rpm         1.5 MB/s | 117 kB     00:00    
(22/517): authselect-libs-1.2.2-3.el8.x86_64.rp 3.7 MB/s | 221 kB     00:00    
(23/517): bind-export-libs-9.11.26-6.el8.x86_64 4.1 MB/s | 1.1 MB     00:00    
(24/517): bash-4.4.20-2.el8.x86_64.rpm          1.8 MB/s | 1.5 MB     00:00    
(25/517): bluez-5.56-2.el8.alma.x86_64.rpm      2.8 MB/s | 1.3 MB     00:00    
(26/517): bluez-libs-5.56-2.el8.alma.x86_64.rpm 4.3 MB/s | 113 kB     00:00    
(27/517): bluez-obexd-5.56-2.el8.alma.x86_64.rp 3.8 MB/s | 232 kB     00:00    
(28/517): kernel-modules-4.18.0-348.12.2.el8_5. 1.7 MB/s |  30 MB     00:17    
(29/517): ca-certificates-2021.2.50-80.0.el8_4. 2.6 MB/s | 389 kB     00:00    
(30/517): chkconfig-1.19.1-1.el8.x86_64.rpm     2.8 MB/s | 197 kB     00:00    
(31/517): chrony-4.1-1.el8.alma.x86_64.rpm      2.6 MB/s | 326 kB     00:00    
(32/517): binutils-2.30-108.el8_5.1.x86_64.rpm  2.2 MB/s | 5.8 MB     00:02    
(33/517): cockpit-251.1-1.el8.x86_64.rpm        1.6 MB/s |  77 kB     00:00    
(34/517): cockpit-bridge-251.1-1.el8.x86_64.rpm 1.4 MB/s | 538 kB     00:00    
(35/517): cockpit-ws-251.1-1.el8.x86_64.rpm     846 kB/s | 1.3 MB     00:01    
(36/517): bpftool-4.18.0-348.12.2.el8_5.x86_64. 1.9 MB/s | 7.7 MB     00:04    
(37/517): coreutils-8.30-12.el8.x86_64.rpm      2.4 MB/s | 1.2 MB     00:00    
(38/517): crypto-policies-20210617-1.gitc776d3e 2.0 MB/s |  62 kB     00:00    
(39/517): cockpit-system-251.1-1.el8.noarch.rpm 1.3 MB/s | 3.2 MB     00:02    
(40/517): crypto-policies-scripts-20210617-1.gi 2.4 MB/s |  82 kB     00:00    
(41/517): curl-7.61.1-22.el8.x86_64.rpm         2.3 MB/s | 350 kB     00:00    
(42/517): cups-libs-2.2.6-40.el8.x86_64.rpm     2.5 MB/s | 432 kB     00:00    
(43/517): dbus-1.12.8-14.el8.x86_64.rpm         2.8 MB/s |  40 kB     00:00    
(44/517): dbus-common-1.12.8-14.el8.noarch.rpm  2.2 MB/s |  45 kB     00:00    
(45/517): dbus-libs-1.12.8-14.el8.x86_64.rpm    2.2 MB/s | 183 kB     00:00    
(46/517): dbus-daemon-1.12.8-14.el8.x86_64.rpm  2.4 MB/s | 239 kB     00:00    
(47/517): dbus-tools-1.12.8-14.el8.x86_64.rpm   2.3 MB/s |  84 kB     00:00    
(48/517): device-mapper-event-1.02.177-10.el8.x 2.3 MB/s | 270 kB     00:00    
(49/517): device-mapper-1.02.177-10.el8.x86_64. 2.5 MB/s | 376 kB     00:00    
(50/517): device-mapper-event-libs-1.02.177-10. 2.4 MB/s | 269 kB     00:00    
(51/517): device-mapper-libs-1.02.177-10.el8.x8 2.5 MB/s | 408 kB     00:00    
(52/517): device-mapper-multipath-0.8.4-17.el8. 2.3 MB/s | 196 kB     00:00    
(53/517): coreutils-common-8.30-12.el8.x86_64.r 2.7 MB/s | 2.0 MB     00:00    
(54/517): device-mapper-multipath-libs-0.8.4-17 2.5 MB/s | 322 kB     00:00    
(55/517): dhcp-client-4.3.6-45.el8.x86_64.rpm   2.4 MB/s | 317 kB     00:00    
(56/517): dhcp-common-4.3.6-45.el8.noarch.rpm   2.6 MB/s | 206 kB     00:00    
(57/517): dmidecode-3.2-10.el8.x86_64.rpm       2.2 MB/s |  90 kB     00:00    
(58/517): dhcp-libs-4.3.6-45.el8.x86_64.rpm     2.4 MB/s | 147 kB     00:00    
(59/517): dnf-data-4.7.0-4.el8.noarch.rpm       2.0 MB/s | 153 kB     00:00    
(60/517): device-mapper-persistent-data-0.9.0-4 2.8 MB/s | 935 kB     00:00    
(61/517): dnf-plugins-core-4.0.21-3.el8.noarch. 2.1 MB/s |  69 kB     00:00    
(62/517): dracut-config-rescue-049-191.git20210 1.9 MB/s |  60 kB     00:00    
(63/517): dracut-network-049-191.git20210920.el 2.1 MB/s | 107 kB     00:00    
(64/517): dracut-049-191.git20210920.el8.x86_64 3.0 MB/s | 373 kB     00:00    
(65/517): dracut-squash-049-191.git20210920.el8 1.7 MB/s |  60 kB     00:00    
(66/517): dnf-4.7.0-4.el8.noarch.rpm            1.9 MB/s | 543 kB     00:00    
(67/517): efibootmgr-16-1.el8.0.1.x86_64.rpm    1.6 MB/s |  46 kB     00:00    
(68/517): elfutils-debuginfod-client-0.185-1.el 1.9 MB/s |  65 kB     00:00    
(69/517): elfutils-default-yama-scope-0.185-1.e 1.7 MB/s |  48 kB     00:00    
(70/517): emacs-filesystem-26.1-7.el8.noarch.rp 1.5 MB/s |  69 kB     00:00    
(71/517): e2fsprogs-libs-1.45.6-2.el8.x86_64.rp 1.1 MB/s | 232 kB     00:00    
(72/517): file-5.33-20.el8.x86_64.rpm           894 kB/s |  76 kB     00:00    
(73/517): ethtool-5.8-7.el8.x86_64.rpm          1.7 MB/s | 208 kB     00:00    
(74/517): file-libs-5.33-20.el8.x86_64.rpm      1.4 MB/s | 542 kB     00:00    
(75/517): e2fsprogs-1.45.6-2.el8.x86_64.rpm     1.4 MB/s | 1.0 MB     00:00    
(76/517): firewalld-filesystem-0.9.3-7.el8.noar 1.3 MB/s |  76 kB     00:00    
(77/517): firewalld-0.9.3-7.el8.noarch.rpm      3.5 MB/s | 501 kB     00:00    
(78/517): filesystem-3.8-6.el8.x86_64.rpm       1.7 MB/s | 1.1 MB     00:00    
(79/517): fontconfig-2.13.1-4.el8.x86_64.rpm    1.6 MB/s | 273 kB     00:00    
(80/517): glusterfs-6.0-56.4.el8.x86_64.rpm     760 kB/s | 666 kB     00:00    
(81/517): fwupd-1.5.9-1.el8_4.alma.x86_64.rpm   1.0 MB/s | 2.8 MB     00:02    
(82/517): glusterfs-client-xlators-6.0-56.4.el8 486 kB/s | 882 kB     00:01    
(83/517): glusterfs-libs-6.0-56.4.el8.x86_64.rp 1.5 MB/s | 417 kB     00:00    
(84/517): gpgme-1.13.1-9.el8.x86_64.rpm         2.6 MB/s | 335 kB     00:00    
(85/517): glib2-2.56.4-156.el8.x86_64.rpm       833 kB/s | 2.5 MB     00:03    
(86/517): gnutls-3.6.16-4.el8.x86_64.rpm        2.1 MB/s | 1.0 MB     00:00    
(87/517): grub2-efi-x64-2.02-106.el8.alma.x86_6 2.2 MB/s | 481 kB     00:00    
(88/517): grub2-common-2.02-106.el8.alma.noarch 2.2 MB/s | 890 kB     00:00    
(89/517): grub2-tools-minimal-2.02-106.el8.alma 2.0 MB/s | 209 kB     00:00    
(90/517): grubby-8.40-42.el8.x86_64.rpm         2.2 MB/s |  48 kB     00:00    
(91/517): grub2-tools-extra-2.02-106.el8.alma.x 2.5 MB/s | 1.1 MB     00:00    
(92/517): hdparm-9.54-4.el8.x86_64.rpm          1.2 MB/s |  99 kB     00:00    
(93/517): gsettings-desktop-schemas-3.32.0-6.el 2.3 MB/s | 632 kB     00:00    
(94/517): grub2-tools-2.02-106.el8.alma.x86_64. 1.1 MB/s | 2.0 MB     00:01    
(95/517): iproute-5.12.0-4.el8.x86_64.rpm       547 kB/s | 774 kB     00:01    
(96/517): iproute-tc-5.12.0-4.el8.x86_64.rpm    527 kB/s | 460 kB     00:00    
(97/517): iptables-ebtables-1.8.4-20.el8.x86_64 1.1 MB/s |  71 kB     00:00    
(98/517): iptables-libs-1.8.4-20.el8.x86_64.rpm 415 kB/s | 106 kB     00:00    
(99/517): iptables-1.8.4-20.el8.x86_64.rpm      480 kB/s | 583 kB     00:01    
(100/517): iscsi-initiator-utils-iscsiuio-6.2.1 1.0 MB/s |  99 kB     00:00    
(101/517): iwl100-firmware-39.31.5.1-103.el8.1. 1.8 MB/s | 171 kB     00:00    
(102/517): iscsi-initiator-utils-6.2.1.4-4.git0 761 kB/s | 377 kB     00:00    
(103/517): hwdata-0.314-8.10.el8.noarch.rpm     580 kB/s | 1.7 MB     00:02    
(104/517): iwl1000-firmware-39.31.5.1-103.el8.1 1.6 MB/s | 234 kB     00:00    
(105/517): iwl105-firmware-18.168.6.1-103.el8.1 1.0 MB/s | 255 kB     00:00    
(106/517): iwl135-firmware-18.168.6.1-103.el8.1 1.4 MB/s | 264 kB     00:00    
(107/517): iwl2000-firmware-18.168.6.1-103.el8. 1.4 MB/s | 258 kB     00:00    
(108/517): iwl3945-firmware-15.32.2.9-103.el8.1 1.7 MB/s | 109 kB     00:00    
(109/517): iwl4965-firmware-228.61.2.24-103.el8 2.0 MB/s | 122 kB     00:00    
(110/517): iwl2030-firmware-18.168.6.1-103.el8. 1.3 MB/s | 267 kB     00:00    
(111/517): iwl5150-firmware-8.24.2.2-103.el8.1. 1.9 MB/s | 168 kB     00:00    
(112/517): iwl5000-firmware-8.83.5.1_1-103.el8. 2.7 MB/s | 315 kB     00:00    
(113/517): iwl6000-firmware-9.221.4.1-103.el8.1 2.3 MB/s | 188 kB     00:00    
(114/517): iwl6000g2a-firmware-18.168.6.1-103.e 3.1 MB/s | 331 kB     00:00    
(115/517): iwl6050-firmware-41.28.5.1-103.el8.1 2.8 MB/s | 264 kB     00:00    
(116/517): iwl6000g2b-firmware-18.168.6.1-103.e 2.4 MB/s | 331 kB     00:00    
(117/517): json-c-0.13.1-2.el8.x86_64.rpm       1.7 MB/s |  39 kB     00:00    
(118/517): iwl3160-firmware-25.30.13.0-103.el8. 1.9 MB/s | 1.7 MB     00:00    
(119/517): kernel-tools-4.18.0-348.12.2.el8_5.x 2.5 MB/s | 7.2 MB     00:02    
(120/517): kexec-tools-2.0.20-57.el8_5.1.x86_64 2.6 MB/s | 513 kB     00:00    
(121/517): keyutils-1.5.10-9.el8.x86_64.rpm     1.7 MB/s |  65 kB     00:00    
(122/517): keyutils-libs-1.5.10-9.el8.x86_64.rp 1.3 MB/s |  33 kB     00:00    
(123/517): kmod-25-18.el8.x86_64.rpm            2.7 MB/s | 125 kB     00:00    
(124/517): kmod-kvdo-6.2.5.72-81.el8.x86_64.rpm 530 kB/s | 340 kB     00:00    
(125/517): kmod-libs-25-18.el8.x86_64.rpm       506 kB/s |  67 kB     00:00    
(126/517): kernel-tools-libs-4.18.0-348.12.2.el 1.9 MB/s | 7.0 MB     00:03    
(127/517): kpartx-0.8.4-17.el8.x86_64.rpm       201 kB/s | 112 kB     00:00    
(128/517): libblkid-2.32.1-28.el8.x86_64.rpm    771 kB/s | 216 kB     00:00    
(129/517): libcap-2.26-5.el8.x86_64.rpm         1.2 MB/s |  59 kB     00:00    
(130/517): libcap-ng-0.7.11-1.el8.x86_64.rpm    1.3 MB/s |  32 kB     00:00    
(131/517): libcom_err-1.45.6-2.el8.x86_64.rpm   1.5 MB/s |  48 kB     00:00    
(132/517): libcomps-0.1.16-2.el8.x86_64.rpm     1.7 MB/s |  81 kB     00:00    
(133/517): krb5-libs-1.18.2-14.el8.x86_64.rpm   934 kB/s | 839 kB     00:00    
(134/517): libcurl-7.61.1-22.el8.x86_64.rpm     2.5 MB/s | 299 kB     00:00    
(135/517): libdb-utils-5.3.28-42.el8_4.x86_64.r 2.9 MB/s | 149 kB     00:00    
(136/517): libdnf-0.63.0-3.el8.x86_64.rpm       3.1 MB/s | 699 kB     00:00    
(137/517): libertas-usb8388-firmware-20210702-1 2.1 MB/s | 134 kB     00:00    
(138/517): libfdisk-2.32.1-28.el8.x86_64.rpm    1.4 MB/s | 250 kB     00:00    
(139/517): libdb-5.3.28-42.el8_4.x86_64.rpm     1.3 MB/s | 750 kB     00:00    
(140/517): libipa_hbac-2.5.2-2.el8_5.3.x86_64.r 985 kB/s | 115 kB     00:00    
(141/517): libgcrypt-1.8.5-6.el8.x86_64.rpm     1.2 MB/s | 462 kB     00:00    
(142/517): libmodulemd-2.13.0-1.el8.x86_64.rpm  1.0 MB/s | 232 kB     00:00    
(143/517): libldb-2.3.0-2.el8.x86_64.rpm        270 kB/s | 187 kB     00:00    
(144/517): libndp-1.7-6.el8.x86_64.rpm          762 kB/s |  39 kB     00:00    
(145/517): libmount-2.32.1-28.el8.x86_64.rpm    720 kB/s | 233 kB     00:00    
(146/517): libnfsidmap-2.3.3-46.el8.x86_64.rpm  1.0 MB/s | 120 kB     00:00    
(147/517): libqmi-utils-1.24.0-3.el8.x86_64.rpm 894 kB/s | 182 kB     00:00    
(148/517): librepo-1.14.0-2.el8.x86_64.rpm      1.2 MB/s |  92 kB     00:00    
(149/517): libqmi-1.24.0-3.el8.x86_64.rpm       875 kB/s | 566 kB     00:00    
(150/517): libsepol-2.9-3.el8.x86_64.rpm        1.0 MB/s | 339 kB     00:00    
(151/517): libsmartcols-2.32.1-28.el8.x86_64.rp 1.2 MB/s | 175 kB     00:00    
(152/517): libsmbclient-4.14.5-7.el8_5.x86_64.r 1.0 MB/s | 147 kB     00:00    
(153/517): libss-1.45.6-2.el8.x86_64.rpm        1.2 MB/s |  52 kB     00:00    
(154/517): libssh-0.9.4-3.el8.x86_64.rpm        1.4 MB/s | 214 kB     00:00    
(155/517): libssh-config-0.9.4-3.el8.noarch.rpm 680 kB/s |  18 kB     00:00    
(156/517): libsss_autofs-2.5.2-2.el8_5.3.x86_64 1.2 MB/s | 117 kB     00:00    
(157/517): libsss_certmap-2.5.2-2.el8_5.3.x86_6 1.7 MB/s | 154 kB     00:00    
(158/517): libsolv-0.7.19-1.el8.x86_64.rpm      830 kB/s | 373 kB     00:00    
(159/517): libsss_idmap-2.5.2-2.el8_5.3.x86_64. 1.7 MB/s | 119 kB     00:00    
(160/517): libsss_nss_idmap-2.5.2-2.el8_5.3.x86 1.8 MB/s | 126 kB     00:00    
(161/517): libsss_sudo-2.5.2-2.el8_5.3.x86_64.r 1.5 MB/s | 115 kB     00:00    
(162/517): libstoragemgmt-1.9.1-1.el8.x86_64.rp 1.9 MB/s | 245 kB     00:00    
(163/517): libstdc++-8.5.0-4.el8_5.alma.x86_64. 2.2 MB/s | 452 kB     00:00    
(164/517): libtalloc-2.3.2-1.el8.x86_64.rpm     1.7 MB/s |  48 kB     00:00    
(165/517): libtevent-0.11.0-0.el8.x86_64.rpm    1.9 MB/s |  49 kB     00:00    
(166/517): libtirpc-1.1.4-5.el8.x86_64.rpm      2.0 MB/s | 111 kB     00:00    
(167/517): libuuid-2.32.1-28.el8.x86_64.rpm     2.6 MB/s |  95 kB     00:00    
(168/517): libwbclient-4.14.5-7.el8_5.x86_64.rp 1.7 MB/s | 120 kB     00:00    
(169/517): libxml2-2.9.7-9.el8_4.2.x86_64.rpm   644 kB/s | 695 kB     00:01    
(170/517): lshw-B.02.19.2-6.el8.x86_64.rpm      937 kB/s | 340 kB     00:00    
(171/517): lsscsi-0.32-3.el8.x86_64.rpm         1.6 MB/s |  70 kB     00:00    
(172/517): lua-libs-5.3.4-12.el8.x86_64.rpm     1.8 MB/s | 117 kB     00:00    
(173/517): lvm2-2.03.12-10.el8.x86_64.rpm       2.1 MB/s | 1.6 MB     00:00    
(174/517): lvm2-libs-2.03.12-10.el8.x86_64.rpm  2.2 MB/s | 1.2 MB     00:00    
(175/517): lz4-1.8.3-3.el8_4.x86_64.rpm         1.8 MB/s | 102 kB     00:00    
(176/517): lz4-libs-1.8.3-3.el8_4.x86_64.rpm    2.1 MB/s |  65 kB     00:00    
(177/517): iwl7260-firmware-25.30.13.0-103.el8. 1.6 MB/s |  18 MB     00:11    
(178/517): mcelog-175-1.el8.x86_64.rpm          2.1 MB/s |  82 kB     00:00    
(179/517): mdadm-4.2-rc2.el8.x86_64.rpm         2.5 MB/s | 459 kB     00:00    
(180/517): man-db-2.7.6.1-18.el8.x86_64.rpm     2.1 MB/s | 886 kB     00:00    
(181/517): mobile-broadband-provider-info-20210 2.2 MB/s |  76 kB     00:00    
(182/517): ncurses-6.1-9.20180224.el8.x86_64.rp 2.2 MB/s | 386 kB     00:00    
(183/517): ncurses-base-6.1-9.20180224.el8.noar 2.2 MB/s |  80 kB     00:00    
(184/517): ncurses-libs-6.1-9.20180224.el8.x86_ 1.9 MB/s | 333 kB     00:00    
(185/517): net-snmp-libs-5.8-22.el8.x86_64.rpm  994 kB/s | 826 kB     00:00    
(186/517): nettle-3.4.1-7.el8.x86_64.rpm        456 kB/s | 300 kB     00:00    
(187/517): nfs-utils-2.3.3-46.el8.x86_64.rpm    1.0 MB/s | 500 kB     00:00    
(188/517): nftables-0.9.3-21.el8.x86_64.rpm     2.3 MB/s | 320 kB     00:00    
(189/517): numactl-libs-2.0.12-13.el8.x86_64.rp 1.6 MB/s |  35 kB     00:00    
(190/517): openldap-2.4.46-18.el8.x86_64.rpm    2.3 MB/s | 351 kB     00:00    
(191/517): openssh-8.0p1-10.el8.x86_64.rpm      2.4 MB/s | 521 kB     00:00    
(192/517): microcode_ctl-20210608-1.el8.x86_64. 1.8 MB/s | 5.5 MB     00:03    
(193/517): openssh-server-8.0p1-10.el8.x86_64.r 2.4 MB/s | 484 kB     00:00    
(194/517): openssh-clients-8.0p1-10.el8.x86_64. 2.2 MB/s | 667 kB     00:00    
(195/517): openssl-1.1.1k-5.el8_5.x86_64.rpm    1.9 MB/s | 708 kB     00:00    
(196/517): os-prober-1.74-9.el8.x86_64.rpm      1.9 MB/s |  50 kB     00:00    
(197/517): pam-1.3.1-15.el8.x86_64.rpm          2.6 MB/s | 737 kB     00:00    
(198/517): openssl-libs-1.1.1k-5.el8_5.x86_64.r 1.8 MB/s | 1.5 MB     00:00    
(199/517): parted-3.2-39.el8.x86_64.rpm         2.6 MB/s | 554 kB     00:00    
(200/517): perl-Errno-1.28-420.el8.x86_64.rpm   2.1 MB/s |  75 kB     00:00    
(201/517): pcre-8.42-6.el8.x86_64.rpm           2.2 MB/s | 210 kB     00:00    
(202/517): perl-IO-1.38-420.el8.x86_64.rpm      2.3 MB/s | 141 kB     00:00    
(203/517): perl-Math-Complex-1.59-420.el8.noarc 2.2 MB/s | 107 kB     00:00    
(204/517): perl-libs-5.26.3-420.el8.x86_64.rpm  1.7 MB/s | 1.6 MB     00:00    
(205/517): perl-macros-5.26.3-420.el8.x86_64.rp 1.7 MB/s |  71 kB     00:00    
(206/517): platform-python-3.6.8-41.el8.alma.x8 1.7 MB/s |  84 kB     00:00    
(207/517): platform-python-pip-9.0.3-20.el8.noa 2.1 MB/s | 1.7 MB     00:00    
(208/517): policycoreutils-2.9-16.el8.x86_64.rp 2.5 MB/s | 372 kB     00:00    
(209/517): policycoreutils-python-utils-2.9-16. 2.4 MB/s | 251 kB     00:00    
(210/517): polkit-0.115-13.el8_5.1.x86_64.rpm   1.9 MB/s | 153 kB     00:00    
(211/517): polkit-libs-0.115-13.el8_5.1.x86_64. 2.0 MB/s |  75 kB     00:00    
(212/517): python3-cryptography-3.2.1-5.el8.x86 3.0 MB/s | 558 kB     00:00    
(213/517): python3-dnf-4.7.0-4.el8.noarch.rpm   3.7 MB/s | 544 kB     00:00    
(214/517): perl-interpreter-5.26.3-420.el8.x86_ 2.4 MB/s | 6.3 MB     00:02    
(215/517): python3-dnf-plugins-core-4.0.21-3.el 2.5 MB/s | 233 kB     00:00    
(216/517): python3-gpg-1.13.1-9.el8.x86_64.rpm  3.4 MB/s | 243 kB     00:00    
(217/517): python3-hawkey-0.63.0-3.el8.x86_64.r 2.9 MB/s | 115 kB     00:00    
(218/517): python3-libcomps-0.1.16-2.el8.x86_64 3.1 MB/s |  50 kB     00:00    
(219/517): python3-firewall-0.9.3-7.el8.noarch. 2.2 MB/s | 431 kB     00:00    
(220/517): python3-librepo-1.14.0-2.el8.x86_64. 1.7 MB/s |  52 kB     00:00    
(221/517): python3-libdnf-0.63.0-3.el8.x86_64.r 3.3 MB/s | 776 kB     00:00    
(222/517): python3-libstoragemgmt-1.9.1-1.el8.x 3.0 MB/s | 174 kB     00:00    
(223/517): python3-libxml2-2.9.7-9.el8_4.2.x86_ 3.0 MB/s | 236 kB     00:00    
(224/517): python3-nftables-0.9.3-21.el8.x86_64 1.6 MB/s |  28 kB     00:00    
(225/517): python3-perf-4.18.0-348.12.2.el8_5.x 2.5 MB/s | 7.1 MB     00:02    
(226/517): python3-libs-3.6.8-41.el8.alma.x86_6 2.5 MB/s | 7.8 MB     00:03    
(227/517): python3-policycoreutils-2.9-16.el8.n 4.2 MB/s | 2.2 MB     00:00    
(228/517): python3-rpm-4.14.3-19.el8.x86_64.rpm 3.7 MB/s | 153 kB     00:00    
(229/517): python3-pip-wheel-9.0.3-20.el8.noarc 1.7 MB/s | 1.0 MB     00:00    
(230/517): python3-sssdconfig-2.5.2-2.el8_5.3.n 4.5 MB/s | 141 kB     00:00    
(231/517): quota-4.04-14.el8.x86_64.rpm         4.3 MB/s | 213 kB     00:00    
(232/517): quota-nls-4.04-14.el8.noarch.rpm     2.8 MB/s |  94 kB     00:00    
(233/517): rasdaemon-0.6.1-6.el8.x86_64.rpm     2.9 MB/s | 106 kB     00:00    
(234/517): python3-syspurpose-1.28.21-3.el8.alm 2.0 MB/s | 311 kB     00:00    
(235/517): realmd-0.16.3-23.el8.x86_64.rpm      4.4 MB/s | 237 kB     00:00    
(236/517): rng-tools-6.13-1.git.d207e0b6.el8.x8 1.3 MB/s |  70 kB     00:00    
(237/517): rpm-build-libs-4.14.3-19.el8.x86_64. 1.4 MB/s | 155 kB     00:00    
(238/517): rpm-4.14.3-19.el8.x86_64.rpm         4.1 MB/s | 542 kB     00:00    
(239/517): rpm-plugin-selinux-4.14.3-19.el8.x86 2.3 MB/s |  76 kB     00:00    
(240/517): rpm-plugin-systemd-inhibit-4.14.3-19 2.4 MB/s |  77 kB     00:00    
(241/517): rpm-libs-4.14.3-19.el8.x86_64.rpm    1.7 MB/s | 343 kB     00:00    
(242/517): samba-common-4.14.5-7.el8_5.noarch.r 1.3 MB/s | 220 kB     00:00    
(243/517): samba-common-libs-4.14.5-7.el8_5.x86 1.6 MB/s | 173 kB     00:00    
(244/517): selinux-policy-3.14.3-80.el8_5.2.noa 1.6 MB/s | 635 kB     00:00    
(245/517): samba-client-libs-4.14.5-7.el8_5.x86 2.6 MB/s | 5.4 MB     00:02    
(246/517): shadow-utils-4.6-14.el8.x86_64.rpm   1.0 MB/s | 1.2 MB     00:01    
(247/517): sos-4.1-5.el8.alma.noarch.rpm        2.3 MB/s | 705 kB     00:00    
(248/517): sqlite-3.26.0-15.el8.x86_64.rpm      1.4 MB/s | 667 kB     00:00    
(249/517): sqlite-libs-3.26.0-15.el8.x86_64.rpm 1.2 MB/s | 580 kB     00:00    
(250/517): sssd-2.5.2-2.el8_5.3.x86_64.rpm      1.6 MB/s | 106 kB     00:00    
(251/517): sssd-ad-2.5.2-2.el8_5.3.x86_64.rpm   2.0 MB/s | 270 kB     00:00    
(252/517): sssd-client-2.5.2-2.el8_5.3.x86_64.r 2.4 MB/s | 204 kB     00:00    
(253/517): sssd-common-2.5.2-2.el8_5.3.x86_64.r 2.6 MB/s | 1.6 MB     00:00    
(254/517): sssd-common-pac-2.5.2-2.el8_5.3.x86_ 2.2 MB/s | 178 kB     00:00    
(255/517): sssd-ipa-2.5.2-2.el8_5.3.x86_64.rpm  1.8 MB/s | 346 kB     00:00    
(256/517): sssd-kcm-2.5.2-2.el8_5.3.x86_64.rpm  1.8 MB/s | 253 kB     00:00    
(257/517): sssd-krb5-2.5.2-2.el8_5.3.x86_64.rpm 2.0 MB/s | 149 kB     00:00    
(258/517): sssd-krb5-common-2.5.2-2.el8_5.3.x86 1.8 MB/s | 185 kB     00:00    
(259/517): sssd-ldap-2.5.2-2.el8_5.3.x86_64.rpm 1.6 MB/s | 208 kB     00:00    
(260/517): sssd-nfs-idmap-2.5.2-2.el8_5.3.x86_6 1.5 MB/s | 115 kB     00:00    
(261/517): sssd-proxy-2.5.2-2.el8_5.3.x86_64.rp 1.3 MB/s | 147 kB     00:00    
(262/517): strace-5.7-3.el8.x86_64.rpm          1.9 MB/s | 1.1 MB     00:00    
(263/517): sudo-1.8.29-7.el8_4.1.x86_64.rpm     2.5 MB/s | 924 kB     00:00    
(264/517): tpm2-tools-4.1.1-5.el8.x86_64.rpm    1.7 MB/s | 1.0 MB     00:00    
(265/517): tpm2-tss-2.3.2-4.el8.x86_64.rpm      2.6 MB/s | 274 kB     00:00    
(266/517): tuned-2.16.0-1.el8.noarch.rpm        820 kB/s | 311 kB     00:00    
(267/517): tzdata-2021e-1.el8.noarch.rpm        2.2 MB/s | 473 kB     00:00    
(268/517): unzip-6.0-45.el8_4.x86_64.rpm        2.6 MB/s | 194 kB     00:00    
(269/517): usermode-1.113-2.el8.x86_64.rpm      3.0 MB/s | 201 kB     00:00    
(270/517): util-linux-2.32.1-28.el8.x86_64.rpm  1.4 MB/s | 2.5 MB     00:01    
(271/517): util-linux-user-2.32.1-28.el8.x86_64 2.0 MB/s |  99 kB     00:00    
(272/517): vdo-6.2.5.74-14.el8.x86_64.rpm       2.5 MB/s | 662 kB     00:00    
(273/517): selinux-policy-targeted-3.14.3-80.el 1.5 MB/s |  15 MB     00:10    
(274/517): virt-what-1.18-12.el8.x86_64.rpm     1.7 MB/s |  35 kB     00:00    
(275/517): which-2.21-16.el8.x86_64.rpm         2.3 MB/s |  48 kB     00:00    
(276/517): vim-minimal-8.0.1763-16.el8.x86_64.r 2.4 MB/s | 572 kB     00:00    
(277/517): yum-4.7.0-4.el8.noarch.rpm           2.3 MB/s | 202 kB     00:00    
(278/517): accountsservice-0.6.55-2.el8_5.2.x86 2.1 MB/s | 138 kB     00:00    
(279/517): accountsservice-libs-0.6.55-2.el8_5. 1.8 MB/s |  95 kB     00:00    
(280/517): xfsprogs-5.0.0-9.el8.x86_64.rpm      1.6 MB/s | 1.1 MB     00:00    
(281/517): almalinux-logos-84.5-1.el8.x86_64.rp 1.5 MB/s | 362 kB     00:00    
(282/517): alsa-lib-1.2.5-4.el8.x86_64.rpm      1.9 MB/s | 488 kB     00:00    
(283/517): alsa-ucm-1.2.5-4.el8.noarch.rpm      1.8 MB/s |  77 kB     00:00    
(284/517): almalinux-backgrounds-84.5-1.el8.noa 3.4 MB/s | 3.4 MB     00:01    
(285/517): alsa-utils-1.2.5-3.el8.x86_64.rpm    2.4 MB/s | 1.1 MB     00:00    
(286/517): anaconda-gui-33.16.5.6-1.el8.alma.x8 2.9 MB/s | 572 kB     00:00    
(287/517): anaconda-tui-33.16.5.6-1.el8.alma.x8 2.8 MB/s | 287 kB     00:00    
(288/517): anaconda-widgets-33.16.5.6-1.el8.alm 2.8 MB/s | 221 kB     00:00    
(289/517): authselect-compat-1.2.2-3.el8.x86_64 2.3 MB/s |  37 kB     00:00    
(290/517): bind-libs-9.11.26-6.el8.x86_64.rpm   2.8 MB/s | 173 kB     00:00    
(291/517): bind-libs-lite-9.11.26-6.el8.x86_64. 3.2 MB/s | 1.2 MB     00:00    
(292/517): bind-license-9.11.26-6.el8.noarch.rp 2.6 MB/s | 101 kB     00:00    
(293/517): anaconda-core-33.16.5.6-1.el8.alma.x 2.0 MB/s | 2.4 MB     00:01    
(294/517): bind-utils-9.11.26-6.el8.x86_64.rpm  3.1 MB/s | 450 kB     00:00    
(295/517): blivet-data-3.4.0-6.el8.noarch.rpm   2.2 MB/s | 245 kB     00:00    
(296/517): cockpit-packagekit-251.1-1.el8.noarc 2.8 MB/s | 702 kB     00:00    
(297/517): cockpit-podman-33-1.module_el8.5.0+2 2.0 MB/s | 436 kB     00:00    
(298/517): cockpit-storaged-251.1-1.el8.noarch. 1.6 MB/s | 654 kB     00:00    
(299/517): compat-exiv2-026-0.26-6.el8.x86_64.r 1.4 MB/s | 888 kB     00:00    
(300/517): conmon-2.0.29-1.module_el8.5.0+2586+ 1.9 MB/s |  51 kB     00:00    
(301/517): container-selinux-2.167.0-1.module_e 2.0 MB/s |  53 kB     00:00    
(302/517): buildah-1.22.3-2.module_el8.5.0+2586 1.9 MB/s | 7.7 MB     00:04    
(303/517): containers-common-1-2.module_el8.5.0 1.6 MB/s |  78 kB     00:00    
(304/517): criu-3.15-3.module_el8.5.0+2586+018f 2.6 MB/s | 517 kB     00:00    
(305/517): cups-2.2.6-40.el8.x86_64.rpm         2.5 MB/s | 1.4 MB     00:00    
(306/517): cups-client-2.2.6-40.el8.x86_64.rpm  1.6 MB/s | 168 kB     00:00    
(307/517): cups-filesystem-2.2.6-40.el8.noarch. 1.8 MB/s | 108 kB     00:00    
(308/517): cups-filters-1.20.0-27.el8.x86_64.rp 1.4 MB/s | 778 kB     00:00    
(309/517): cups-filters-libs-1.20.0-27.el8.x86_ 1.6 MB/s | 134 kB     00:00    
(310/517): cups-ipptool-2.2.6-40.el8.x86_64.rpm 1.2 MB/s | 5.8 MB     00:04    
(311/517): dbus-x11-1.12.8-14.el8.x86_64.rpm    210 kB/s |  58 kB     00:00    
(312/517): dnsmasq-2.79-19.el8.x86_64.rpm       1.2 MB/s | 318 kB     00:00    
(313/517): containernetworking-plugins-1.0.0-1. 1.7 MB/s |  19 MB     00:11    
(314/517): edk2-ovmf-20210527gite1999b264f1f-3. 1.6 MB/s | 3.6 MB     00:02    
(315/517): evince-libs-3.28.4-14.el8.x86_64.rpm 2.2 MB/s | 399 kB     00:00    
(316/517): evince-nautilus-3.28.4-14.el8.x86_64 2.1 MB/s |  48 kB     00:00    
(317/517): evince-3.28.4-14.el8.x86_64.rpm      1.7 MB/s | 1.6 MB     00:00    
(318/517): evolution-data-server-langpacks-3.28 2.7 MB/s | 1.4 MB     00:00    
(319/517): evolution-data-server-3.28.5-17.el8. 2.1 MB/s | 2.1 MB     00:01    
(320/517): exiv2-0.27.4-5.el8.x86_64.rpm        2.7 MB/s | 1.0 MB     00:00    
(321/517): exiv2-libs-0.27.4-5.el8.x86_64.rpm   2.2 MB/s | 870 kB     00:00    
(322/517): file-roller-3.28.1-4.el8.x86_64.rpm  2.6 MB/s | 1.3 MB     00:00    
(323/517): flatpak-1.8.5-5.el8_5.x86_64.rpm     3.1 MB/s | 1.6 MB     00:00    
(324/517): flatpak-libs-1.8.5-5.el8_5.x86_64.rp 1.6 MB/s | 439 kB     00:00    
(325/517): flatpak-selinux-1.8.5-5.el8_5.noarch 1.5 MB/s |  26 kB     00:00    
(326/517): flatpak-session-helper-1.8.5-5.el8_5 1.5 MB/s |  74 kB     00:00    
(327/517): freerdp-libs-2.2.0-7.el8_5.x86_64.rp 1.3 MB/s | 891 kB     00:00    
(328/517): fstrm-0.6.1-2.el8.x86_64.rpm         2.0 MB/s |  28 kB     00:00    
(329/517): fuse-overlayfs-1.7.1-1.module_el8.5. 2.6 MB/s |  71 kB     00:00    
(330/517): gdm-40.0-15.el8.x86_64.rpm           2.8 MB/s | 880 kB     00:00    
(331/517): glusterfs-api-6.0-56.4.el8.x86_64.rp 2.0 MB/s |  98 kB     00:00    
(332/517): glusterfs-cli-6.0-56.4.el8.x86_64.rp 2.0 MB/s | 193 kB     00:00    
(333/517): gnome-autoar-0.2.3-2.el8.x86_64.rpm  2.0 MB/s |  54 kB     00:00    
(334/517): gnome-calculator-3.28.2-2.el8.x86_64 1.1 MB/s | 1.1 MB     00:01    
(335/517): gnome-classic-session-3.32.1-22.el8_ 1.4 MB/s |  47 kB     00:00    
(336/517): gnome-control-center-3.28.2-28.el8.x 3.0 MB/s | 5.4 MB     00:01    
(337/517): gnome-control-center-filesystem-3.28 703 kB/s |  11 kB     00:00    
(338/517): gnome-online-accounts-3.28.2-3.el8.x 1.4 MB/s | 546 kB     00:00    
(339/517): gnome-session-3.28.1-13.el8.x86_64.r 1.9 MB/s | 379 kB     00:00    
(340/517): gnome-session-wayland-session-3.28.1 626 kB/s | 8.2 kB     00:00    
(341/517): gnome-session-xsession-3.28.1-13.el8 826 kB/s |  12 kB     00:00    
(342/517): gnome-settings-daemon-3.32.0-16.el8. 1.9 MB/s | 1.0 MB     00:00    
(343/517): gnome-shell-3.32.2-40.el8.x86_64.rpm 1.6 MB/s | 1.5 MB     00:00    
(344/517): gnome-shell-extension-apps-menu-3.32 129 kB/s |  31 kB     00:00    
(345/517): gnome-shell-extension-common-3.32.1- 1.3 MB/s | 170 kB     00:00    
(346/517): gnome-shell-extension-desktop-icons- 1.0 MB/s |  49 kB     00:00    
(347/517): gnome-shell-extension-horizontal-wor 822 kB/s |  25 kB     00:00    
(348/517): gnome-shell-extension-launch-new-ins 808 kB/s |  26 kB     00:00    
(349/517): gnome-shell-extension-places-menu-3. 992 kB/s |  31 kB     00:00    
(350/517): gnome-shell-extension-window-list-3. 1.0 MB/s |  39 kB     00:00    
(351/517): gnome-software-3.36.1-10.el8.x86_64. 1.8 MB/s | 7.5 MB     00:04    
(352/517): grilo-0.3.6-3.el8.x86_64.rpm         335 kB/s | 219 kB     00:00    
(353/517): gtk-update-icon-cache-3.22.30-8.el8. 1.2 MB/s |  31 kB     00:00    
(354/517): gtk3-3.22.30-8.el8.x86_64.rpm        2.2 MB/s | 4.5 MB     00:02    
(355/517): gupnp-1.0.6-2.el8_4.x86_64.rpm       1.7 MB/s | 105 kB     00:00    
(356/517): hplip-common-3.18.4-9.el8.alma.x86_6 1.8 MB/s | 109 kB     00:00    
(357/517): hplip-libs-3.18.4-9.el8.alma.x86_64. 1.8 MB/s | 203 kB     00:00    
(358/517): ibus-1.5.19-14.el8_5.x86_64.rpm      2.2 MB/s | 9.2 MB     00:04    
(359/517): ibus-gtk2-1.5.19-14.el8_5.x86_64.rpm 1.8 MB/s |  61 kB     00:00    
(360/517): ibus-gtk3-1.5.19-14.el8_5.x86_64.rpm 2.2 MB/s |  62 kB     00:00    
(361/517): ibus-libs-1.5.19-14.el8_5.x86_64.rpm 3.3 MB/s | 264 kB     00:00    
(362/517): ibus-setup-1.5.19-14.el8_5.noarch.rp 2.6 MB/s |  96 kB     00:00    
(363/517): jasper-libs-2.0.14-5.el8.x86_64.rpm  2.5 MB/s | 166 kB     00:00    
(364/517): libX11-1.6.8-5.el8.x86_64.rpm        1.2 MB/s | 610 kB     00:00    
(365/517): libX11-common-1.6.8-5.el8.noarch.rpm 1.2 MB/s | 157 kB     00:00    
(366/517): libX11-xcb-1.6.8-5.el8.x86_64.rpm    1.0 MB/s |  13 kB     00:00    
(367/517): libblockdev-2.24-7.el8.x86_64.rpm    1.2 MB/s | 130 kB     00:00    
(368/517): libblockdev-crypto-2.24-7.el8.x86_64 1.1 MB/s |  80 kB     00:00    
(369/517): libblockdev-dm-2.24-7.el8.x86_64.rpm 898 kB/s |  71 kB     00:00    
(370/517): libblockdev-fs-2.24-7.el8.x86_64.rpm 905 kB/s |  85 kB     00:00    
(371/517): libblockdev-kbd-2.24-7.el8.x86_64.rp 935 kB/s |  76 kB     00:00    
(372/517): libblockdev-loop-2.24-7.el8.x86_64.r 776 kB/s |  69 kB     00:00    
(373/517): libblockdev-lvm-2.24-7.el8.x86_64.rp 830 kB/s |  85 kB     00:00    
(374/517): libblockdev-mdraid-2.24-7.el8.x86_64 668 kB/s |  75 kB     00:00    
(375/517): libblockdev-mpath-2.24-7.el8.x86_64. 582 kB/s |  71 kB     00:00    
(376/517): libblockdev-nvdimm-2.24-7.el8.x86_64 773 kB/s |  72 kB     00:00    
(377/517): libblockdev-part-2.24-7.el8.x86_64.r 527 kB/s |  79 kB     00:00    
(378/517): libblockdev-swap-2.24-7.el8.x86_64.r 641 kB/s |  71 kB     00:00    
(379/517): libblockdev-utils-2.24-7.el8.x86_64. 644 kB/s |  79 kB     00:00    
(380/517): libdrm-2.4.106-2.el8.x86_64.rpm      535 kB/s | 165 kB     00:00    
(381/517): libepoxy-1.5.8-1.el8.x86_64.rpm      661 kB/s | 224 kB     00:00    
(382/517): libevdev-1.10.0-1.el8.x86_64.rpm     553 kB/s |  43 kB     00:00    
(383/517): libfastjson-0.99.9-1.el8.x86_64.rpm  483 kB/s |  37 kB     00:00    
(384/517): libgweather-3.28.2-4.el8.x86_64.rpm  1.1 MB/s | 3.1 MB     00:02    
(385/517): libinput-1.16.3-2.el8.x86_64.rpm     2.5 MB/s | 216 kB     00:00    
(386/517): libiscsi-1.18.0-8.module_el8.5.0+260 2.4 MB/s |  88 kB     00:00    
(387/517): libjpeg-turbo-1.5.3-12.el8.x86_64.rp 2.6 MB/s | 156 kB     00:00    
(388/517): libnma-1.8.32-1.el8.x86_64.rpm       2.5 MB/s | 293 kB     00:00    
(389/517): librelp-1.9.0-1.el8.x86_64.rpm       2.7 MB/s |  75 kB     00:00    
(390/517): libsane-hpaio-3.18.4-9.el8.alma.x86_ 2.9 MB/s | 127 kB     00:00    
(391/517): libslirp-4.4.0-1.module_el8.5.0+2586 2.5 MB/s |  69 kB     00:00    
(392/517): libsndfile-1.0.28-10.el8_4.1.x86_64. 2.9 MB/s | 192 kB     00:00    
(393/517): libtiff-4.0.9-20.el8.x86_64.rpm      2.7 MB/s | 187 kB     00:00    
(394/517): libudisks2-2.9.0-7.el8.x86_64.rpm    734 kB/s | 183 kB     00:00    
(395/517): libvirt-daemon-6.0.0-37.module_el8.5 1.3 MB/s | 349 kB     00:00    
(396/517): libvirt-daemon-config-network-6.0.0- 1.1 MB/s |  62 kB     00:00    
(397/517): libvirt-daemon-driver-interface-6.0. 1.0 MB/s | 208 kB     00:00    
(398/517): libvirt-daemon-driver-network-6.0.0- 1.1 MB/s | 234 kB     00:00    
(399/517): libvirt-daemon-driver-nodedev-6.0.0- 1.7 MB/s | 207 kB     00:00    
(400/517): libvirt-daemon-driver-nwfilter-6.0.0 2.4 MB/s | 231 kB     00:00    
(401/517): libvirt-daemon-driver-qemu-6.0.0-37. 1.4 MB/s | 842 kB     00:00    
(402/517): libvirt-daemon-driver-secret-6.0.0-3 2.2 MB/s | 197 kB     00:00    
(403/517): libvirt-daemon-driver-storage-6.0.0- 2.2 MB/s |  60 kB     00:00    
(404/517): libvirt-daemon-driver-storage-core-6 2.3 MB/s | 258 kB     00:00    
(405/517): libvirt-daemon-driver-storage-disk-6 2.2 MB/s |  81 kB     00:00    
(406/517): libvirt-daemon-driver-storage-gluste 2.3 MB/s |  86 kB     00:00    
(407/517): libvirt-daemon-driver-storage-iscsi- 2.5 MB/s |  78 kB     00:00    
(408/517): libvirt-daemon-driver-storage-iscsi- 2.5 MB/s |  80 kB     00:00    
(409/517): libvirt-daemon-driver-storage-logica 2.4 MB/s |  82 kB     00:00    
(410/517): libvirt-daemon-driver-storage-mpath- 2.3 MB/s |  76 kB     00:00    
(411/517): libvirt-daemon-driver-storage-rbd-6. 2.4 MB/s |  86 kB     00:00    
(412/517): libvirt-daemon-driver-storage-scsi-6 2.2 MB/s |  78 kB     00:00    
(413/517): libvirt-daemon-kvm-6.0.0-37.module_e 2.3 MB/s |  59 kB     00:00    
(414/517): libvirt-libs-6.0.0-37.module_el8.5.0 1.9 MB/s | 4.3 MB     00:02    
(415/517): libwacom-1.6-3.el8.x86_64.rpm        1.5 MB/s |  41 kB     00:00    
(416/517): libwacom-data-1.6-3.el8.noarch.rpm   1.8 MB/s | 103 kB     00:00    
(417/517): libwayland-client-1.19.0-1.el8.x86_6 1.5 MB/s |  38 kB     00:00    
(418/517): libwayland-cursor-1.19.0-1.el8.x86_6 1.9 MB/s |  25 kB     00:00    
(419/517): libwayland-egl-1.19.0-1.el8.x86_64.r 1.3 MB/s |  18 kB     00:00    
(420/517): libwayland-server-1.19.0-1.el8.x86_6 1.6 MB/s |  46 kB     00:00    
(421/517): libwebp-1.0.0-5.el8.x86_64.rpm       2.0 MB/s | 271 kB     00:00    
(422/517): libwinpr-2.2.0-7.el8_5.x86_64.rpm    2.0 MB/s | 356 kB     00:00    
(423/517): linux-firmware-20210702-103.gitd79c2 1.9 MB/s | 161 MB     01:23    
(424/517): lua-5.3.4-12.el8.x86_64.rpm          519 kB/s | 191 kB     00:00    
(425/517): man-pages-overrides-8.5.0.1-1.el8.no 833 kB/s |  97 kB     00:00    
(426/517): llvm-libs-12.0.1-2.module_el8.5.0+25 1.7 MB/s |  23 MB     00:13    
(427/517): mesa-filesystem-21.1.5-1.el8.x86_64. 968 kB/s |  33 kB     00:00    
(428/517): mesa-libEGL-21.1.5-1.el8.x86_64.rpm  1.6 MB/s | 134 kB     00:00    
(429/517): mesa-libGL-21.1.5-1.el8.x86_64.rpm   1.5 MB/s | 183 kB     00:00    
(430/517): mesa-libgbm-21.1.5-1.el8.x86_64.rpm  1.4 MB/s |  56 kB     00:00    
(431/517): mesa-libglapi-21.1.5-1.el8.x86_64.rp 1.5 MB/s |  64 kB     00:00    
(432/517): mesa-libxatracker-21.1.5-1.el8.x86_6 1.8 MB/s | 1.9 MB     00:01    
(433/517): mutter-3.32.2-60.el8.x86_64.rpm      2.0 MB/s | 2.5 MB     00:01    
(434/517): netcf-libs-0.2.8-12.module_el8.5.0+2 1.2 MB/s |  75 kB     00:00    
(435/517): nm-connection-editor-1.18.0-3.el8.x8 2.3 MB/s | 881 kB     00:00    
(436/517): nmap-ncat-7.70-6.el8.x86_64.rpm      2.3 MB/s | 236 kB     00:00    
(437/517): nspr-4.32.0-1.el8_4.x86_64.rpm       2.6 MB/s | 141 kB     00:00    
(438/517): mesa-dri-drivers-21.1.5-1.el8.x86_64 1.9 MB/s |  11 MB     00:05    
(439/517): nss-3.67.0-7.el8_5.x86_64.rpm        1.2 MB/s | 740 kB     00:00    
(440/517): nss-softokn-3.67.0-7.el8_5.x86_64.rp 512 kB/s | 486 kB     00:00    
(441/517): nss-sysinit-3.67.0-7.el8_5.x86_64.rp 507 kB/s |  72 kB     00:00    
(442/517): nss-softokn-freebl-3.67.0-7.el8_5.x8 482 kB/s | 394 kB     00:00    
(443/517): nss-util-3.67.0-7.el8_5.x86_64.rpm   976 kB/s | 136 kB     00:00    
(444/517): open-vm-tools-desktop-11.2.5-2.el8.x 1.9 MB/s | 194 kB     00:00    
(445/517): openjpeg2-2.4.0-4.el8.x86_64.rpm     2.5 MB/s | 164 kB     00:00    
(446/517): openssh-askpass-8.0p1-10.el8.x86_64. 2.4 MB/s |  92 kB     00:00    
(447/517): open-vm-tools-11.2.5-2.el8.x86_64.rp 2.5 MB/s | 770 kB     00:00    
(448/517): osinfo-db-20210903-1.el8.noarch.rpm  2.5 MB/s | 249 kB     00:00    
(449/517): ostree-2021.3-1.el8.x86_64.rpm       2.8 MB/s | 246 kB     00:00    
(450/517): pango-1.42.4-8.el8.x86_64.rpm        2.9 MB/s | 296 kB     00:00    
(451/517): plymouth-0.9.4-10.20200615git1e36e30 2.8 MB/s | 126 kB     00:00    
(452/517): ostree-libs-2021.3-1.el8.x86_64.rpm  2.6 MB/s | 430 kB     00:00    
(453/517): plymouth-core-libs-0.9.4-10.20200615 2.8 MB/s | 121 kB     00:00    
(454/517): plymouth-graphics-libs-0.9.4-10.2020 2.1 MB/s |  84 kB     00:00    
(455/517): plymouth-plugin-label-0.9.4-10.20200 2.7 MB/s |  42 kB     00:00    
(456/517): plymouth-scripts-0.9.4-10.20200615gi 2.7 MB/s |  43 kB     00:00    
(457/517): plymouth-plugin-two-step-0.9.4-10.20 1.8 MB/s |  56 kB     00:00    
(458/517): plymouth-system-theme-0.9.4-10.20200 2.5 MB/s |  35 kB     00:00    
(459/517): plymouth-theme-charge-0.9.4-10.20200 2.3 MB/s |  40 kB     00:00    
(460/517): plymouth-theme-spinner-0.9.4-10.2020 2.5 MB/s | 160 kB     00:00    
(461/517): podman-catatonit-3.3.1-9.module_el8. 2.7 MB/s | 339 kB     00:00    
(462/517): poppler-20.11.0-3.el8_5.1.x86_64.rpm 2.6 MB/s | 1.1 MB     00:00    
(463/517): poppler-glib-20.11.0-3.el8_5.1.x86_6 2.4 MB/s | 173 kB     00:00    
(464/517): poppler-utils-20.11.0-3.el8_5.1.x86_ 2.4 MB/s | 247 kB     00:00    
(465/517): python3-bind-9.11.26-6.el8.noarch.rp 2.1 MB/s | 149 kB     00:00    
(466/517): python3-blivet-3.4.0-6.el8.noarch.rp 2.6 MB/s | 1.0 MB     00:00    
(467/517): python3-blockdev-2.24-7.el8.x86_64.r 2.4 MB/s |  79 kB     00:00    
(468/517): python3-kickstart-3.16.14-1.el8.noar 2.4 MB/s | 449 kB     00:00    
(469/517): firefox-91.5.0-1.el8_5.alma.x86_64.r 2.1 MB/s | 106 MB     00:51    
(470/517): python3-lxml-4.2.3-3.el8.x86_64.rpm  2.1 MB/s | 1.5 MB     00:00    
(471/517): python3-pip-9.0.3-20.el8.noarch.rpm  1.0 MB/s |  19 kB     00:00    
(472/517): python3-pyparted-3.11.7-4.el8.x86_64 1.3 MB/s | 123 kB     00:00    
(473/517): python3-psutil-5.4.3-11.el8.x86_64.r 2.6 MB/s | 372 kB     00:00    
(474/517): python36-3.6.8-38.module_el8.5.0+256 1.0 MB/s |  18 kB     00:00    
(475/517): python3-unbound-1.7.3-17.el8.x86_64. 2.0 MB/s | 118 kB     00:00    
(476/517): qemu-guest-agent-4.2.0-59.module_el8 3.1 MB/s | 256 kB     00:00    
(477/517): qemu-kvm-4.2.0-59.module_el8.5.0+260 2.0 MB/s | 125 kB     00:00    
(478/517): qemu-kvm-block-curl-4.2.0-59.module_ 1.1 MB/s | 136 kB     00:00    
(479/517): qemu-kvm-block-gluster-4.2.0-59.modu 847 kB/s | 138 kB     00:00    
(480/517): qemu-kvm-block-iscsi-4.2.0-59.module 869 kB/s | 144 kB     00:00    
(481/517): qemu-kvm-block-rbd-4.2.0-59.module_e 370 kB/s | 138 kB     00:00    
(482/517): qemu-img-4.2.0-59.module_el8.5.0+260 1.0 MB/s | 1.0 MB     00:01    
(483/517): qemu-kvm-block-ssh-4.2.0-59.module_e 755 kB/s | 139 kB     00:00    
(484/517): qemu-kvm-common-4.2.0-59.module_el8. 2.5 MB/s | 1.2 MB     00:00    
(485/517): rsyslog-8.2102.0-5.el8.x86_64.rpm    2.5 MB/s | 751 kB     00:00    
(486/517): rsyslog-gnutls-8.2102.0-5.el8.x86_64 1.6 MB/s |  31 kB     00:00    
(487/517): rsyslog-gssapi-8.2102.0-5.el8.x86_64 1.6 MB/s |  33 kB     00:00    
(488/517): rsyslog-relp-8.2102.0-5.el8.x86_64.r 1.6 MB/s |  32 kB     00:00    
(489/517): podman-3.3.1-9.module_el8.5.0+2586+0 2.6 MB/s |  12 MB     00:04    
(490/517): seabios-bin-1.13.0-2.module_el8.5.0+ 2.3 MB/s | 126 kB     00:00    
(491/517): seavgabios-bin-1.13.0-2.module_el8.5 1.8 MB/s |  41 kB     00:00    
(492/517): setroubleshoot-plugins-3.3.14-1.el8. 2.1 MB/s | 357 kB     00:00    
(493/517): qemu-kvm-core-4.2.0-59.module_el8.5. 2.2 MB/s | 3.5 MB     00:01    
(494/517): setroubleshoot-server-3.3.24-4.el8.x 2.1 MB/s | 387 kB     00:00    
(495/517): sgabios-bin-0.20170427git-3.module_e 783 kB/s |  12 kB     00:00    
(496/517): slirp4netns-1.1.8-1.module_el8.5.0+2 2.0 MB/s |  50 kB     00:00    
(497/517): sil-nuosu-fonts-2.200-2.el8.noarch.r 2.3 MB/s | 134 kB     00:00    
(498/517): tigervnc-license-1.11.0-9.el8.noarch 1.5 MB/s |  38 kB     00:00    
(499/517): tcpdump-4.9.3-2.el8.x86_64.rpm       2.7 MB/s | 451 kB     00:00    
(500/517): udisks2-2.9.0-7.el8.x86_64.rpm       3.0 MB/s | 473 kB     00:00    
(501/517): udisks2-iscsi-2.9.0-7.el8.x86_64.rpm 2.3 MB/s |  29 kB     00:00    
(502/517): udisks2-lvm2-2.9.0-7.el8.x86_64.rpm  2.6 MB/s |  44 kB     00:00    
(503/517): runc-1.0.2-1.module_el8.5.0+2586+018 2.3 MB/s | 3.1 MB     00:01    
(504/517): unbound-libs-1.7.3-17.el8.x86_64.rpm 1.4 MB/s | 502 kB     00:00    
(505/517): tigervnc-server-minimal-1.11.0-9.el8 1.3 MB/s | 1.1 MB     00:00    
(506/517): vim-filesystem-8.0.1763-16.el8.noarc 1.4 MB/s |  48 kB     00:00    
(507/517): vino-3.22.0-11.el8.x86_64.rpm        1.8 MB/s | 460 kB     00:00    
(508/517): vim-enhanced-8.0.1763-16.el8.x86_64. 1.4 MB/s | 1.4 MB     00:00    
(509/517): vim-common-8.0.1763-16.el8.x86_64.rp 1.9 MB/s | 6.3 MB     00:03    
(510/517): xdg-desktop-portal-1.6.0-5.el8.x86_6 640 kB/s | 406 kB     00:00    
(511/517): xorg-x11-font-utils-7.5-41.el8.x86_6 688 kB/s | 102 kB     00:00    
(512/517): webkit2gtk3-jsc-2.32.3-2.el8.x86_64. 2.1 MB/s | 6.3 MB     00:03    
(513/517): xorg-x11-server-Xwayland-21.1.1-6.el 2.1 MB/s | 961 kB     00:00    
(514/517): xorg-x11-server-Xorg-1.20.11-2.el8.x 2.2 MB/s | 1.5 MB     00:00    
[MIRROR] epel-release-8-13.el8.noarch.rpm: Curl error (35): SSL connect error for https://mirrors.20i.com/pub/fedora/epel/8/Everything/x86_64/Packages/e/epel-release-8-13.el8.noarch.rpm [error:14094410:SSL routines:ssl3_read_bytes:sslv3 alert handshake failure]
(515/517): xorg-x11-server-common-1.20.11-2.el8 145 kB/s |  41 kB     00:00    
[MIRROR] epel-release-8-13.el8.noarch.rpm: Interrupted by header callback: Server reports Content-Length: 7380 but expected size is: 23644
(516/517): epel-release-8-13.el8.noarch.rpm     8.8 kB/s |  23 kB     00:02    
(517/517): webkit2gtk3-2.32.3-2.el8.x86_64.rpm  2.5 MB/s |  17 MB     00:06    
--------------------------------------------------------------------------------
Total                                           5.3 MB/s | 772 MB     02:25     
warning: /var/cache/dnf/epel-e92ce0c771c4c6ae/packages/python3-beautifulsoup4-4.6.3-2.el8.1.noarch.rpm: Header V3 RSA/SHA256 Signature, key ID 2f86d6a1: NOKEY
Extra Packages for Enterprise Linux 8 - x86_64  1.6 MB/s | 1.6 kB     00:00    
Importing GPG key 0x2F86D6A1:
 Userid     : "Fedora EPEL (8) <[email protected]>"
 Fingerprint: 94E2 79EB 8D8F 25B2 1810 ADF1 21EA 45AB 2F86 D6A1
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8
Is this ok [y/N]: y
Key imported successfully
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Running scriptlet: filesystem-3.8-6.el8.x86_64                            1/1 
  Running scriptlet: kmod-kvdo-6.2.5.72-81.el8.x86_64                       1/1 
  Preparing        :                                                        1/1 
  Running scriptlet: libxml2-2.9.7-9.el8_4.2.x86_64                         1/1 
  Upgrading        : libxml2-2.9.7-9.el8_4.2.x86_64                      1/1027 
  Upgrading        : dbus-libs-1:1.12.8-14.el8.x86_64                    2/1027 
  Running scriptlet: dbus-libs-1:1.12.8-14.el8.x86_64                    2/1027 
  Upgrading        : libstdc++-8.5.0-4.el8_5.alma.x86_64                 3/1027 
  Running scriptlet: libstdc++-8.5.0-4.el8_5.alma.x86_64                 3/1027 
  Upgrading        : libcom_err-1.45.6-2.el8.x86_64                      4/1027 
  Running scriptlet: libcom_err-1.45.6-2.el8.x86_64                      4/1027 
  Upgrading        : libcap-ng-0.7.11-1.el8.x86_64                       5/1027 
  Upgrading        : libuuid-2.32.1-28.el8.x86_64                        6/1027 
  Running scriptlet: libuuid-2.32.1-28.el8.x86_64                        6/1027 
  Upgrading        : sqlite-libs-3.26.0-15.el8.x86_64                    7/1027 
  Upgrading        : numactl-libs-2.0.12-13.el8.x86_64                   8/1027 
  Running scriptlet: numactl-libs-2.0.12-13.el8.x86_64                   8/1027 
  Upgrading        : libcap-2.26-5.el8.x86_64                            9/1027 
  Upgrading        : libtalloc-2.3.2-1.el8.x86_64                       10/1027 
  Upgrading        : gpgme-1.13.1-9.el8.x86_64                          11/1027 
  Upgrading        : libgcrypt-1.8.5-6.el8.x86_64                       12/1027 
  Running scriptlet: libgcrypt-1.8.5-6.el8.x86_64                       12/1027 
  Upgrading        : libtevent-0.11.0-0.el8.x86_64                      13/1027 
  Upgrading        : nspr-4.32.0-1.el8_4.x86_64                         14/1027 
  Running scriptlet: nspr-4.32.0-1.el8_4.x86_64                         14/1027 
  Upgrading        : libdrm-2.4.106-2.el8.x86_64                        15/1027 
  Upgrading        : keyutils-libs-1.5.10-9.el8.x86_64                  16/1027 
  Upgrading        : libjpeg-turbo-1.5.3-12.el8.x86_64                  17/1027 
  Upgrading        : lua-libs-5.3.4-12.el8.x86_64                       18/1027 
  Upgrading        : nss-util-3.67.0-7.el8_5.x86_64                     19/1027 
  Upgrading        : libwayland-client-1.19.0-1.el8.x86_64              20/1027 
  Upgrading        : which-2.21-16.el8.x86_64                           21/1027 
  Upgrading        : perl-libs-4:5.26.3-420.el8.x86_64                  22/1027 
  Upgrading        : libsss_idmap-2.5.2-2.el8_5.3.x86_64                23/1027 
  Running scriptlet: libsss_idmap-2.5.2-2.el8_5.3.x86_64                23/1027 
  Upgrading        : json-c-0.13.1-2.el8.x86_64                         24/1027 
  Upgrading        : libwayland-server-1.19.0-1.el8.x86_64              25/1027 
  Upgrading        : mesa-libgbm-21.1.5-1.el8.x86_64                    26/1027 
  Running scriptlet: mesa-libgbm-21.1.5-1.el8.x86_64                    26/1027 
  Upgrading        : libepoxy-1.5.8-1.el8.x86_64                        27/1027 
  Upgrading        : file-libs-5.33-20.el8.x86_64                       28/1027 
  Upgrading        : libtiff-4.0.9-20.el8.x86_64                        29/1027 
  Upgrading        : plymouth-core-libs-0.9.4-10.20200615git1e36e30     30/1027 
  Running scriptlet: plymouth-core-libs-0.9.4-10.20200615git1e36e30     30/1027 
  Upgrading        : libX11-xcb-1.6.8-5.el8.x86_64                      31/1027 
  Upgrading        : libsmartcols-2.32.1-28.el8.x86_64                  32/1027 
  Running scriptlet: libsmartcols-2.32.1-28.el8.x86_64                  32/1027 
  Upgrading        : dmidecode-1:3.2-10.el8.x86_64                      33/1027 
  Upgrading        : file-5.33-20.el8.x86_64                            34/1027 
  Upgrading        : mesa-libglapi-21.1.5-1.el8.x86_64                  35/1027 
  Running scriptlet: mesa-libglapi-21.1.5-1.el8.x86_64                  35/1027 
  Upgrading        : gnome-control-center-filesystem-3.28.2-28.el8.     36/1027 
  Upgrading        : fstrm-0.6.1-2.el8.x86_64                           37/1027 
  Upgrading        : bind-license-32:9.11.26-6.el8.noarch               38/1027 
  Upgrading        : iptables-libs-1.8.4-20.el8.x86_64                  39/1027 
  Upgrading        : hwdata-0.314-8.10.el8.noarch                       40/1027 
  Upgrading        : libwayland-cursor-1.19.0-1.el8.x86_64              41/1027 
  Upgrading        : libiscsi-1.18.0-8.module_el8.5.0+2608+72063365     42/1027 
  Running scriptlet: libiscsi-1.18.0-8.module_el8.5.0+2608+72063365     42/1027 
  Upgrading        : e2fsprogs-libs-1.45.6-2.el8.x86_64                 43/1027 
  Running scriptlet: e2fsprogs-libs-1.45.6-2.el8.x86_64                 43/1027 
  Upgrading        : device-mapper-persistent-data-0.9.0-4.el8.x86_     44/1027 
  Upgrading        : xorg-x11-server-common-1.20.11-2.el8.x86_64        45/1027 
  Upgrading        : openjpeg2-2.4.0-4.el8.x86_64                       46/1027 
  Upgrading        : libwayland-egl-1.19.0-1.el8.x86_64                 47/1027 
  Upgrading        : cups-filesystem-1:2.2.6-40.el8.noarch              48/1027 
  Upgrading        : python3-pip-wheel-9.0.3-20.el8.noarch              49/1027 
  Upgrading        : filesystem-3.8-6.el8.x86_64                        50/1027 
  Upgrading        : ethtool-2:5.8-7.el8.x86_64                         51/1027 
  Upgrading        : bluez-libs-5.56-2.el8.alma.x86_64                  52/1027 
  Upgrading        : almalinux-release-8.5-4.el8.x86_64                 53/1027 
  Installing       : libbpf-0.4.0-1.el8.x86_64                          54/1027 
  Upgrading        : mesa-libEGL-21.1.5-1.el8.x86_64                    55/1027 
  Upgrading        : perl-macros-4:5.26.3-420.el8.x86_64                56/1027 
  Upgrading        : perl-interpreter-4:5.26.3-420.el8.x86_64           57/1027 
  Upgrading        : perl-Errno-1.28-420.el8.x86_64                     58/1027 
  Upgrading        : perl-IO-1.38-420.el8.x86_64                        59/1027 
  Upgrading        : libss-1.45.6-2.el8.x86_64                          60/1027 
  Running scriptlet: libss-1.45.6-2.el8.x86_64                          60/1027 
  Upgrading        : exiv2-0.27.4-5.el8.x86_64                          61/1027 
  Upgrading        : exiv2-libs-0.27.4-5.el8.x86_64                     62/1027 
  Upgrading        : dbus-tools-1:1.12.8-14.el8.x86_64                  63/1027 
  Upgrading        : libcomps-0.1.16-2.el8.x86_64                       64/1027 
  Upgrading        : vim-filesystem-2:8.0.1763-16.el8.noarch            65/1027 
  Upgrading        : tigervnc-license-1.11.0-9.el8.noarch               66/1027 
  Upgrading        : sil-nuosu-fonts-2.200-2.el8.noarch                 67/1027 
  Upgrading        : sgabios-bin-1:0.20170427git-3.module_el8.5.0+2     68/1027 
  Upgrading        : seavgabios-bin-1.13.0-2.module_el8.5.0+2608+72     69/1027 
  Upgrading        : seabios-bin-1.13.0-2.module_el8.5.0+2608+72063     70/1027 
  Upgrading        : mesa-filesystem-21.1.5-1.el8.x86_64                71/1027 
  Upgrading        : libwebp-1.0.0-5.el8.x86_64                         72/1027 
  Upgrading        : libwacom-data-1.6-3.el8.noarch                     73/1027 
  Upgrading        : libfastjson-0.99.9-1.el8.x86_64                    74/1027 
  Running scriptlet: libfastjson-0.99.9-1.el8.x86_64                    74/1027 
  Upgrading        : libevdev-1.10.0-1.el8.x86_64                       75/1027 
  Upgrading        : libX11-common-1.6.8-5.el8.noarch                   76/1027 
  Upgrading        : libX11-1.6.8-5.el8.x86_64                          77/1027 
  Upgrading        : mesa-libGL-21.1.5-1.el8.x86_64                     78/1027 
  Upgrading        : hplip-common-3.18.4-9.el8.alma.x86_64              79/1027 
  Upgrading        : edk2-ovmf-20210527gite1999b264f1f-3.el8.noarch     80/1027 
  Upgrading        : containernetworking-plugins-1.0.0-1.module_el8     81/1027 
  Upgrading        : quota-nls-1:4.04-14.el8.noarch                     82/1027 
  Upgrading        : pcre-8.42-6.el8.x86_64                             83/1027 
  Running scriptlet: pcre-8.42-6.el8.x86_64                             83/1027 
  Upgrading        : ncurses-base-6.1-9.20180224.el8.noarch             84/1027 
  Upgrading        : ncurses-libs-6.1-9.20180224.el8.x86_64             85/1027 
  Upgrading        : bash-4.4.20-2.el8.x86_64                           86/1027 
  Running scriptlet: bash-4.4.20-2.el8.x86_64                           86/1027 
  Upgrading        : libsepol-2.9-3.el8.x86_64                          87/1027 
  Running scriptlet: libsepol-2.9-3.el8.x86_64                          87/1027 
  Upgrading        : chkconfig-1.19.1-1.el8.x86_64                      88/1027 
  Upgrading        : grub2-common-1:2.02-106.el8.alma.noarch            89/1027 
  Running scriptlet: iptables-1.8.4-20.el8.x86_64                       90/1027 
  Upgrading        : iptables-1.8.4-20.el8.x86_64                       90/1027 
  Running scriptlet: iptables-1.8.4-20.el8.x86_64                       90/1027 
  Upgrading        : nettle-3.4.1-7.el8.x86_64                          91/1027 
  Running scriptlet: nettle-3.4.1-7.el8.x86_64                          91/1027 
  Upgrading        : nftables-1:0.9.3-21.el8.x86_64                     92/1027 
  Running scriptlet: nftables-1:0.9.3-21.el8.x86_64                     92/1027 
  Running scriptlet: samba-common-4.14.5-7.el8_5.noarch                 93/1027 
  Upgrading        : samba-common-4.14.5-7.el8_5.noarch                 93/1027 
  Running scriptlet: samba-common-4.14.5-7.el8_5.noarch                 93/1027 
  Upgrading        : iptables-ebtables-1.8.4-20.el8.x86_64              94/1027 
  Running scriptlet: iptables-ebtables-1.8.4-20.el8.x86_64              94/1027 
  Upgrading        : llvm-libs-12.0.1-2.module_el8.5.0+2598+6a7729f     95/1027 
  Upgrading        : mesa-dri-drivers-21.1.5-1.el8.x86_64               96/1027 
  Running scriptlet: dnsmasq-2.79-19.el8.x86_64                         97/1027 
  Upgrading        : dnsmasq-2.79-19.el8.x86_64                         97/1027 
  Running scriptlet: dnsmasq-2.79-19.el8.x86_64                         97/1027 
  Upgrading        : coreutils-common-8.30-12.el8.x86_64                98/1027 
  Running scriptlet: coreutils-common-8.30-12.el8.x86_64                98/1027 
  Upgrading        : kernel-tools-libs-4.18.0-348.12.2.el8_5.x86_64     99/1027 
  Running scriptlet: kernel-tools-libs-4.18.0-348.12.2.el8_5.x86_64     99/1027 
  Upgrading        : keyutils-1.5.10-9.el8.x86_64                      100/1027 
  Upgrading        : unzip-6.0-45.el8_4.x86_64                         101/1027 
  Upgrading        : netcf-libs-0.2.8-12.module_el8.5.0+2608+720633    102/1027 
  Running scriptlet: netcf-libs-0.2.8-12.module_el8.5.0+2608+720633    102/1027 
  Upgrading        : nss-softokn-freebl-3.67.0-7.el8_5.x86_64          103/1027 
  Upgrading        : nss-softokn-3.67.0-7.el8_5.x86_64                 104/1027 
  Upgrading        : vim-common-2:8.0.1763-16.el8.x86_64               105/1027 
  Upgrading        : ncurses-6.1-9.20180224.el8.x86_64                 106/1027 
  Upgrading        : sqlite-3.26.0-15.el8.x86_64                       107/1027 
  Upgrading        : vim-minimal-2:8.0.1763-16.el8.x86_64              108/1027 
  Upgrading        : mobile-broadband-provider-info-20210805-1.el8.    109/1027 
  Upgrading        : linux-firmware-20210702-103.gitd79c2677.el8.no    110/1027 
  Upgrading        : libsss_sudo-2.5.2-2.el8_5.3.x86_64                111/1027 
  Running scriptlet: libsss_sudo-2.5.2-2.el8_5.3.x86_64                111/1027 
  Upgrading        : libsss_nss_idmap-2.5.2-2.el8_5.3.x86_64           112/1027 
  Running scriptlet: libsss_nss_idmap-2.5.2-2.el8_5.3.x86_64           112/1027 
  Upgrading        : libsss_autofs-2.5.2-2.el8_5.3.x86_64              113/1027 
  Upgrading        : libssh-config-0.9.4-3.el8.noarch                  114/1027 
  Upgrading        : grub2-tools-minimal-1:2.02-106.el8.alma.x86_64    115/1027 
  Upgrading        : platform-python-pip-9.0.3-20.el8.noarch           116/1027 
  Upgrading        : python3-libs-3.6.8-41.el8.alma.x86_64             117/1027 
  Upgrading        : libssh-0.9.4-3.el8.x86_64                         118/1027 
  Upgrading        : openldap-2.4.46-18.el8.x86_64                     119/1027 
  Upgrading        : platform-python-3.6.8-41.el8.alma.x86_64          120/1027 
  Running scriptlet: platform-python-3.6.8-41.el8.alma.x86_64          120/1027 
  Upgrading        : grubby-8.40-42.el8.x86_64                         121/1027 
  Upgrading        : libcurl-7.61.1-22.el8.x86_64                      122/1027 
  Upgrading        : crypto-policies-scripts-20210617-1.gitc776d3e.    123/1027 
  Upgrading        : crypto-policies-20210617-1.gitc776d3e.el8.noar    124/1027 
  Running scriptlet: crypto-policies-20210617-1.gitc776d3e.el8.noar    124/1027 
  Upgrading        : libdb-utils-5.3.28-42.el8_4.x86_64                125/1027 
  Upgrading        : curl-7.61.1-22.el8.x86_64                         126/1027 
  Upgrading        : kpartx-0.8.4-17.el8.x86_64                        127/1027 
  Upgrading        : device-mapper-8:1.02.177-10.el8.x86_64            128/1027 
  Upgrading        : device-mapper-libs-8:1.02.177-10.el8.x86_64       129/1027 
  Upgrading        : kmod-25-18.el8.x86_64                             130/1027 
  Upgrading        : kmod-libs-25-18.el8.x86_64                        131/1027 
  Running scriptlet: kmod-libs-25-18.el8.x86_64                        131/1027 
  Upgrading        : krb5-libs-1.18.2-14.el8.x86_64                    132/1027 
  Upgrading        : libtirpc-1.1.4-5.el8.x86_64                       133/1027 
  Running scriptlet: libtirpc-1.1.4-5.el8.x86_64                       133/1027 
  Upgrading        : rpm-4.14.3-19.el8.x86_64                          134/1027 
  Upgrading        : openssl-libs-1:1.1.1k-5.el8_5.x86_64              135/1027 
  Running scriptlet: openssl-libs-1:1.1.1k-5.el8_5.x86_64              135/1027 
  Upgrading        : coreutils-8.30-12.el8.x86_64                      136/1027 
  Upgrading        : libblkid-2.32.1-28.el8.x86_64                     137/1027 
  Running scriptlet: libblkid-2.32.1-28.el8.x86_64                     137/1027 
  Upgrading        : libdb-5.3.28-42.el8_4.x86_64                      138/1027 
  Running scriptlet: libdb-5.3.28-42.el8_4.x86_64                      138/1027 
  Upgrading        : pam-1.3.1-15.el8.x86_64                           139/1027 
  Running scriptlet: pam-1.3.1-15.el8.x86_64                           139/1027 
  Upgrading        : rpm-libs-4.14.3-19.el8.x86_64                     140/1027 
  Running scriptlet: rpm-libs-4.14.3-19.el8.x86_64                     140/1027 
  Upgrading        : libmount-2.32.1-28.el8.x86_64                     141/1027 
  Running scriptlet: libmount-2.32.1-28.el8.x86_64                     141/1027 
  Running scriptlet: ca-certificates-2021.2.50-80.0.el8_4.noarch       142/1027 
  Upgrading        : ca-certificates-2021.2.50-80.0.el8_4.noarch       142/1027 
  Running scriptlet: ca-certificates-2021.2.50-80.0.el8_4.noarch       142/1027 
  Upgrading        : libfdisk-2.32.1-28.el8.x86_64                     143/1027 
  Running scriptlet: libfdisk-2.32.1-28.el8.x86_64                     143/1027 
  Upgrading        : util-linux-2.32.1-28.el8.x86_64                   144/1027 
  Running scriptlet: util-linux-2.32.1-28.el8.x86_64                   144/1027 
  Upgrading        : dracut-049-191.git20210920.el8.x86_64             145/1027 
  Upgrading        : os-prober-1.74-9.el8.x86_64                       146/1027 
  Running scriptlet: grub2-tools-1:2.02-106.el8.alma.x86_64            147/1027 
  Upgrading        : grub2-tools-1:2.02-106.el8.alma.x86_64            147/1027 
  Running scriptlet: grub2-tools-1:2.02-106.el8.alma.x86_64            147/1027 
  Upgrading        : gnutls-3.6.16-4.el8.x86_64                        148/1027 
  Upgrading        : glib2-2.56.4-156.el8.x86_64                       149/1027 
  Upgrading        : shadow-utils-2:4.6-14.el8.x86_64                  150/1027 
  Upgrading        : libvirt-libs-6.0.0-37.module_el8.5.0+2608+7206    151/1027 
  Running scriptlet: libvirt-libs-6.0.0-37.module_el8.5.0+2608+7206    151/1027 
  Upgrading        : polkit-libs-0.115-13.el8_5.1.x86_64               152/1027 
  Running scriptlet: polkit-libs-0.115-13.el8_5.1.x86_64               152/1027 
  Upgrading        : cups-libs-1:2.2.6-40.el8.x86_64                   153/1027 
  Upgrading        : fontconfig-2.13.1-4.el8.x86_64                    154/1027 
  Running scriptlet: fontconfig-2.13.1-4.el8.x86_64                    154/1027 
  Upgrading        : pango-1.42.4-8.el8.x86_64                         155/1027 
  Running scriptlet: pango-1.42.4-8.el8.x86_64                         155/1027 
  Upgrading        : libldb-2.3.0-2.el8.x86_64                         156/1027 
  Upgrading        : NetworkManager-libnm-1:1.32.10-4.el8.x86_64       157/1027 
  Running scriptlet: NetworkManager-libnm-1:1.32.10-4.el8.x86_64       157/1027 
  Upgrading        : parted-3.2-39.el8.x86_64                          158/1027 
  Running scriptlet: parted-3.2-39.el8.x86_64                          158/1027 
  Upgrading        : libblockdev-utils-2.24-7.el8.x86_64               159/1027 
  Upgrading        : libwbclient-4.14.5-7.el8_5.x86_64                 160/1027 
  Upgrading        : samba-client-libs-4.14.5-7.el8_5.x86_64           161/1027 
  Upgrading        : samba-common-libs-4.14.5-7.el8_5.x86_64           162/1027 
  Upgrading        : gsettings-desktop-schemas-3.32.0-6.el8.x86_64     163/1027 
  Upgrading        : almalinux-logos-84.5-1.el8.x86_64                 164/1027 
  Running scriptlet: almalinux-logos-84.5-1.el8.x86_64                 164/1027 
  Upgrading        : glusterfs-libs-6.0-56.4.el8.x86_64                165/1027 
  Running scriptlet: glusterfs-libs-6.0-56.4.el8.x86_64                165/1027 
  Upgrading        : ModemManager-glib-1.10.8-4.el8.x86_64             166/1027 
  Running scriptlet: ModemManager-glib-1.10.8-4.el8.x86_64             166/1027 
  Upgrading        : policycoreutils-2.9-16.el8.x86_64                 167/1027 
  Running scriptlet: policycoreutils-2.9-16.el8.x86_64                 167/1027 
  Upgrading        : iproute-5.12.0-4.el8.x86_64                       168/1027 
  Upgrading        : alsa-lib-1.2.5-4.el8.x86_64                       169/1027 
  Running scriptlet: alsa-lib-1.2.5-4.el8.x86_64                       169/1027 
  Upgrading        : cockpit-bridge-251.1-1.el8.x86_64                 170/1027 
  Upgrading        : libmodulemd-2.13.0-1.el8.x86_64                   171/1027 
  Upgrading        : librepo-1.14.0-2.el8.x86_64                       172/1027 
  Upgrading        : libwacom-1.6-3.el8.x86_64                         173/1027 
  Upgrading        : ostree-libs-2021.3-1.el8.x86_64                   174/1027 
  Upgrading        : libsss_certmap-2.5.2-2.el8_5.3.x86_64             175/1027 
  Running scriptlet: libsss_certmap-2.5.2-2.el8_5.3.x86_64             175/1027 
  Upgrading        : device-mapper-event-libs-8:1.02.177-10.el8.x86    176/1027 
  Upgrading        : rpm-plugin-selinux-4.14.3-19.el8.x86_64           177/1027 
  Upgrading        : selinux-policy-3.14.3-80.el8_5.2.noarch           178/1027 
  Running scriptlet: selinux-policy-3.14.3-80.el8_5.2.noarch           178/1027 
  Running scriptlet: selinux-policy-targeted-3.14.3-80.el8_5.2.noar    179/1027 
  Upgrading        : selinux-policy-targeted-3.14.3-80.el8_5.2.noar    179/1027 
  Running scriptlet: selinux-policy-targeted-3.14.3-80.el8_5.2.noar    179/1027 
  Upgrading        : libqmi-1.24.0-3.el8.x86_64                        180/1027 
  Running scriptlet: libqmi-1.24.0-3.el8.x86_64                        180/1027 
  Upgrading        : qemu-img-15:4.2.0-59.module_el8.5.0+2608+72063    181/1027 
  Upgrading        : webkit2gtk3-jsc-2.32.3-2.el8.x86_64               182/1027 
  Installing       : kernel-core-4.18.0-348.12.2.el8_5.x86_64          183/1027 
  Running scriptlet: kernel-core-4.18.0-348.12.2.el8_5.x86_64          183/1027 
  Upgrading        : plymouth-scripts-0.9.4-10.20200615git1e36e30.e    184/1027 
  Upgrading        : plymouth-0.9.4-10.20200615git1e36e30.el8.x86_6    185/1027 
  Running scriptlet: openssh-8.0p1-10.el8.x86_64                       186/1027 
  Upgrading        : openssh-8.0p1-10.el8.x86_64                       186/1027 
  Upgrading        : iscsi-initiator-utils-iscsiuio-6.2.1.4-4.git09    187/1027 
  Running scriptlet: iscsi-initiator-utils-iscsiuio-6.2.1.4-4.git09    187/1027 
  Upgrading        : iscsi-initiator-utils-6.2.1.4-4.git095f59c.el8    188/1027 
  Running scriptlet: iscsi-initiator-utils-6.2.1.4-4.git095f59c.el8    188/1027 
  Upgrading        : libsolv-0.7.19-1.el8.x86_64                       189/1027 
  Upgrading        : rsyslog-8.2102.0-5.el8.x86_64                     190/1027 
  Running scriptlet: rsyslog-8.2102.0-5.el8.x86_64                     190/1027 
  Upgrading        : python3-pip-9.0.3-20.el8.noarch                   191/1027 
  Upgrading        : python36-3.6.8-38.module_el8.5.0+2569+5c5719bc    192/1027 
  Running scriptlet: python36-3.6.8-38.module_el8.5.0+2569+5c5719bc    192/1027 
  Upgrading        : libdnf-0.63.0-3.el8.x86_64                        193/1027 
  Upgrading        : python3-libdnf-0.63.0-3.el8.x86_64                194/1027 
  Upgrading        : python3-hawkey-0.63.0-3.el8.x86_64                195/1027 
  Upgrading        : plymouth-graphics-libs-0.9.4-10.20200615git1e3    196/1027 
  Running scriptlet: plymouth-graphics-libs-0.9.4-10.20200615git1e3    196/1027 
  Upgrading        : libsmbclient-4.14.5-7.el8_5.x86_64                197/1027 
  Upgrading        : libblockdev-2.24-7.el8.x86_64                     198/1027 
  Upgrading        : python3-blockdev-2.24-7.el8.x86_64                199/1027 
  Upgrading        : libblockdev-fs-2.24-7.el8.x86_64                  200/1027 
  Upgrading        : libblockdev-loop-2.24-7.el8.x86_64                201/1027 
  Upgrading        : libblockdev-part-2.24-7.el8.x86_64                202/1027 
  Upgrading        : libblockdev-swap-2.24-7.el8.x86_64                203/1027 
  Upgrading        : python3-pyparted-1:3.11.7-4.el8.x86_64            204/1027 
  Running scriptlet: tpm2-tss-2.3.2-4.el8.x86_64                       205/1027 
  Upgrading        : tpm2-tss-2.3.2-4.el8.x86_64                       205/1027 
  Running scriptlet: tpm2-tss-2.3.2-4.el8.x86_64                       205/1027 
  Installing       : ima-evm-utils-1.3.2-12.el8.x86_64                 206/1027 
  Upgrading        : openssl-1:1.1.1k-5.el8_5.x86_64                   207/1027 
  Upgrading        : net-snmp-libs-1:5.8-22.el8.x86_64                 208/1027 
  Upgrading        : bind-libs-lite-32:9.11.26-6.el8.x86_64            209/1027 
  Upgrading        : libnfsidmap-1:2.3.3-46.el8.x86_64                 210/1027 
  Upgrading        : fuse-overlayfs-1.7.1-1.module_el8.5.0+2586+018    211/1027 
  Running scriptlet: fuse-overlayfs-1.7.1-1.module_el8.5.0+2586+018    211/1027 
  Upgrading        : device-mapper-multipath-libs-0.8.4-17.el8.x86_    212/1027 
  Running scriptlet: device-mapper-multipath-libs-0.8.4-17.el8.x86_    212/1027 
  Upgrading        : qemu-kvm-common-15:4.2.0-59.module_el8.5.0+260    213/1027 
  Running scriptlet: qemu-kvm-common-15:4.2.0-59.module_el8.5.0+260    213/1027 
  Upgrading        : device-mapper-multipath-0.8.4-17.el8.x86_64       214/1027 
  Running scriptlet: device-mapper-multipath-0.8.4-17.el8.x86_64       214/1027 
  Upgrading        : python3-libxml2-2.9.7-9.el8_4.2.x86_64            215/1027 
  Upgrading        : sos-4.1-5.el8.alma.noarch                         216/1027 
  Upgrading        : libblockdev-mpath-2.24-7.el8.x86_64               217/1027 
  Upgrading        : qemu-kvm-block-curl-15:4.2.0-59.module_el8.5.0    218/1027 
  Upgrading        : qemu-kvm-block-iscsi-15:4.2.0-59.module_el8.5.    219/1027 
  Upgrading        : qemu-kvm-block-rbd-15:4.2.0-59.module_el8.5.0+    220/1027 
  Upgrading        : qemu-kvm-block-ssh-15:4.2.0-59.module_el8.5.0+    221/1027 
  Upgrading        : qemu-kvm-core-15:4.2.0-59.module_el8.5.0+2608+    222/1027 
  Running scriptlet: qemu-kvm-core-15:4.2.0-59.module_el8.5.0+2608+    222/1027 
  Upgrading        : sssd-nfs-idmap-2.5.2-2.el8_5.3.x86_64             223/1027 
  Upgrading        : bind-libs-32:9.11.26-6.el8.x86_64                 224/1027 
  Upgrading        : hplip-libs-3.18.4-9.el8.alma.x86_64               225/1027 
  Running scriptlet: hplip-libs-3.18.4-9.el8.alma.x86_64               225/1027 
  Running scriptlet: cockpit-ws-251.1-1.el8.x86_64                     226/1027 
  Upgrading        : cockpit-ws-251.1-1.el8.x86_64                     226/1027 
  Running scriptlet: cockpit-ws-251.1-1.el8.x86_64                     226/1027 
  Upgrading        : rpm-build-libs-4.14.3-19.el8.x86_64               227/1027 
  Running scriptlet: rpm-build-libs-4.14.3-19.el8.x86_64               227/1027 
  Upgrading        : python3-rpm-4.14.3-19.el8.x86_64                  228/1027 
  Upgrading        : plymouth-plugin-label-0.9.4-10.20200615git1e36    229/1027 
  Upgrading        : plymouth-plugin-two-step-0.9.4-10.20200615git1    230/1027 
  Upgrading        : plymouth-theme-spinner-0.9.4-10.20200615git1e3    231/1027 
  Running scriptlet: plymouth-theme-spinner-0.9.4-10.20200615git1e3    231/1027 
  Upgrading        : plymouth-theme-charge-0.9.4-10.20200615git1e36    232/1027 
  Running scriptlet: plymouth-theme-charge-0.9.4-10.20200615git1e36    232/1027 
  Installing       : kernel-modules-4.18.0-348.12.2.el8_5.x86_64       233/1027 
  Running scriptlet: kernel-modules-4.18.0-348.12.2.el8_5.x86_64       233/1027 
  Running scriptlet: kmod-kvdo-6.2.5.72-81.el8.x86_64                  234/1027 
  Upgrading        : kmod-kvdo-6.2.5.72-81.el8.x86_64                  234/1027 
  Running scriptlet: kmod-kvdo-6.2.5.72-81.el8.x86_64                  234/1027 
  Upgrading        : libqmi-utils-1.24.0-3.el8.x86_64                  235/1027 
  Upgrading        : ModemManager-1.10.8-4.el8.x86_64                  236/1027 
  Running scriptlet: ModemManager-1.10.8-4.el8.x86_64                  236/1027 
  Upgrading        : device-mapper-event-8:1.02.177-10.el8.x86_64      237/1027 
  Running scriptlet: device-mapper-event-8:1.02.177-10.el8.x86_64      237/1027 
  Upgrading        : lvm2-libs-8:2.03.12-10.el8.x86_64                 238/1027 
  Upgrading        : lvm2-8:2.03.12-10.el8.x86_64                      239/1027 
  Running scriptlet: lvm2-8:2.03.12-10.el8.x86_64                      239/1027 
  Upgrading        : libblockdev-lvm-2.24-7.el8.x86_64                 240/1027 
  Upgrading        : ostree-2021.3-1.el8.x86_64                        241/1027 
  Running scriptlet: ostree-2021.3-1.el8.x86_64                        241/1027 
  Upgrading        : flatpak-libs-1.8.5-5.el8_5.x86_64                 242/1027 
  Upgrading        : libinput-1.16.3-2.el8.x86_64                      243/1027 
  Running scriptlet: libinput-1.16.3-2.el8.x86_64                      243/1027 
  Upgrading        : iproute-tc-5.12.0-4.el8.x86_64                    244/1027 
  Upgrading        : open-vm-tools-11.2.5-2.el8.x86_64                 245/1027 
  Running scriptlet: open-vm-tools-11.2.5-2.el8.x86_64                 245/1027 
  Upgrading        : python3-policycoreutils-2.9-16.el8.noarch         246/1027 
  Upgrading        : policycoreutils-python-utils-2.9-16.el8.noarch    247/1027 
  Running scriptlet: container-selinux-2:2.167.0-1.module_el8.5.0+2    248/1027 
  Upgrading        : container-selinux-2:2.167.0-1.module_el8.5.0+2    248/1027 
  Running scriptlet: container-selinux-2:2.167.0-1.module_el8.5.0+2    248/1027 
  Upgrading        : flatpak-selinux-1.8.5-5.el8_5.noarch              249/1027 
  Running scriptlet: flatpak-selinux-1.8.5-5.el8_5.noarch              249/1027 
  Running scriptlet: glusterfs-6.0-56.4.el8.x86_64                     250/1027 
  Upgrading        : glusterfs-6.0-56.4.el8.x86_64                     250/1027 
  Running scriptlet: glusterfs-6.0-56.4.el8.x86_64                     250/1027 
  Upgrading        : glusterfs-client-xlators-6.0-56.4.el8.x86_64      251/1027 
  Upgrading        : glusterfs-api-6.0-56.4.el8.x86_64                 252/1027 
  Running scriptlet: glusterfs-api-6.0-56.4.el8.x86_64                 252/1027 
  Upgrading        : qemu-kvm-block-gluster-15:4.2.0-59.module_el8.    253/1027 
  Upgrading        : qemu-kvm-15:4.2.0-59.module_el8.5.0+2608+72063    254/1027 
  Upgrading        : glusterfs-cli-6.0-56.4.el8.x86_64                 255/1027 
  Upgrading        : almalinux-backgrounds-84.5-1.el8.noarch           256/1027 
  Upgrading        : libblockdev-dm-2.24-7.el8.x86_64                  257/1027 
  Upgrading        : libblockdev-kbd-2.24-7.el8.x86_64                 258/1027 
  Upgrading        : libblockdev-nvdimm-2.24-7.el8.x86_64              259/1027 
  Upgrading        : cups-client-1:2.2.6-40.el8.x86_64                 260/1027 
  Running scriptlet: cups-client-1:2.2.6-40.el8.x86_64                 260/1027 
  Upgrading        : cups-filters-libs-1.20.0-27.el8.x86_64            261/1027 
  Running scriptlet: cups-filters-libs-1.20.0-27.el8.x86_64            261/1027 
  Upgrading        : cups-ipptool-1:2.2.6-40.el8.x86_64                262/1027 
  Running scriptlet: chrony-4.1-1.el8.alma.x86_64                      263/1027 
  Upgrading        : chrony-4.1-1.el8.alma.x86_64                      263/1027 
  Running scriptlet: chrony-4.1-1.el8.alma.x86_64                      263/1027 
  Running scriptlet: unbound-libs-1.7.3-17.el8.x86_64                  264/1027 
  Upgrading        : unbound-libs-1.7.3-17.el8.x86_64                  264/1027 
  Running scriptlet: unbound-libs-1.7.3-17.el8.x86_64                  264/1027 
  Upgrading        : python3-unbound-1.7.3-17.el8.x86_64               265/1027 
  Upgrading        : libipa_hbac-2.5.2-2.el8_5.3.x86_64                266/1027 
  Running scriptlet: libipa_hbac-2.5.2-2.el8_5.3.x86_64                266/1027 
  Running scriptlet: libstoragemgmt-1.9.1-1.el8.x86_64                 267/1027 
  Upgrading        : libstoragemgmt-1.9.1-1.el8.x86_64                 267/1027 
  Running scriptlet: libstoragemgmt-1.9.1-1.el8.x86_64                 267/1027 
  Upgrading        : python3-libstoragemgmt-1.9.1-1.el8.x86_64         268/1027 
  Upgrading        : conmon-2:2.0.29-1.module_el8.5.0+2586+018f24d7    269/1027 
  Upgrading        : flatpak-session-helper-1.8.5-5.el8_5.x86_64       270/1027 
  Upgrading        : gtk-update-icon-cache-3.22.30-8.el8.x86_64        271/1027 
  Upgrading        : gtk3-3.22.30-8.el8.x86_64                         272/1027 
  Upgrading        : libgweather-3.28.2-4.el8.x86_64                   273/1027 
  Upgrading        : libnma-1.8.32-1.el8.x86_64                        274/1027 
  Upgrading        : nm-connection-editor-1.18.0-3.el8.x86_64          275/1027 
  Upgrading        : webkit2gtk3-2.32.3-2.el8.x86_64                   276/1027 
  Upgrading        : gnome-online-accounts-3.28.2-3.el8.x86_64         277/1027 
  Upgrading        : anaconda-widgets-33.16.5.6-1.el8.alma.x86_64      278/1027 
  Upgrading        : grilo-0.3.6-3.el8.x86_64                          279/1027 
  Upgrading        : libslirp-4.4.0-1.module_el8.5.0+2586+018f24d7.    280/1027 
  Upgrading        : slirp4netns-1.1.8-1.module_el8.5.0+2586+018f24    281/1027 
  Upgrading        : libudisks2-2.9.0-7.el8.x86_64                     282/1027 
  Upgrading        : criu-3.15-3.module_el8.5.0+2586+018f24d7.x86_6    283/1027 
  Upgrading        : runc-1.0.2-1.module_el8.5.0+2586+018f24d7.x86_    284/1027 
  Upgrading        : containers-common-2:1-2.module_el8.5.0+2586+01    285/1027 
  Upgrading        : podman-catatonit-3.3.1-9.module_el8.5.0+2586+0    286/1027 
  Upgrading        : podman-3.3.1-9.module_el8.5.0+2586+018f24d7.x8    287/1027 
  Upgrading        : librelp-1.9.0-1.el8.x86_64                        288/1027 
  Running scriptlet: librelp-1.9.0-1.el8.x86_64                        288/1027 
  Upgrading        : grub2-tools-extra-1:2.02-106.el8.alma.x86_64      289/1027 
  Upgrading        : dracut-squash-049-191.git20210920.el8.x86_64      290/1027 
  Upgrading        : virt-what-1.18-12.el8.x86_64                      291/1027 
  Upgrading        : rpm-plugin-systemd-inhibit-4.14.3-19.el8.x86_6    292/1027 
  Running scriptlet: authselect-libs-1.2.2-3.el8.x86_64                293/1027 
  Upgrading        : authselect-libs-1.2.2-3.el8.x86_64                293/1027 
  Upgrading        : sssd-client-2.5.2-2.el8_5.3.x86_64                294/1027 
  Running scriptlet: sssd-client-2.5.2-2.el8_5.3.x86_64                294/1027 
  Running scriptlet: sssd-common-2.5.2-2.el8_5.3.x86_64                295/1027 
  Upgrading        : sssd-common-2.5.2-2.el8_5.3.x86_64                295/1027 
  Running scriptlet: sssd-common-2.5.2-2.el8_5.3.x86_64                295/1027 
  Running scriptlet: sssd-krb5-common-2.5.2-2.el8_5.3.x86_64           296/1027 
  Upgrading        : sssd-krb5-common-2.5.2-2.el8_5.3.x86_64           296/1027 
  Upgrading        : sssd-common-pac-2.5.2-2.el8_5.3.x86_64            297/1027 
  Upgrading        : sssd-krb5-2.5.2-2.el8_5.3.x86_64                  298/1027 
  Upgrading        : sssd-ldap-2.5.2-2.el8_5.3.x86_64                  299/1027 
  Running scriptlet: sssd-proxy-2.5.2-2.el8_5.3.x86_64                 300/1027 
  Upgrading        : sssd-proxy-2.5.2-2.el8_5.3.x86_64                 300/1027 
  Upgrading        : sudo-1.8.29-7.el8_4.1.x86_64                      301/1027 
  Running scriptlet: sudo-1.8.29-7.el8_4.1.x86_64                      301/1027 
  Upgrading        : e2fsprogs-1.45.6-2.el8.x86_64                     302/1027 
  Upgrading        : xfsprogs-5.0.0-9.el8.x86_64                       303/1027 
  Running scriptlet: xfsprogs-5.0.0-9.el8.x86_64                       303/1027 
  Upgrading        : binutils-2.30-108.el8_5.1.x86_64                  304/1027 
  Running scriptlet: binutils-2.30-108.el8_5.1.x86_64                  304/1027 
  Upgrading        : mdadm-4.2-rc2.el8.x86_64                          305/1027 
  Running scriptlet: mdadm-4.2-rc2.el8.x86_64                          305/1027 
  Upgrading        : libblockdev-mdraid-2.24-7.el8.x86_64              306/1027 
  Upgrading        : nss-3.67.0-7.el8_5.x86_64                         307/1027 
  Upgrading        : nss-sysinit-3.67.0-7.el8_5.x86_64                 308/1027 
  Upgrading        : poppler-20.11.0-3.el8_5.1.x86_64                  309/1027 
  Running scriptlet: poppler-20.11.0-3.el8_5.1.x86_64                  309/1027 
  Upgrading        : evolution-data-server-langpacks-3.28.5-17.el8.    310/1027 
  Upgrading        : evolution-data-server-3.28.5-17.el8.x86_64        311/1027 
  Running scriptlet: evolution-data-server-3.28.5-17.el8.x86_64        311/1027 
  Upgrading        : gnome-settings-daemon-3.32.0-16.el8.alma.x86_6    312/1027 
  Upgrading        : libblockdev-crypto-2.24-7.el8.x86_64              313/1027 
  Upgrading        : poppler-glib-20.11.0-3.el8_5.1.x86_64             314/1027 
  Running scriptlet: poppler-glib-20.11.0-3.el8_5.1.x86_64             314/1027 
  Upgrading        : evince-libs-3.28.4-14.el8.x86_64                  315/1027 
  Upgrading        : evince-3.28.4-14.el8.x86_64                       316/1027 
  Upgrading        : poppler-utils-20.11.0-3.el8_5.1.x86_64            317/1027 
  Upgrading        : bind-export-libs-32:9.11.26-6.el8.x86_64          318/1027 
  Running scriptlet: bind-export-libs-32:9.11.26-6.el8.x86_64          318/1027 
  Upgrading        : libwinpr-2:2.2.0-7.el8_5.x86_64                   319/1027 
  Upgrading        : nmap-ncat-2:7.70-6.el8.x86_64                     320/1027 
  Running scriptlet: nmap-ncat-2:7.70-6.el8.x86_64                     320/1027 
  Upgrading        : xorg-x11-server-Xorg-1.20.11-2.el8.x86_64         321/1027 
  Upgrading        : xorg-x11-server-Xwayland-21.1.1-6.el8.x86_64      322/1027 
  Upgrading        : quota-1:4.04-14.el8.x86_64                        323/1027 
  Running scriptlet: nfs-utils-1:2.3.3-46.el8.x86_64                   324/1027 
  Upgrading        : nfs-utils-1:2.3.3-46.el8.x86_64                   324/1027 
  Running scriptlet: nfs-utils-1:2.3.3-46.el8.x86_64                   324/1027 
  Upgrading        : adcli-0.8.2-12.el8.x86_64                         325/1027 
  Running scriptlet: adcli-0.8.2-12.el8.x86_64                         325/1027 
  Installing       : python3-cssselect-0.9.2-10.el8.noarch             326/1027 
  Upgrading        : python3-lxml-4.2.3-3.el8.x86_64                   327/1027 
  Installing       : python3-beautifulsoup4-4.6.3-2.el8.1.noarch       328/1027 
  Upgrading        : kernel-tools-4.18.0-348.12.2.el8_5.x86_64         329/1027 
  Upgrading        : python3-gpg-1.13.1-9.el8.x86_64                   330/1027 
  Upgrading        : python3-libcomps-0.1.16-2.el8.x86_64              331/1027 
  Upgrading        : python3-nftables-1:0.9.3-21.el8.x86_64            332/1027 
  Upgrading        : python3-firewall-0.9.3-7.el8.noarch               333/1027 
  Upgrading        : python3-perf-4.18.0-348.12.2.el8_5.x86_64         334/1027 
  Upgrading        : python3-sssdconfig-2.5.2-2.el8_5.3.noarch         335/1027 
  Upgrading        : python3-syspurpose-1.28.21-3.el8.alma.x86_64      336/1027 
  Upgrading        : blivet-data-1:3.4.0-6.el8.noarch                  337/1027 
  Upgrading        : python3-blivet-1:3.4.0-6.el8.noarch               338/1027 
  Upgrading        : python3-bind-32:9.11.26-6.el8.noarch              339/1027 
  Upgrading        : bind-utils-32:9.11.26-6.el8.x86_64                340/1027 
  Upgrading        : sssd-ad-2.5.2-2.el8_5.3.x86_64                    341/1027 
  Running scriptlet: sssd-ipa-2.5.2-2.el8_5.3.x86_64                   342/1027 
  Upgrading        : sssd-ipa-2.5.2-2.el8_5.3.x86_64                   342/1027 
  Upgrading        : sssd-2.5.2-2.el8_5.3.x86_64                       343/1027 
  Upgrading        : authselect-1.2.2-3.el8.x86_64                     344/1027 
  Upgrading        : python3-kickstart-3.16.14-1.el8.noarch            345/1027 
  Upgrading        : libndp-1.7-6.el8.x86_64                           346/1027 
  Running scriptlet: libndp-1.7-6.el8.x86_64                           346/1027 
  Upgrading        : hdparm-9.54-4.el8.x86_64                          347/1027 
  Upgrading        : firewalld-filesystem-0.9.3-7.el8.noarch           348/1027 
  Upgrading        : dnf-data-4.7.0-4.el8.noarch                       349/1027 
  Upgrading        : python3-dnf-4.7.0-4.el8.noarch                    350/1027 
  Upgrading        : dnf-4.7.0-4.el8.noarch                            351/1027 
  Running scriptlet: dnf-4.7.0-4.el8.noarch                            351/1027 
  Upgrading        : python3-dnf-plugins-core-4.0.21-3.el8.noarch      352/1027 
  Upgrading        : dhcp-libs-12:4.3.6-45.el8.x86_64                  353/1027 
  Upgrading        : dhcp-common-12:4.3.6-45.el8.noarch                354/1027 
  Upgrading        : dhcp-client-12:4.3.6-45.el8.x86_64                355/1027 
  Upgrading        : dbus-common-1:1.12.8-14.el8.noarch                356/1027 
  Running scriptlet: dbus-daemon-1:1.12.8-14.el8.x86_64                357/1027 
  Upgrading        : dbus-daemon-1:1.12.8-14.el8.x86_64                357/1027 
  Running scriptlet: dbus-daemon-1:1.12.8-14.el8.x86_64                357/1027 
  Upgrading        : dbus-1:1.12.8-14.el8.x86_64                       358/1027 
  Running scriptlet: NetworkManager-1:1.32.10-4.el8.x86_64             359/1027 
  Upgrading        : NetworkManager-1:1.32.10-4.el8.x86_64             359/1027 
  Running scriptlet: NetworkManager-1:1.32.10-4.el8.x86_64             359/1027 
  Running scriptlet: polkit-0.115-13.el8_5.1.x86_64                    360/1027 
  Upgrading        : polkit-0.115-13.el8_5.1.x86_64                    360/1027 
  Running scriptlet: polkit-0.115-13.el8_5.1.x86_64                    360/1027 
  Running scriptlet: libvirt-daemon-6.0.0-37.module_el8.5.0+2608+72    361/1027 
  Upgrading        : libvirt-daemon-6.0.0-37.module_el8.5.0+2608+72    361/1027 
  Running scriptlet: libvirt-daemon-6.0.0-37.module_el8.5.0+2608+72    361/1027 
  Upgrading        : libvirt-daemon-driver-storage-core-6.0.0-37.mo    362/1027 
  Upgrading        : ibus-libs-1.5.19-14.el8_5.x86_64                  363/1027 
  Upgrading        : udisks2-2.9.0-7.el8.x86_64                        364/1027 
  Running scriptlet: udisks2-2.9.0-7.el8.x86_64                        364/1027 
  Upgrading        : dbus-x11-1:1.12.8-14.el8.x86_64                   365/1027 
  Upgrading        : gnome-session-3.28.1-13.el8.x86_64                366/1027 
  Upgrading        : accountsservice-0.6.55-2.el8_5.2.x86_64           367/1027 
  Running scriptlet: accountsservice-0.6.55-2.el8_5.2.x86_64           367/1027 
  Upgrading        : accountsservice-libs-0.6.55-2.el8_5.2.x86_64      368/1027 
  Upgrading        : libvirt-daemon-driver-network-6.0.0-37.module_    369/1027 
  Running scriptlet: libvirt-daemon-driver-network-6.0.0-37.module_    369/1027 
  Upgrading        : setroubleshoot-plugins-3.3.14-1.el8.noarch        370/1027 
  Running scriptlet: setroubleshoot-server-3.3.24-4.el8.x86_64         371/1027 
  Upgrading        : setroubleshoot-server-3.3.24-4.el8.x86_64         371/1027 
  Running scriptlet: setroubleshoot-server-3.3.24-4.el8.x86_64         371/1027 
  Upgrading        : NetworkManager-team-1:1.32.10-4.el8.x86_64        372/1027 
  Upgrading        : anaconda-tui-33.16.5.6-1.el8.alma.x86_64          373/1027 
  Upgrading        : anaconda-core-33.16.5.6-1.el8.alma.x86_64         374/1027 
  Upgrading        : NetworkManager-wifi-1:1.32.10-4.el8.x86_64        375/1027 
  Upgrading        : bluez-5.56-2.el8.alma.x86_64                      376/1027 
  Running scriptlet: bluez-5.56-2.el8.alma.x86_64                      376/1027 
  Upgrading        : gnome-session-wayland-session-3.28.1-13.el8.x8    377/1027 
  Upgrading        : gnome-session-xsession-3.28.1-13.el8.x86_64       378/1027 
  Upgrading        : tigervnc-server-minimal-1.11.0-9.el8.x86_64       379/1027 
  Upgrading        : fwupd-1.5.9-1.el8_4.alma.x86_64                   380/1027 
  Running scriptlet: fwupd-1.5.9-1.el8_4.alma.x86_64                   380/1027 
  Upgrading        : udisks2-iscsi-2.9.0-7.el8.x86_64                  381/1027 
  Upgrading        : udisks2-lvm2-2.9.0-7.el8.x86_64                   382/1027 
  Upgrading        : ibus-gtk2-1.5.19-14.el8_5.x86_64                  383/1027 
  Upgrading        : ibus-gtk3-1.5.19-14.el8_5.x86_64                  384/1027 
  Upgrading        : ibus-setup-1.5.19-14.el8_5.noarch                 385/1027 
  Upgrading        : ibus-1.5.19-14.el8_5.x86_64                       386/1027 
  Running scriptlet: ibus-1.5.19-14.el8_5.x86_64                       386/1027 
  Upgrading        : libvirt-daemon-driver-storage-disk-6.0.0-37.mo    387/1027 
  Upgrading        : libvirt-daemon-driver-storage-gluster-6.0.0-37    388/1027 
  Upgrading        : libvirt-daemon-driver-storage-iscsi-6.0.0-37.m    389/1027 
  Upgrading        : libvirt-daemon-driver-storage-iscsi-direct-6.0    390/1027 
  Upgrading        : libvirt-daemon-driver-storage-logical-6.0.0-37    391/1027 
  Upgrading        : libvirt-daemon-driver-storage-mpath-6.0.0-37.m    392/1027 
  Upgrading        : libvirt-daemon-driver-storage-rbd-6.0.0-37.mod    393/1027 
  Upgrading        : libvirt-daemon-driver-storage-scsi-6.0.0-37.mo    394/1027 
  Upgrading        : libvirt-daemon-driver-storage-6.0.0-37.module_    395/1027 
  Upgrading        : libvirt-daemon-driver-interface-6.0.0-37.modul    396/1027 
  Upgrading        : libvirt-daemon-driver-nodedev-6.0.0-37.module_    397/1027 
  Upgrading        : libvirt-daemon-driver-nwfilter-6.0.0-37.module    398/1027 
  Running scriptlet: libvirt-daemon-driver-qemu-6.0.0-37.module_el8    399/1027 
  Upgrading        : libvirt-daemon-driver-qemu-6.0.0-37.module_el8    399/1027 
  Upgrading        : libvirt-daemon-driver-secret-6.0.0-37.module_e    400/1027 
  Upgrading        : realmd-0.16.3-23.el8.x86_64                       401/1027 
  Running scriptlet: realmd-0.16.3-23.el8.x86_64                       401/1027 
  Upgrading        : cockpit-packagekit-251.1-1.el8.noarch             402/1027 
  Upgrading        : NetworkManager-wwan-1:1.32.10-4.el8.x86_64        403/1027 
  Upgrading        : dracut-network-049-191.git20210920.el8.x86_64     404/1027 
  Upgrading        : kexec-tools-2.0.20-57.el8_5.1.x86_64              405/1027 
  Running scriptlet: kexec-tools-2.0.20-57.el8_5.1.x86_64              405/1027 
  Upgrading        : cockpit-system-251.1-1.el8.noarch                 406/1027 
  Upgrading        : cockpit-storaged-251.1-1.el8.noarch               407/1027 
  Upgrading        : cups-1:2.2.6-40.el8.x86_64                        408/1027 
  Running scriptlet: cups-1:2.2.6-40.el8.x86_64                        408/1027 
  Upgrading        : cups-filters-1.20.0-27.el8.x86_64                 409/1027 
  Running scriptlet: cups-filters-1.20.0-27.el8.x86_64                 409/1027 
  Upgrading        : mutter-3.32.2-60.el8.x86_64                       410/1027 
  Upgrading        : vino-3.22.0-11.el8.x86_64                         411/1027 
  Running scriptlet: vino-3.22.0-11.el8.x86_64                         411/1027 
  Upgrading        : gnome-control-center-3.28.2-28.el8.x86_64         412/1027 
  Running scriptlet: gdm-1:40.0-15.el8.x86_64                          413/1027 
  Upgrading        : gdm-1:40.0-15.el8.x86_64                          413/1027 
  Running scriptlet: gdm-1:40.0-15.el8.x86_64                          413/1027 
  Upgrading        : gnome-shell-3.32.2-40.el8.x86_64                  414/1027 
  Upgrading        : gnome-shell-extension-common-3.32.1-22.el8_5.n    415/1027 
  Upgrading        : gnome-shell-extension-apps-menu-3.32.1-22.el8_    416/1027 
  Upgrading        : gnome-shell-extension-desktop-icons-3.32.1-22.    417/1027 
  Upgrading        : gnome-shell-extension-horizontal-workspaces-3.    418/1027 
  Upgrading        : gnome-shell-extension-launch-new-instance-3.32    419/1027 
  Upgrading        : gnome-shell-extension-places-menu-3.32.1-22.el    420/1027 
  Upgrading        : gnome-shell-extension-window-list-3.32.1-22.el    421/1027 
  Running scriptlet: flatpak-1.8.5-5.el8_5.x86_64                      422/1027 
  Upgrading        : flatpak-1.8.5-5.el8_5.x86_64                      422/1027 
  Running scriptlet: flatpak-1.8.5-5.el8_5.x86_64                      422/1027 
  Upgrading        : xdg-desktop-portal-1.6.0-5.el8.x86_64             423/1027 
  Running scriptlet: xdg-desktop-portal-1.6.0-5.el8.x86_64             423/1027 
  Upgrading        : gnome-software-3.36.1-10.el8.x86_64               424/1027 
  Upgrading        : gnome-classic-session-3.32.1-22.el8_5.noarch      425/1027 
  Upgrading        : cockpit-251.1-1.el8.x86_64                        426/1027 
  Upgrading        : NetworkManager-bluetooth-1:1.32.10-4.el8.x86_6    427/1027 
  Upgrading        : authselect-compat-1.2.2-3.el8.x86_64              428/1027 
  Upgrading        : libvirt-daemon-kvm-6.0.0-37.module_el8.5.0+260    429/1027 
  Upgrading        : anaconda-gui-33.16.5.6-1.el8.alma.x86_64          430/1027 
  Upgrading        : bluez-obexd-5.56-2.el8.alma.x86_64                431/1027 
  Running scriptlet: bluez-obexd-5.56-2.el8.alma.x86_64                431/1027 
  Upgrading        : libvirt-daemon-config-network-6.0.0-37.module_    432/1027 
  Running scriptlet: libvirt-daemon-config-network-6.0.0-37.module_    432/1027 
  Upgrading        : tuned-2.16.0-1.el8.noarch                         433/1027 
  Running scriptlet: tuned-2.16.0-1.el8.noarch                         433/1027 
  Upgrading        : NetworkManager-adsl-1:1.32.10-4.el8.x86_64        434/1027 
  Upgrading        : NetworkManager-tui-1:1.32.10-4.el8.x86_64         435/1027 
  Upgrading        : gupnp-1.0.6-2.el8_4.x86_64                        436/1027 
  Running scriptlet: gupnp-1.0.6-2.el8_4.x86_64                        436/1027 
  Upgrading        : dnf-plugins-core-4.0.21-3.el8.noarch              437/1027 
  Upgrading        : yum-4.7.0-4.el8.noarch                            438/1027 
  Upgrading        : firewalld-0.9.3-7.el8.noarch                      439/1027 
  Running scriptlet: firewalld-0.9.3-7.el8.noarch                      439/1027 
  Upgrading        : freerdp-libs-2:2.2.0-7.el8_5.x86_64               440/1027 
  Upgrading        : evince-nautilus-3.28.4-14.el8.x86_64              441/1027 
  Upgrading        : firefox-91.5.0-1.el8_5.alma.x86_64                442/1027 
  Running scriptlet: firefox-91.5.0-1.el8_5.alma.x86_64                442/1027 
  Upgrading        : file-roller-3.28.1-4.el8.x86_64                   443/1027 
  Upgrading        : sssd-kcm-2.5.2-2.el8_5.3.x86_64                   444/1027 
  Running scriptlet: sssd-kcm-2.5.2-2.el8_5.3.x86_64                   444/1027 
  Upgrading        : grub2-efi-x64-1:2.02-106.el8.alma.x86_64          445/1027 
  Upgrading        : rsyslog-relp-8.2102.0-5.el8.x86_64                446/1027 
  Upgrading        : cockpit-podman-33-1.module_el8.5.0+2586+018f24    447/1027 
  Upgrading        : buildah-1.22.3-2.module_el8.5.0+2586+018f24d7.    448/1027 
  Upgrading        : gnome-autoar-0.2.3-2.el8.x86_64                   449/1027 
  Upgrading        : gnome-calculator-3.28.2-2.el8.x86_64              450/1027 
  Upgrading        : open-vm-tools-desktop-11.2.5-2.el8.x86_64         451/1027 
  Running scriptlet: open-vm-tools-desktop-11.2.5-2.el8.x86_64         451/1027 
  Upgrading        : vdo-6.2.5.74-14.el8.x86_64                        452/1027 
  Running scriptlet: vdo-6.2.5.74-14.el8.x86_64                        452/1027 
  Installing       : kernel-4.18.0-348.12.2.el8_5.x86_64               453/1027 
  Upgrading        : plymouth-system-theme-0.9.4-10.20200615git1e36    454/1027 
  Upgrading        : libsane-hpaio-3.18.4-9.el8.alma.x86_64            455/1027 
  Running scriptlet: rng-tools-6.13-1.git.d207e0b6.el8.x86_64          456/1027 
  Upgrading        : rng-tools-6.13-1.git.d207e0b6.el8.x86_64          456/1027 
  Running scriptlet: rng-tools-6.13-1.git.d207e0b6.el8.x86_64          456/1027 
Warning: The unit file, source configuration file or drop-ins of rngd-wake-threshold.service changed on disk. Run 'systemctl daemon-reload' to reload units.

  Upgrading        : tpm2-tools-4.1.1-5.el8.x86_64                     457/1027 
  Upgrading        : vim-enhanced-2:8.0.1763-16.el8.x86_64             458/1027 
  Upgrading        : rsyslog-gnutls-8.2102.0-5.el8.x86_64              459/1027 
  Upgrading        : rsyslog-gssapi-8.2102.0-5.el8.x86_64              460/1027 
  Upgrading        : openssh-clients-8.0p1-10.el8.x86_64               461/1027 
  Running scriptlet: openssh-server-8.0p1-10.el8.x86_64                462/1027 
  Upgrading        : openssh-server-8.0p1-10.el8.x86_64                462/1027 
  Running scriptlet: openssh-server-8.0p1-10.el8.x86_64                462/1027 
  Upgrading        : openssh-askpass-8.0p1-10.el8.x86_64               463/1027 
  Upgrading        : python3-librepo-1.14.0-2.el8.x86_64               464/1027 
  Upgrading        : alsa-ucm-1.2.5-4.el8.noarch                       465/1027 
  Running scriptlet: alsa-utils-1.2.5-3.el8.x86_64                     466/1027 
  Upgrading        : alsa-utils-1.2.5-3.el8.x86_64                     466/1027 
  Running scriptlet: alsa-utils-1.2.5-3.el8.x86_64                     466/1027 
  Running scriptlet: tcpdump-14:4.9.3-2.el8.x86_64                     467/1027 
  Upgrading        : tcpdump-14:4.9.3-2.el8.x86_64                     467/1027 
  Upgrading        : usermode-1.113-2.el8.x86_64                       468/1027 
  Upgrading        : qemu-guest-agent-15:4.2.0-59.module_el8.5.0+26    469/1027 
  Running scriptlet: qemu-guest-agent-15:4.2.0-59.module_el8.5.0+26    469/1027 
  Installing       : grub2-tools-efi-1:2.02-106.el8.alma.x86_64        470/1027 
  Upgrading        : dracut-config-rescue-049-191.git20210920.el8.x    471/1027 
  Upgrading        : util-linux-user-2.32.1-28.el8.x86_64              472/1027 
  Running scriptlet: man-db-2.7.6.1-18.el8.x86_64                      473/1027 
  Upgrading        : man-db-2.7.6.1-18.el8.x86_64                      473/1027 
  Running scriptlet: man-db-2.7.6.1-18.el8.x86_64                      473/1027 
  Upgrading        : microcode_ctl-4:20210608-1.el8.x86_64             474/1027 
  Running scriptlet: microcode_ctl-4:20210608-1.el8.x86_64             474/1027 
  Upgrading        : python3-cryptography-3.2.1-5.el8.x86_64           475/1027 
  Upgrading        : elfutils-debuginfod-client-0.185-1.el8.x86_64     476/1027 
  Upgrading        : python3-psutil-5.4.3-11.el8.x86_64                477/1027 
  Upgrading        : mesa-libxatracker-21.1.5-1.el8.x86_64             478/1027 
  Running scriptlet: mesa-libxatracker-21.1.5-1.el8.x86_64             478/1027 
  Upgrading        : elfutils-default-yama-scope-0.185-1.el8.noarch    479/1027 
  Running scriptlet: elfutils-default-yama-scope-0.185-1.el8.noarch    479/1027 
  Upgrading        : mcelog-3:175-1.el8.x86_64                         480/1027 
  Running scriptlet: mcelog-3:175-1.el8.x86_64                         480/1027 
  Upgrading        : strace-5.7-3.el8.x86_64                           481/1027 
  Upgrading        : xorg-x11-font-utils-1:7.5-41.el8.x86_64           482/1027 
  Upgrading        : lua-5.3.4-12.el8.x86_64                           483/1027 
  Upgrading        : perl-Math-Complex-1.59-420.el8.noarch             484/1027 
  Upgrading        : rasdaemon-0.6.1-6.el8.x86_64                      485/1027 
  Upgrading        : epel-release-8-13.el8.noarch                      486/1027 
  Upgrading        : lshw-B.02.19.2-6.el8.x86_64                       487/1027 
  Upgrading        : osinfo-db-20210903-1.el8.noarch                   488/1027 
  Upgrading        : jasper-libs-2.0.14-5.el8.x86_64                   489/1027 
  Upgrading        : bpftool-4.18.0-348.12.2.el8_5.x86_64              490/1027 
  Upgrading        : compat-exiv2-026-0.26-6.el8.x86_64                491/1027 
  Upgrading        : man-pages-overrides-8.5.0.1-1.el8.noarch          492/1027 
  Upgrading        : libsndfile-1.0.28-10.el8_4.1.x86_64               493/1027 
  Running scriptlet: libsndfile-1.0.28-10.el8_4.1.x86_64               493/1027 
  Upgrading        : tzdata-2021e-1.el8.noarch                         494/1027 
  Upgrading        : lz4-libs-1.8.3-3.el8_4.x86_64                     495/1027 
  Upgrading        : lz4-1.8.3-3.el8_4.x86_64                          496/1027 
  Upgrading        : lsscsi-0.32-3.el8.x86_64                          497/1027 
  Upgrading        : libertas-usb8388-firmware-2:20210702-103.gitd7    498/1027 
  Upgrading        : iwl7260-firmware-1:25.30.13.0-103.el8.1.noarch    499/1027 
  Upgrading        : iwl6050-firmware-41.28.5.1-103.el8.1.noarch       500/1027 
  Upgrading        : iwl6000g2b-firmware-18.168.6.1-103.el8.1.noarc    501/1027 
  Upgrading        : iwl6000g2a-firmware-18.168.6.1-103.el8.1.noarc    502/1027 
  Upgrading        : iwl6000-firmware-9.221.4.1-103.el8.1.noarch       503/1027 
  Upgrading        : iwl5150-firmware-8.24.2.2-103.el8.1.noarch        504/1027 
  Upgrading        : iwl5000-firmware-8.83.5.1_1-103.el8.1.noarch      505/1027 
  Upgrading        : iwl4965-firmware-228.61.2.24-103.el8.1.noarch     506/1027 
  Upgrading        : iwl3945-firmware-15.32.2.9-103.el8.1.noarch       507/1027 
  Upgrading        : iwl3160-firmware-1:25.30.13.0-103.el8.1.noarch    508/1027 
  Upgrading        : iwl2030-firmware-18.168.6.1-103.el8.1.noarch      509/1027 
  Upgrading        : iwl2000-firmware-18.168.6.1-103.el8.1.noarch      510/1027 
  Upgrading        : iwl135-firmware-18.168.6.1-103.el8.1.noarch       511/1027 
  Upgrading        : iwl105-firmware-18.168.6.1-103.el8.1.noarch       512/1027 
  Upgrading        : iwl1000-firmware-1:39.31.5.1-103.el8.1.noarch     513/1027 
  Upgrading        : iwl100-firmware-39.31.5.1-103.el8.1.noarch        514/1027 
  Upgrading        : emacs-filesystem-1:26.1-7.el8.noarch              515/1027 
  Upgrading        : efibootmgr-16-1.el8.0.1.x86_64                    516/1027 
  Upgrading        : NetworkManager-config-server-1:1.32.10-4.el8.n    517/1027 
  Running scriptlet: firefox-78.10.0-1.el8_3.alma.x86_64               518/1027 
  Cleanup          : firefox-78.10.0-1.el8_3.alma.x86_64               518/1027 
  Running scriptlet: firefox-78.10.0-1.el8_3.alma.x86_64               518/1027 
  Cleanup          : gnome-software-3.36.1-5.el8.x86_64                519/1027 
  Cleanup          : flatpak-1.8.5-3.el8.x86_64                        520/1027 
  Running scriptlet: gdm-1:3.28.3-39.el8.x86_64                        521/1027 
  Cleanup          : gdm-1:3.28.3-39.el8.x86_64                        521/1027 
  Running scriptlet: gdm-1:3.28.3-39.el8.x86_64                        521/1027 
  Running scriptlet: cups-1:2.2.6-38.el8.x86_64                        522/1027 
  Cleanup          : cups-1:2.2.6-38.el8.x86_64                        522/1027 
  Running scriptlet: cups-1:2.2.6-38.el8.x86_64                        522/1027 
  Running scriptlet: cups-filters-1.20.0-24.el8.x86_64                 523/1027 
  Cleanup          : cups-filters-1.20.0-24.el8.x86_64                 523/1027 
  Running scriptlet: cups-filters-1.20.0-24.el8.x86_64                 523/1027 
  Running scriptlet: sssd-kcm-2.4.0-9.el8.x86_64                       524/1027 
  Cleanup          : sssd-kcm-2.4.0-9.el8.x86_64                       524/1027 
  Running scriptlet: sssd-kcm-2.4.0-9.el8.x86_64                       524/1027 
  Cleanup          : python3-lxml-4.2.3-2.el8.x86_64                   525/1027 
  Cleanup          : NetworkManager-tui-1:1.30.0-7.el8.x86_64          526/1027 
  Running scriptlet: tuned-2.15.0-2.el8.noarch                         527/1027 
  Cleanup          : tuned-2.15.0-2.el8.noarch                         527/1027 
  Running scriptlet: tuned-2.15.0-2.el8.noarch                         527/1027 
  Running scriptlet: fwupd-1.5.5-3.el8.alma.x86_64                     528/1027 
  Cleanup          : fwupd-1.5.5-3.el8.alma.x86_64                     528/1027 
  Running scriptlet: fwupd-1.5.5-3.el8.alma.x86_64                     528/1027 
  Running scriptlet: open-vm-tools-desktop-11.2.0-2.el8.x86_64         529/1027 
  Cleanup          : open-vm-tools-desktop-11.2.0-2.el8.x86_64         529/1027 
  Running scriptlet: open-vm-tools-desktop-11.2.0-2.el8.x86_64         529/1027 
  Running scriptlet: open-vm-tools-11.2.0-2.el8.x86_64                 530/1027 
  Cleanup          : open-vm-tools-11.2.0-2.el8.x86_64                 530/1027 
  Running scriptlet: open-vm-tools-11.2.0-2.el8.x86_64                 530/1027 
  Running scriptlet: openssh-server-8.0p1-6.el8_4.2.x86_64             531/1027 
  Cleanup          : openssh-server-8.0p1-6.el8_4.2.x86_64             531/1027 
  Running scriptlet: openssh-server-8.0p1-6.el8_4.2.x86_64             531/1027 
  Obsoleting       : python3-libstoragemgmt-clibs-1.8.7-1.el8.x86_6    532/1027 
  Running scriptlet: libstoragemgmt-1.8.7-1.el8.x86_64                 533/1027 
  Cleanup          : libstoragemgmt-1.8.7-1.el8.x86_64                 533/1027 
  Running scriptlet: libstoragemgmt-1.8.7-1.el8.x86_64                 533/1027 
  Cleanup          : python3-libstoragemgmt-1.8.7-1.el8.noarch         534/1027 
  Running scriptlet: rng-tools-6.8-3.el8.x86_64                        535/1027 
  Cleanup          : rng-tools-6.8-3.el8.x86_64                        535/1027 
  Running scriptlet: rng-tools-6.8-3.el8.x86_64                        535/1027 
  Running scriptlet: vdo-6.2.4.14-14.el8.x86_64                        536/1027 
  Cleanup          : vdo-6.2.4.14-14.el8.x86_64                        536/1027 
  Running scriptlet: vdo-6.2.4.14-14.el8.x86_64                        536/1027 
  Running scriptlet: alsa-utils-1.2.4-2.el8.x86_64                     537/1027 
  Cleanup          : alsa-utils-1.2.4-2.el8.x86_64                     537/1027 
  Running scriptlet: alsa-utils-1.2.4-2.el8.x86_64                     537/1027 
  Cleanup          : freerdp-libs-2:2.2.0-1.el8.x86_64                 538/1027 
  Cleanup          : cups-filters-libs-1.20.0-24.el8.x86_64            539/1027 
  Running scriptlet: cups-filters-libs-1.20.0-24.el8.x86_64            539/1027 
  Cleanup          : poppler-utils-20.11.0-2.el8.x86_64                540/1027 
  Cleanup          : mesa-libxatracker-20.3.3-2.el8.x86_64             541/1027 
  Running scriptlet: mesa-libxatracker-20.3.3-2.el8.x86_64             541/1027 
  Cleanup          : evince-nautilus-3.28.4-11.el8.x86_64              542/1027 
  Cleanup          : evince-3.28.4-11.el8.x86_64                       543/1027 
  Cleanup          : evince-libs-3.28.4-11.el8.x86_64                  544/1027 
  Cleanup          : poppler-glib-20.11.0-2.el8.x86_64                 545/1027 
  Running scriptlet: poppler-glib-20.11.0-2.el8.x86_64                 545/1027 
  Cleanup          : poppler-20.11.0-2.el8.x86_64                      546/1027 
  Running scriptlet: poppler-20.11.0-2.el8.x86_64                      546/1027 
  Cleanup          : exiv2-0.27.3-2.el8.x86_64                         547/1027 
  Cleanup          : openssh-clients-8.0p1-6.el8_4.2.x86_64            548/1027 
  Cleanup          : libsane-hpaio-3.18.4-9.el8.x86_64                 549/1027 
  Running scriptlet: cups-client-1:2.2.6-38.el8.x86_64                 550/1027 
  Cleanup          : cups-client-1:2.2.6-38.el8.x86_64                 550/1027 
  Cleanup          : gupnp-1.0.6-1.el8.x86_64                          551/1027 
  Running scriptlet: gupnp-1.0.6-1.el8.x86_64                          551/1027 
  Cleanup          : file-roller-3.28.1-3.el8.x86_64                   552/1027 
  Running scriptlet: binutils-2.30-93.el8.x86_64                       553/1027 
  Cleanup          : binutils-2.30-93.el8.x86_64                       553/1027 
  Running scriptlet: binutils-2.30-93.el8.x86_64                       553/1027 
  Cleanup          : buildah-1.19.7-1.module_el8.4.0+2332+f4da7515.    554/1027 
  Cleanup          : python3-cryptography-3.2.1-4.el8.x86_64           555/1027 
  Cleanup          : lshw-B.02.19.2-5.el8.x86_64                       556/1027 
  Cleanup          : NetworkManager-bluetooth-1:1.30.0-7.el8.x86_64    557/1027 
  Cleanup          : libvirt-daemon-kvm-6.0.0-35.module_el8.4.0+235    558/1027 
  Cleanup          : libvirt-daemon-driver-storage-6.0.0-35.module_    559/1027 
  Cleanup          : qemu-kvm-15:4.2.0-48.module_el8.4.0+2358+630e8    560/1027 
  Running scriptlet: microcode_ctl-4:20210216-1.el8.x86_64             561/1027 
  Cleanup          : microcode_ctl-4:20210216-1.el8.x86_64             561/1027 
  Running scriptlet: microcode_ctl-4:20210216-1.el8.x86_64             561/1027 
  Running scriptlet: firewalld-0.8.2-6.el8.noarch                      562/1027 
  Cleanup          : firewalld-0.8.2-6.el8.noarch                      562/1027 
  Running scriptlet: firewalld-0.8.2-6.el8.noarch                      562/1027 
  Cleanup          : libvirt-daemon-driver-interface-6.0.0-35.modul    563/1027 
  Cleanup          : libvirt-daemon-driver-qemu-6.0.0-35.module_el8    564/1027 
  Cleanup          : libvirt-daemon-driver-nwfilter-6.0.0-35.module    565/1027 
  Cleanup          : libvirt-daemon-driver-nodedev-6.0.0-35.module_    566/1027 
  Cleanup          : libvirt-daemon-driver-secret-6.0.0-35.module_e    567/1027 
  Cleanup          : libvirt-daemon-driver-storage-gluster-6.0.0-35    568/1027 
  Cleanup          : qemu-kvm-core-15:4.2.0-48.module_el8.4.0+2358+    569/1027 
  Cleanup          : libvirt-daemon-driver-storage-mpath-6.0.0-35.m    570/1027 
  Cleanup          : libvirt-daemon-driver-storage-disk-6.0.0-35.mo    571/1027 
  Cleanup          : libvirt-daemon-driver-storage-iscsi-direct-6.0    572/1027 
  Cleanup          : libvirt-daemon-driver-storage-iscsi-6.0.0-35.m    573/1027 
  Cleanup          : libvirt-daemon-driver-storage-logical-6.0.0-35    574/1027 
  Cleanup          : libvirt-daemon-driver-storage-scsi-6.0.0-35.mo    575/1027 
  Cleanup          : qemu-kvm-block-gluster-15:4.2.0-48.module_el8.    576/1027 
  Cleanup          : libvirt-daemon-driver-storage-rbd-6.0.0-35.mod    577/1027 
  Cleanup          : libvirt-daemon-driver-storage-core-6.0.0-35.mo    578/1027 
  Running scriptlet: nfs-utils-1:2.3.3-41.el8.x86_64                   579/1027 
  Cleanup          : nfs-utils-1:2.3.3-41.el8.x86_64                   579/1027 
  Running scriptlet: nfs-utils-1:2.3.3-41.el8.x86_64                   579/1027 
  Cleanup          : glusterfs-cli-6.0-56.el8.x86_64                   580/1027 
  Cleanup          : glusterfs-api-6.0-56.el8.x86_64                   581/1027 
  Cleanup          : glusterfs-6.0-56.el8.x86_64                       582/1027 
  Running scriptlet: glusterfs-6.0-56.el8.x86_64                       582/1027 
  Cleanup          : qemu-kvm-block-ssh-15:4.2.0-48.module_el8.4.0+    583/1027 
  Cleanup          : glusterfs-client-xlators-6.0-56.el8.x86_64        584/1027 
  Cleanup          : keyutils-1.5.10-6.el8.x86_64                      585/1027 
  Cleanup          : qemu-img-15:4.2.0-48.module_el8.4.0+2358+630e8    586/1027 
  Running scriptlet: netcf-libs-0.2.8-12.module_el8.3.0+2048+e7a0a3    587/1027 
  Cleanup          : netcf-libs-0.2.8-12.module_el8.3.0+2048+e7a0a3    587/1027 
  Running scriptlet: netcf-libs-0.2.8-12.module_el8.3.0+2048+e7a0a3    587/1027 
  Cleanup          : qemu-kvm-block-curl-15:4.2.0-48.module_el8.4.0    588/1027 
  Cleanup          : qemu-kvm-block-iscsi-15:4.2.0-48.module_el8.4.    589/1027 
  Cleanup          : exiv2-libs-0.27.3-2.el8.x86_64                    590/1027 
  Cleanup          : xorg-x11-server-Xorg-1.20.10-1.el8.x86_64         591/1027 
  Cleanup          : vim-enhanced-2:8.0.1763-15.el8.x86_64             592/1027 
  Cleanup          : openssh-askpass-8.0p1-6.el8_4.2.x86_64            593/1027 
  Cleanup          : python3-librepo-1.12.0-3.el8.x86_64               594/1027 
  Cleanup          : glusterfs-libs-6.0-56.el8.x86_64                  595/1027 
  Cleanup          : qemu-kvm-block-rbd-15:4.2.0-48.module_el8.4.0+    596/1027 
  Running scriptlet: qemu-kvm-common-15:4.2.0-48.module_el8.4.0+235    597/1027 
  Cleanup          : qemu-kvm-common-15:4.2.0-48.module_el8.4.0+235    597/1027 
  Running scriptlet: qemu-kvm-common-15:4.2.0-48.module_el8.4.0+235    597/1027 
  Running scriptlet: qemu-guest-agent-15:4.2.0-48.module_el8.4.0+23    598/1027 
  Cleanup          : qemu-guest-agent-15:4.2.0-48.module_el8.4.0+23    598/1027 
  Running scriptlet: qemu-guest-agent-15:4.2.0-48.module_el8.4.0+23    598/1027 
  Cleanup          : gnome-calculator-3.28.2-1.el8.x86_64              599/1027 
  Cleanup          : compat-exiv2-026-0.26-3.el8.x86_64                600/1027 
  Cleanup          : usermode-1.113-1.el8.x86_64                       601/1027 
  Cleanup          : tpm2-tools-4.1.1-2.el8.x86_64                     602/1027 
  Cleanup          : rasdaemon-0.6.1-5.el8.x86_64                      603/1027 
  Cleanup          : anaconda-gui-33.16.4.15-1.el8.alma.x86_64         604/1027 
  Cleanup          : anaconda-core-33.16.4.15-1.el8.alma.x86_64        605/1027 
  Cleanup          : flatpak-libs-1.8.5-3.el8.x86_64                   606/1027 
  Running scriptlet: ostree-2020.7-4.el8.x86_64                        607/1027 
  Cleanup          : ostree-2020.7-4.el8.x86_64                        607/1027 
  Cleanup          : tigervnc-server-minimal-1.11.0-6.el8.x86_64       608/1027 
  Cleanup          : python3-blivet-1:3.2.2-10.el8.noarch              609/1027 
  Cleanup          : mesa-dri-drivers-20.3.3-2.el8.x86_64              610/1027 
  Cleanup          : llvm-libs-11.0.0-2.module_el8.4.0+2107+39fed69    611/1027 
  Cleanup          : ostree-libs-2020.7-4.el8.x86_64                   612/1027 
  Running scriptlet: chrony-3.5-2.el8.alma.x86_64                      613/1027 
  Cleanup          : chrony-3.5-2.el8.alma.x86_64                      613/1027 
  Running scriptlet: chrony-3.5-2.el8.alma.x86_64                      613/1027 
  Cleanup          : libblockdev-dm-2.24-5.el8.x86_64                  614/1027 
  Cleanup          : libblockdev-mpath-2.24-5.el8.x86_64               615/1027 
  Cleanup          : anaconda-widgets-33.16.4.15-1.el8.alma.x86_64     616/1027 
  Cleanup          : libblockdev-nvdimm-2.24-5.el8.x86_64              617/1027 
  Cleanup          : NetworkManager-wwan-1:1.30.0-7.el8.x86_64         618/1027 
  Running scriptlet: ModemManager-1.10.8-2.el8.x86_64                  619/1027 
  Cleanup          : ModemManager-1.10.8-2.el8.x86_64                  619/1027 
  Running scriptlet: ModemManager-1.10.8-2.el8.x86_64                  619/1027 
  Cleanup          : kernel-tools-4.18.0-305.el8.x86_64                620/1027 
  Cleanup          : cups-ipptool-1:2.2.6-38.el8.x86_64                621/1027 
  Running scriptlet: xdg-desktop-portal-1.6.0-4.el8.x86_64             622/1027 
  Cleanup          : xdg-desktop-portal-1.6.0-4.el8.x86_64             622/1027 
  Cleanup          : gnome-autoar-0.2.3-1.el8.x86_64                   623/1027 
  Running scriptlet: bluez-obexd-5.52-4.el8.alma.x86_64                624/1027 
  Cleanup          : bluez-obexd-5.52-4.el8.alma.x86_64                624/1027 
  Cleanup          : hplip-libs-3.18.4-9.el8.x86_64                    625/1027 
  Running scriptlet: hplip-libs-3.18.4-9.el8.x86_64                    625/1027 
  Running scriptlet: kmod-kvdo-6.2.4.26-77.el8.x86_64                  626/1027 
  Cleanup          : kmod-kvdo-6.2.4.26-77.el8.x86_64                  626/1027 
  Running scriptlet: kmod-kvdo-6.2.4.26-77.el8.x86_64                  626/1027 
  Cleanup          : flatpak-selinux-1.8.5-3.el8.noarch                627/1027 
  Running scriptlet: flatpak-selinux-1.8.5-3.el8.noarch                627/1027 
  Cleanup          : gnome-classic-session-3.32.1-14.el8.noarch        628/1027 
  Running scriptlet: iptables-ebtables-1.8.4-17.el8.x86_64             629/1027 
  Cleanup          : iptables-ebtables-1.8.4-17.el8.x86_64             629/1027 
  Running scriptlet: iptables-ebtables-1.8.4-17.el8.x86_64             629/1027 
  Cleanup          : authselect-compat-1.2.2-2.el8.x86_64              630/1027 
  Cleanup          : perl-Math-Complex-1.59-419.el8.noarch             631/1027 
  Cleanup          : cockpit-238.2-1.el8.x86_64                        632/1027 
  Cleanup          : cockpit-storaged-238.2-1.el8.noarch               633/1027 
  Cleanup          : cockpit-system-238.2-1.el8.noarch                 634/1027 
  Cleanup          : grub2-efi-x64-1:2.02-99.el8.alma.x86_64           635/1027 
  Cleanup          : sos-4.0-11.el8.alma.noarch                        636/1027 
  Cleanup          : python3-pip-9.0.3-19.el8.noarch                   637/1027 
  Cleanup          : libvirt-daemon-config-network-6.0.0-35.module_    638/1027 
  Cleanup          : python3-blockdev-2.24-5.el8.x86_64                639/1027 
  Cleanup          : python3-firewall-0.8.2-6.el8.noarch               640/1027 
  Cleanup          : python3-nftables-1:0.9.3-18.el8.x86_64            641/1027 
  Cleanup          : python3-syspurpose-1.28.13-2.el8.alma.x86_64      642/1027 
  Cleanup          : gnome-session-wayland-session-3.28.1-10.el8.x8    643/1027 
  Cleanup          : cockpit-podman-29-2.module_el8.4.0+2332+f4da75    644/1027 
  Cleanup          : dracut-config-rescue-049-135.git20210121.el8.x    645/1027 
  Cleanup          : cockpit-packagekit-238.2-1.el8.noarch             646/1027 
  Cleanup          : gnome-shell-extension-apps-menu-3.32.1-14.el8.    647/1027 
  Cleanup          : gnome-shell-extension-desktop-icons-3.32.1-14.    648/1027 
  Cleanup          : gnome-shell-extension-horizontal-workspaces-3.    649/1027 
  Cleanup          : gnome-shell-extension-launch-new-instance-3.32    650/1027 
  Cleanup          : gnome-shell-extension-places-menu-3.32.1-14.el    651/1027 
  Cleanup          : gnome-shell-extension-window-list-3.32.1-14.el    652/1027 
  Cleanup          : gnome-shell-extension-common-3.32.1-14.el8.noa    653/1027 
  Cleanup          : blivet-data-1:3.2.2-10.el8.noarch                 654/1027 
  Cleanup          : anaconda-tui-33.16.4.15-1.el8.alma.x86_64         655/1027 
  Cleanup          : python3-kickstart-3.16.11-1.el8.noarch            656/1027 
  Cleanup          : epel-release-8-10.el8.noarch                      657/1027 
  Cleanup          : setroubleshoot-plugins-3.3.13-1.el8.noarch        658/1027 
  Cleanup          : plymouth-system-theme-0.9.4-9.20200615git1e36e    659/1027 
  Cleanup          : plymouth-theme-charge-0.9.4-9.20200615git1e36e    660/1027 
  Running scriptlet: plymouth-theme-charge-0.9.4-9.20200615git1e36e    660/1027 
  Cleanup          : plymouth-theme-spinner-0.9.4-9.20200615git1e36    661/1027 
  Running scriptlet: plymouth-theme-spinner-0.9.4-9.20200615git1e36    661/1027 
  Cleanup          : osinfo-db-20210215-1.el8.alma.noarch              662/1027 
  Cleanup          : alsa-ucm-1.2.4-5.el8.noarch                       663/1027 
  Cleanup          : yum-4.4.2-11.el8.noarch                           664/1027 
  Running scriptlet: dnf-4.4.2-11.el8.noarch                           665/1027 
  Cleanup          : dnf-4.4.2-11.el8.noarch                           665/1027 
  Running scriptlet: dnf-4.4.2-11.el8.noarch                           665/1027 
  Cleanup          : elfutils-default-yama-scope-0.182-3.el8.noarch    666/1027 
  Cleanup          : dnf-plugins-core-4.0.18-4.el8.noarch              667/1027 
  Cleanup          : libvirt-daemon-driver-network-6.0.0-35.module_    668/1027 
  Running scriptlet: libvirt-daemon-driver-network-6.0.0-35.module_    668/1027 
  Running scriptlet: libvirt-daemon-6.0.0-35.module_el8.4.0+2358+63    669/1027 
  Cleanup          : libvirt-daemon-6.0.0-35.module_el8.4.0+2358+63    669/1027 
  Running scriptlet: libvirt-daemon-6.0.0-35.module_el8.4.0+2358+63    669/1027 
  Cleanup          : gnome-shell-3.32.2-30.el8.x86_64                  670/1027 
  Cleanup          : evolution-data-server-3.28.5-15.el8.x86_64        671/1027 
  Running scriptlet: evolution-data-server-3.28.5-15.el8.x86_64        671/1027 
  Cleanup          : gnome-control-center-3.28.2-27.el8.x86_64         672/1027 
  Cleanup          : mutter-3.32.2-57.el8.x86_64                       673/1027 
  Cleanup          : gnome-settings-daemon-3.32.0-14.el8.alma.x86_6    674/1027 
  Cleanup          : libvirt-libs-6.0.0-35.module_el8.4.0+2358+630e    675/1027 
  Running scriptlet: libvirt-libs-6.0.0-35.module_el8.4.0+2358+630e    675/1027 
  Cleanup          : perl-IO-1.38-419.el8.x86_64                       676/1027 
  Cleanup          : perl-Errno-1.28-419.el8.x86_64                    677/1027 
  Cleanup          : perl-interpreter-4:5.26.3-419.el8.x86_64          678/1027 
  Cleanup          : ibus-1.5.19-12.el8.x86_64                         679/1027 
  Running scriptlet: ibus-1.5.19-12.el8.x86_64                         679/1027 
  Cleanup          : gnome-online-accounts-3.28.2-2.el8.x86_64         680/1027 
  Cleanup          : webkit2gtk3-2.30.4-1.el8.x86_64                   681/1027 
  Running scriptlet: cockpit-ws-238.2-1.el8.x86_64                     682/1027 
  Cleanup          : cockpit-ws-238.2-1.el8.x86_64                     682/1027 
  Running scriptlet: cockpit-ws-238.2-1.el8.x86_64                     682/1027 
  Cleanup          : nm-connection-editor-1.18.0-2.el8.x86_64          683/1027 
  Running scriptlet: vino-3.22.0-10.el8.x86_64                         684/1027 
  Cleanup          : vino-3.22.0-10.el8.x86_64                         684/1027 
  Running scriptlet: vino-3.22.0-10.el8.x86_64                         684/1027 
  Cleanup          : setroubleshoot-server-3.3.24-3.el8.x86_64         685/1027 
  Running scriptlet: setroubleshoot-server-3.3.24-3.el8.x86_64         685/1027 
  Cleanup          : python3-libxml2-2.9.7-9.el8.x86_64                686/1027 
  Cleanup          : podman-3.0.1-6.module_el8.4.0+2332+f4da7515.x8    687/1027 
  Cleanup          : webkit2gtk3-jsc-2.30.4-1.el8.x86_64               688/1027 
  Running scriptlet: kexec-tools-2.0.20-46.el8.x86_64                  689/1027 
  Cleanup          : kexec-tools-2.0.20-46.el8.x86_64                  689/1027 
  Running scriptlet: kexec-tools-2.0.20-46.el8.x86_64                  689/1027 
  Running scriptlet: device-mapper-multipath-0.8.4-10.el8.x86_64       690/1027 
  Cleanup          : device-mapper-multipath-0.8.4-10.el8.x86_64       690/1027 
  Running scriptlet: device-mapper-multipath-0.8.4-10.el8.x86_64       690/1027 
  Cleanup          : ibus-gtk2-1.5.19-12.el8.x86_64                    691/1027 
  Cleanup          : ibus-gtk3-1.5.19-12.el8.x86_64                    692/1027 
  Cleanup          : realmd-0.16.3-22.el8.x86_64                       693/1027 
  Cleanup          : libnma-1.8.30-2.el8.x86_64                        694/1027 
  Running scriptlet: dnsmasq-2.79-15.el8.x86_64                        695/1027 
  Cleanup          : dnsmasq-2.79-15.el8.x86_64                        695/1027 
  Running scriptlet: dnsmasq-2.79-15.el8.x86_64                        695/1027 
  Cleanup          : openssl-1:1.1.1g-15.el8_3.x86_64                  696/1027 
  Cleanup          : libgweather-3.28.2-3.el8.x86_64                   697/1027 
  Cleanup          : dracut-network-049-135.git20210121.el8.x86_64     698/1027 
  Cleanup          : dhcp-client-12:4.3.6-44.el8.x86_64                699/1027 
  Cleanup          : container-selinux-2:2.158.0-1.module_el8.4.0+2    700/1027 
  Running scriptlet: container-selinux-2:2.158.0-1.module_el8.4.0+2    700/1027 
  Cleanup          : bind-export-libs-32:9.11.26-4.el8_4.x86_64        701/1027 
  Running scriptlet: bind-export-libs-32:9.11.26-4.el8_4.x86_64        701/1027 
  Running scriptlet: authselect-1.2.2-2.el8.x86_64                     702/1027 
  Cleanup          : authselect-1.2.2-2.el8.x86_64                     702/1027 
  Cleanup          : cockpit-bridge-238.2-1.el8.x86_64                 703/1027 
  Cleanup          : grub2-tools-extra-1:2.02-99.el8.alma.x86_64       704/1027 
  Cleanup          : sudo-1.8.29-7.el8.x86_64                          705/1027 
  Running scriptlet: bluez-5.52-4.el8.alma.x86_64                      706/1027 
  Cleanup          : bluez-5.52-4.el8.alma.x86_64                      706/1027 
  Running scriptlet: bluez-5.52-4.el8.alma.x86_64                      706/1027 
  Cleanup          : sssd-2.4.0-9.el8.x86_64                           707/1027 
  Cleanup          : sssd-ipa-2.4.0-9.el8.x86_64                       708/1027 
  Cleanup          : sssd-ad-2.4.0-9.el8.x86_64                        709/1027 
  Cleanup          : libsmbclient-4.13.3-3.el8.x86_64                  710/1027 
  Cleanup          : sssd-ldap-2.4.0-9.el8.x86_64                      711/1027 
  Cleanup          : sssd-common-pac-2.4.0-9.el8.x86_64                712/1027 
  Running scriptlet: libwbclient-4.13.3-3.el8.x86_64                   713/1027 
  Cleanup          : libwbclient-4.13.3-3.el8.x86_64                   713/1027 
  Cleanup          : samba-client-libs-4.13.3-3.el8.x86_64             714/1027 
  Cleanup          : samba-common-libs-4.13.3-3.el8.x86_64             715/1027 
  Cleanup          : sssd-proxy-2.4.0-9.el8.x86_64                     716/1027 
  Cleanup          : bind-utils-32:9.11.26-4.el8_4.x86_64              717/1027 
  Cleanup          : sssd-krb5-2.4.0-9.el8.x86_64                      718/1027 
  Cleanup          : bind-libs-32:9.11.26-4.el8_4.x86_64               719/1027 
  Cleanup          : bind-libs-lite-32:9.11.26-4.el8_4.x86_64          720/1027 
  Cleanup          : sssd-krb5-common-2.4.0-9.el8.x86_64               721/1027 
  Running scriptlet: sssd-common-2.4.0-9.el8.x86_64                    722/1027 
  Cleanup          : sssd-common-2.4.0-9.el8.x86_64                    722/1027 
  Running scriptlet: sssd-common-2.4.0-9.el8.x86_64                    722/1027 
  Running scriptlet: sssd-client-2.4.0-9.el8.x86_64                    723/1027 
  Cleanup          : sssd-client-2.4.0-9.el8.x86_64                    723/1027 
  Running scriptlet: sssd-client-2.4.0-9.el8.x86_64                    723/1027 
  Cleanup          : adcli-0.8.2-9.el8.x86_64                          724/1027 
  Running scriptlet: adcli-0.8.2-9.el8.x86_64                          724/1027 
  Cleanup          : libldb-2.2.0-2.el8.x86_64                         725/1027 
  Cleanup          : xorg-x11-server-Xwayland-1.20.10-1.el8.x86_64     726/1027 
  Cleanup          : udisks2-iscsi-2.9.0-6.el8.x86_64                  727/1027 
  Running scriptlet: iscsi-initiator-utils-6.2.1.2-1.gita8fcb37.el8    728/1027 
  Cleanup          : iscsi-initiator-utils-6.2.1.2-1.gita8fcb37.el8    728/1027 
  Running scriptlet: iscsi-initiator-utils-6.2.1.2-1.gita8fcb37.el8    728/1027 
  Cleanup          : udisks2-lvm2-2.9.0-6.el8.x86_64                   729/1027 
  Cleanup          : selinux-policy-3.14.3-67.el8.noarch               730/1027 
  Running scriptlet: selinux-policy-3.14.3-67.el8.noarch               730/1027 
  Cleanup          : rpm-plugin-selinux-4.14.3-13.el8.x86_64           731/1027 
  Cleanup          : selinux-policy-targeted-3.14.3-67.el8.noarch      732/1027 
  Running scriptlet: selinux-policy-targeted-3.14.3-67.el8.noarch      732/1027 
  Cleanup          : python36-3.6.8-2.module_el8.3.0+6191+6b4b10ec.    733/1027 
  Running scriptlet: python36-3.6.8-2.module_el8.3.0+6191+6b4b10ec.    733/1027 
  Running scriptlet: udisks2-2.9.0-6.el8.x86_64                        734/1027 
  Cleanup          : udisks2-2.9.0-6.el8.x86_64                        734/1027 
  Running scriptlet: udisks2-2.9.0-6.el8.x86_64                        734/1027 
  Cleanup          : libblockdev-crypto-2.24-5.el8.x86_64              735/1027 
  Cleanup          : nss-3.53.1-17.el8_3.x86_64                        736/1027 
  Cleanup          : libblockdev-fs-2.24-5.el8.x86_64                  737/1027 
  Cleanup          : nss-softokn-3.53.1-17.el8_3.x86_64                738/1027 
  Cleanup          : e2fsprogs-1.45.6-1.el8.x86_64                     739/1027 
  Cleanup          : libblockdev-lvm-2.24-5.el8.x86_64                 740/1027 
  Running scriptlet: lvm2-8:2.03.11-5.el8.x86_64                       741/1027 
  Cleanup          : lvm2-8:2.03.11-5.el8.x86_64                       741/1027 
  Running scriptlet: lvm2-8:2.03.11-5.el8.x86_64                       741/1027 
  Cleanup          : lvm2-libs-8:2.03.11-5.el8.x86_64                  742/1027 
  Running scriptlet: device-mapper-event-8:1.02.175-5.el8.x86_64       743/1027 
  Cleanup          : device-mapper-event-8:1.02.175-5.el8.x86_64       743/1027 
  Cleanup          : libblockdev-part-2.24-5.el8.x86_64                744/1027 
  Cleanup          : libblockdev-swap-2.24-5.el8.x86_64                745/1027 
  Cleanup          : nss-sysinit-3.53.1-17.el8_3.x86_64                746/1027 
  Cleanup          : device-mapper-persistent-data-0.8.5-4.el8.x86_    747/1027 
  Cleanup          : xfsprogs-5.0.0-8.el8.x86_64                       748/1027 
  Running scriptlet: xfsprogs-5.0.0-8.el8.x86_64                       748/1027 
  Cleanup          : libblockdev-mdraid-2.24-5.el8.x86_64              749/1027 
  Running scriptlet: mdadm-4.1-15.el8.x86_64                           750/1027 
  Cleanup          : mdadm-4.1-15.el8.x86_64                           750/1027 
  Running scriptlet: mdadm-4.1-15.el8.x86_64                           750/1027 
  Cleanup          : libblockdev-2.24-5.el8.x86_64                     751/1027 
  Cleanup          : libblockdev-loop-2.24-5.el8.x86_64                752/1027 
  Cleanup          : libinput-1.16.3-1.el8.x86_64                      753/1027 
  Running scriptlet: libinput-1.16.3-1.el8.x86_64                      753/1027 
  Cleanup          : grilo-0.3.6-2.el8.x86_64                          754/1027 
  Cleanup          : nmap-ncat-2:7.70-5.el8.x86_64                     755/1027 
  Running scriptlet: nmap-ncat-2:7.70-5.el8.x86_64                     755/1027 
  Cleanup          : plymouth-plugin-two-step-0.9.4-9.20200615git1e    756/1027 
  Cleanup          : plymouth-plugin-label-0.9.4-9.20200615git1e36e    757/1027 
  Cleanup          : libqmi-utils-1.24.0-1.el8.x86_64                  758/1027 
  Cleanup          : libblockdev-kbd-2.24-5.el8.x86_64                 759/1027 
  Cleanup          : libblockdev-utils-2.24-5.el8.x86_64               760/1027 
  Cleanup          : mesa-libEGL-20.3.3-2.el8.x86_64                   761/1027 
  Cleanup          : libtiff-4.0.9-18.el8.x86_64                       762/1027 
  Cleanup          : plymouth-graphics-libs-0.9.4-9.20200615git1e36    763/1027 
  Running scriptlet: plymouth-graphics-libs-0.9.4-9.20200615git1e36    763/1027 
  Cleanup          : device-mapper-event-libs-8:1.02.175-5.el8.x86_    764/1027 
  Cleanup          : ibus-libs-1.5.19-12.el8.x86_64                    765/1027 
  Cleanup          : device-mapper-multipath-libs-0.8.4-10.el8.x86_    766/1027 
  Running scriptlet: device-mapper-multipath-libs-0.8.4-10.el8.x86_    766/1027 
  Cleanup          : NetworkManager-wifi-1:1.30.0-7.el8.x86_64         767/1027 
  Cleanup          : NetworkManager-team-1:1.30.0-7.el8.x86_64         768/1027 
  Cleanup          : openssh-8.0p1-6.el8_4.2.x86_64                    769/1027 
  Cleanup          : quota-1:4.04-12.el8.x86_64                        770/1027 
  Cleanup          : mesa-libGL-20.3.3-2.el8.x86_64                    771/1027 
  Cleanup          : python3-perf-4.18.0-305.el8.x86_64                772/1027 
  Cleanup          : util-linux-user-2.32.1-27.el8.x86_64              773/1027 
  Cleanup          : plymouth-0.9.4-9.20200615git1e36e30.el8.x86_64    774/1027 
  Running scriptlet: plymouth-0.9.4-9.20200615git1e36e30.el8.x86_64    774/1027 
  Cleanup          : libwacom-1.6-2.el8.x86_64                         775/1027 
  Cleanup          : libsss_certmap-2.4.0-9.el8.x86_64                 776/1027 
  Running scriptlet: libsss_certmap-2.4.0-9.el8.x86_64                 776/1027 
  Cleanup          : iptables-1.8.4-17.el8.x86_64                      777/1027 
  Running scriptlet: iptables-1.8.4-17.el8.x86_64                      777/1027 
  Running scriptlet: nftables-1:0.9.3-18.el8.x86_64                    778/1027 
  Cleanup          : nftables-1:0.9.3-18.el8.x86_64                    778/1027 
  Running scriptlet: nftables-1:0.9.3-18.el8.x86_64                    778/1027 
  Cleanup          : accountsservice-libs-0.6.55-1.el8.x86_64          779/1027 
  Running scriptlet: accountsservice-0.6.55-1.el8.x86_64               780/1027 
  Cleanup          : accountsservice-0.6.55-1.el8.x86_64               780/1027 
  Running scriptlet: accountsservice-0.6.55-1.el8.x86_64               780/1027 
  Running scriptlet: polkit-0.115-11.el8.x86_64                        781/1027 
  Cleanup          : polkit-0.115-11.el8.x86_64                        781/1027 
  Running scriptlet: polkit-0.115-11.el8.x86_64                        781/1027 
  Cleanup          : polkit-libs-0.115-11.el8.x86_64                   782/1027 
  Running scriptlet: polkit-libs-0.115-11.el8.x86_64                   782/1027 
  Cleanup          : ModemManager-glib-1.10.8-2.el8.x86_64             783/1027 
  Running scriptlet: ModemManager-glib-1.10.8-2.el8.x86_64             783/1027 
  Cleanup          : net-snmp-libs-1:5.8-20.el8.x86_64                 784/1027 
  Cleanup          : tpm2-tss-2.3.2-3.el8.x86_64                       785/1027 
  Running scriptlet: tpm2-tss-2.3.2-3.el8.x86_64                       785/1027 
  Cleanup          : libwinpr-2:2.2.0-1.el8.x86_64                     786/1027 
  Cleanup          : virt-what-1.18-6.el8.x86_64                       787/1027 
  Cleanup          : tcpdump-14:4.9.3-1.el8.x86_64                     788/1027 
  Cleanup          : lua-5.3.4-11.el8.x86_64                           789/1027 
  Running scriptlet: mcelog-3:173-0.el8.x86_64                         790/1027 
  Cleanup          : mcelog-3:173-0.el8.x86_64                         790/1027 
  Running scriptlet: mcelog-3:173-0.el8.x86_64                         790/1027 
  Cleanup          : man-db-2.7.6.1-17.el8.x86_64                      791/1027 
  Cleanup          : plymouth-scripts-0.9.4-9.20200615git1e36e30.el    792/1027 
  Cleanup          : python3-bind-32:9.11.26-4.el8_4.noarch            793/1027 
  Cleanup          : python3-dnf-plugins-core-4.0.18-4.el8.noarch      794/1027 
  Cleanup          : python3-dnf-4.4.2-11.el8.noarch                   795/1027 
  Cleanup          : python3-hawkey-0.55.0-7.el8.alma.x86_64           796/1027 
  Cleanup          : python3-libdnf-0.55.0-7.el8.alma.x86_64           797/1027 
  Cleanup          : libdnf-0.55.0-7.el8.alma.x86_64                   798/1027 
  Cleanup          : python3-rpm-4.14.3-13.el8.x86_64                  799/1027 
  Cleanup          : librepo-1.12.0-3.el8.x86_64                       800/1027 
  Cleanup          : rpm-plugin-systemd-inhibit-4.14.3-13.el8.x86_6    801/1027 
  Cleanup          : rpm-build-libs-4.14.3-13.el8.x86_64               802/1027 
  Running scriptlet: rpm-build-libs-4.14.3-13.el8.x86_64               802/1027 
  Cleanup          : libsolv-0.7.16-2.el8.x86_64                       803/1027 
  Cleanup          : python3-gpg-1.13.1-7.el8.x86_64                   804/1027 
  Cleanup          : python3-unbound-1.7.3-15.el8.x86_64               805/1027 
  Running scriptlet: unbound-libs-1.7.3-15.el8.x86_64                  806/1027 
  Cleanup          : unbound-libs-1.7.3-15.el8.x86_64                  806/1027 
  Running scriptlet: unbound-libs-1.7.3-15.el8.x86_64                  806/1027 
  Cleanup          : python3-libcomps-0.1.11-5.el8.x86_64              807/1027 
  Cleanup          : libcomps-0.1.11-5.el8.x86_64                      808/1027 
  Cleanup          : libmodulemd-2.9.4-2.el8.x86_64                    809/1027 
  Cleanup          : libqmi-1.24.0-1.el8.x86_64                        810/1027 
  Running scriptlet: libqmi-1.24.0-1.el8.x86_64                        810/1027 
  Cleanup          : nss-softokn-freebl-3.53.1-17.el8_3.x86_64         811/1027 
  Cleanup          : nss-util-3.53.1-17.el8_3.x86_64                   812/1027 
  Cleanup          : libudisks2-2.9.0-6.el8.x86_64                     813/1027 
  Running scriptlet: iscsi-initiator-utils-iscsiuio-6.2.1.2-1.gita8    814/1027 
  Cleanup          : iscsi-initiator-utils-iscsiuio-6.2.1.2-1.gita8    814/1027 
  Running scriptlet: iscsi-initiator-utils-iscsiuio-6.2.1.2-1.gita8    814/1027 
  Cleanup          : libtevent-0.10.2-2.el8.x86_64                     815/1027 
  Cleanup          : authselect-libs-1.2.2-2.el8.x86_64                816/1027 
  Cleanup          : sqlite-3.26.0-13.el8.x86_64                       817/1027 
  Cleanup          : python3-pyparted-1:3.11.0-13.el8.x86_64           818/1027 
  Running scriptlet: parted-3.2-38.el8.x86_64                          819/1027 
  Cleanup          : parted-3.2-38.el8.x86_64                          819/1027 
  Running scriptlet: parted-3.2-38.el8.x86_64                          819/1027 
  Cleanup          : vim-common-2:8.0.1763-15.el8.x86_64               820/1027 
  Cleanup          : flatpak-session-helper-1.8.5-3.el8.x86_64         821/1027 
  Cleanup          : rsyslog-relp-8.1911.0-7.el8.x86_64                822/1027 
  Cleanup          : librelp-1.2.16-1.el8.x86_64                       823/1027 
  Running scriptlet: librelp-1.2.16-1.el8.x86_64                       823/1027 
  Cleanup          : rsyslog-gssapi-8.1911.0-7.el8.x86_64              824/1027 
  Cleanup          : rsyslog-gnutls-8.1911.0-7.el8.x86_64              825/1027 
  Cleanup          : samba-common-4.13.3-3.el8.noarch                  826/1027 
  Cleanup          : policycoreutils-python-utils-2.9-14.el8.noarch    827/1027 
  Cleanup          : python3-policycoreutils-2.9-14.el8.noarch         828/1027 
  Cleanup          : dracut-squash-049-135.git20210121.el8.x86_64      829/1027 
  Cleanup          : containers-common-1:1.2.2-8.module_el8.4.0+233    830/1027 
  Cleanup          : ibus-setup-1.5.19-12.el8.noarch                   831/1027 
  Running scriptlet: policycoreutils-2.9-14.el8.x86_64                 832/1027 
  Cleanup          : policycoreutils-2.9-14.el8.x86_64                 832/1027 
  Running scriptlet: rsyslog-8.1911.0-7.el8.x86_64                     833/1027 
  Cleanup          : rsyslog-8.1911.0-7.el8.x86_64                     833/1027 
  Running scriptlet: rsyslog-8.1911.0-7.el8.x86_64                     833/1027 
  Cleanup          : slirp4netns-1.1.8-1.module_el8.4.0+2332+f4da75    834/1027 
  Cleanup          : fuse-overlayfs-1.4.0-2.module_el8.4.0+2332+f4d    835/1027 
  Cleanup          : e2fsprogs-libs-1.45.6-1.el8.x86_64                836/1027 
  Running scriptlet: e2fsprogs-libs-1.45.6-1.el8.x86_64                836/1027 
  Cleanup          : mesa-libgbm-20.3.3-2.el8.x86_64                   837/1027 
  Running scriptlet: mesa-libgbm-20.3.3-2.el8.x86_64                   837/1027 
  Cleanup          : libss-1.45.6-1.el8.x86_64                         838/1027 
  Running scriptlet: libss-1.45.6-1.el8.x86_64                         838/1027 
  Cleanup          : iproute-tc-5.9.0-4.el8.x86_64                     839/1027 
  Cleanup          : iproute-5.9.0-4.el8.x86_64                        840/1027 
  Cleanup          : kernel-tools-libs-4.18.0-305.el8.x86_64           841/1027 
  Running scriptlet: kernel-tools-libs-4.18.0-305.el8.x86_64           841/1027 
  Cleanup          : libiscsi-1.18.0-8.module_el8.3.0+2048+e7a0a3ea    842/1027 
  Running scriptlet: libiscsi-1.18.0-8.module_el8.3.0+2048+e7a0a3ea    842/1027 
  Cleanup          : python3-psutil-5.4.3-10.el8.x86_64                843/1027 
  Cleanup          : jasper-libs-2.0.14-4.el8.x86_64                   844/1027 
  Cleanup          : python3-sssdconfig-2.4.0-9.el8.noarch             845/1027 
  Cleanup          : perl-macros-4:5.26.3-419.el8.x86_64               846/1027 
  Cleanup          : gnome-session-xsession-3.28.1-10.el8.x86_64       847/1027 
  Cleanup          : gnome-session-3.28.1-10.el8.x86_64                848/1027 
  Cleanup          : gsettings-desktop-schemas-3.32.0-5.el8.x86_64     849/1027 
  Cleanup          : almalinux-backgrounds-84.4-1.el8.noarch           850/1027 
  Cleanup          : gtk3-3.22.30-6.el8.x86_64                         851/1027 
  Cleanup          : cups-libs-1:2.2.6-38.el8.x86_64                   852/1027 
  Cleanup          : pango-1.42.4-6.el8.x86_64                         853/1027 
  Running scriptlet: pango-1.42.4-6.el8.x86_64                         853/1027 
  Cleanup          : fontconfig-2.13.1-3.el8.x86_64                    854/1027 
  Cleanup          : dbus-x11-1:1.12.8-12.el8_4.2.x86_64               855/1027 
  Cleanup          : almalinux-logos-84.4-1.el8.x86_64                 856/1027 
  Running scriptlet: almalinux-logos-84.4-1.el8.x86_64                 856/1027 
  Cleanup          : gtk-update-icon-cache-3.22.30-6.el8.x86_64        857/1027 
  Cleanup          : libX11-1.6.8-4.el8.x86_64                         858/1027 
  Cleanup          : libwayland-cursor-1.17.0-1.el8.x86_64             859/1027 
  Cleanup          : libslirp-4.3.1-1.module_el8.4.0+2332+f4da7515.    860/1027 
  Cleanup          : sssd-nfs-idmap-2.4.0-9.el8.x86_64                 861/1027 
  Cleanup          : libnfsidmap-1:2.3.3-41.el8.x86_64                 862/1027 
  Cleanup          : libipa_hbac-2.4.0-9.el8.x86_64                    863/1027 
  Running scriptlet: libipa_hbac-2.4.0-9.el8.x86_64                    863/1027 
  Cleanup          : vim-minimal-2:8.0.1763-15.el8.x86_64              864/1027 
  Cleanup          : conmon-2:2.0.26-1.module_el8.4.0+2332+f4da7515    865/1027 
  Cleanup          : runc-1.0.0-70.rc92.module_el8.4.0+2332+f4da751    866/1027 
  Cleanup          : alsa-lib-1.2.4-5.el8.x86_64                       867/1027 
  Running scriptlet: alsa-lib-1.2.4-5.el8.x86_64                       867/1027 
  Cleanup          : unzip-6.0-44.el8.x86_64                           868/1027 
  Cleanup          : xorg-x11-font-utils-1:7.5-40.el8.x86_64           869/1027 
  Cleanup          : strace-5.7-2.el8.x86_64                           870/1027 
  Cleanup          : elfutils-debuginfod-client-0.182-3.el8.x86_64     871/1027 
  Cleanup          : bpftool-4.18.0-305.el8.x86_64                     872/1027 
  Cleanup          : NetworkManager-adsl-1:1.30.0-7.el8.x86_64         873/1027 
  Cleanup          : libX11-common-1.6.8-4.el8.noarch                  874/1027 
  Cleanup          : gnome-control-center-filesystem-3.28.2-27.el8.    875/1027 
  Cleanup          : vim-filesystem-2:8.0.1763-15.el8.noarch           876/1027 
  Cleanup          : dnf-data-4.4.2-11.el8.noarch                      877/1027 
  Cleanup          : bind-license-32:9.11.26-4.el8_4.noarch            878/1027 
  Cleanup          : libwacom-data-1.6-2.el8.noarch                    879/1027 
  Cleanup          : quota-nls-1:4.04-12.el8.noarch                    880/1027 
  Cleanup          : xorg-x11-server-common-1.20.10-1.el8.x86_64       881/1027 
  Cleanup          : dhcp-common-12:4.3.6-44.el8.noarch                882/1027 
  Cleanup          : dhcp-libs-12:4.3.6-44.el8.x86_64                  883/1027 
  Cleanup          : mobile-broadband-provider-info-20190618-2.el8.    884/1027 
  Cleanup          : podman-catatonit-3.0.1-6.module_el8.4.0+2332+f    885/1027 
  Cleanup          : evolution-data-server-langpacks-3.28.5-15.el8.    886/1027 
  Cleanup          : hwdata-0.314-8.8.el8.noarch                       887/1027 
  Cleanup          : almalinux-release-8.4-2.el8.x86_64                888/1027 
  Cleanup          : hplip-common-3.18.4-9.el8.x86_64                  889/1027 
  Cleanup          : mesa-filesystem-20.3.3-2.el8.x86_64               890/1027 
  Cleanup          : tigervnc-license-1.11.0-6.el8.noarch              891/1027 
  Cleanup          : edk2-ovmf-20200602gitca407c7246bf-4.el8.noarch    892/1027 
  Cleanup          : seabios-bin-1.13.0-2.module_el8.3.0+2048+e7a0a    893/1027 
  Cleanup          : seavgabios-bin-1.13.0-2.module_el8.3.0+2048+e7    894/1027 
  Cleanup          : sgabios-bin-1:0.20170427git-3.module_el8.3.0+2    895/1027 
  Cleanup          : firewalld-filesystem-0.8.2-6.el8.noarch           896/1027 
  Cleanup          : cups-filesystem-1:2.2.6-38.el8.noarch             897/1027 
  Cleanup          : sil-nuosu-fonts-2.1.1-14.el8.noarch               898/1027 
  Cleanup          : man-pages-overrides-8.3.0.2-2.el8.noarch          899/1027 
  Cleanup          : tzdata-2021a-1.el8.noarch                         900/1027 
  Cleanup          : linux-firmware-20201218-102.git05789708.el8.no    901/1027 
  Cleanup          : libertas-usb8388-firmware-2:20201218-102.git05    902/1027 
  Cleanup          : iwl7260-firmware-1:25.30.13.0-102.el8.1.noarch    903/1027 
  Cleanup          : iwl6050-firmware-41.28.5.1-102.el8.1.noarch       904/1027 
  Cleanup          : iwl6000g2b-firmware-18.168.6.1-102.el8.1.noarc    905/1027 
  Cleanup          : iwl6000g2a-firmware-18.168.6.1-102.el8.1.noarc    906/1027 
  Cleanup          : iwl6000-firmware-9.221.4.1-102.el8.1.noarch       907/1027 
  Cleanup          : iwl5150-firmware-8.24.2.2-102.el8.1.noarch        908/1027 
  Cleanup          : iwl5000-firmware-8.83.5.1_1-102.el8.1.noarch      909/1027 
  Cleanup          : iwl4965-firmware-228.61.2.24-102.el8.1.noarch     910/1027 
  Cleanup          : iwl3945-firmware-15.32.2.9-102.el8.1.noarch       911/1027 
  Cleanup          : iwl3160-firmware-1:25.30.13.0-102.el8.1.noarch    912/1027 
  Cleanup          : iwl2030-firmware-18.168.6.1-102.el8.1.noarch      913/1027 
  Cleanup          : iwl2000-firmware-18.168.6.1-102.el8.1.noarch      914/1027 
  Cleanup          : iwl135-firmware-18.168.6.1-102.el8.1.noarch       915/1027 
  Cleanup          : iwl105-firmware-18.168.6.1-102.el8.1.noarch       916/1027 
  Cleanup          : iwl1000-firmware-1:39.31.5.1-102.el8.1.noarch     917/1027 
  Cleanup          : iwl100-firmware-39.31.5.1-102.el8.1.noarch        918/1027 
  Cleanup          : emacs-filesystem-1:26.1-5.el8.noarch              919/1027 
  Cleanup          : NetworkManager-config-server-1:1.30.0-7.el8.no    920/1027 
  Running scriptlet: NetworkManager-1:1.30.0-7.el8.x86_64              921/1027 
  Cleanup          : NetworkManager-1:1.30.0-7.el8.x86_64              921/1027 
  Running scriptlet: NetworkManager-1:1.30.0-7.el8.x86_64              921/1027 
  Cleanup          : dbus-1:1.12.8-12.el8_4.2.x86_64                   922/1027 
  Running scriptlet: dbus-daemon-1:1.12.8-12.el8_4.2.x86_64            923/1027 
  Cleanup          : dbus-daemon-1:1.12.8-12.el8_4.2.x86_64            923/1027 
  Running scriptlet: dbus-daemon-1:1.12.8-12.el8_4.2.x86_64            923/1027 
  Cleanup          : NetworkManager-libnm-1:1.30.0-7.el8.x86_64        924/1027 
  Running scriptlet: NetworkManager-libnm-1:1.30.0-7.el8.x86_64        924/1027 
  Cleanup          : glib2-2.56.4-9.el8.x86_64                         925/1027 
  Cleanup          : gnutls-3.6.14-8.el8_3.x86_64                      926/1027 
  Cleanup          : dbus-tools-1:1.12.8-12.el8_4.2.x86_64             927/1027 
  Cleanup          : dbus-common-1:1.12.8-12.el8_4.2.noarch            928/1027 
  Running scriptlet: nettle-3.4.1-4.el8_3.x86_64                       929/1027 
  Cleanup          : nettle-3.4.1-4.el8_3.x86_64                       929/1027 
  Running scriptlet: nettle-3.4.1-4.el8_3.x86_64                       929/1027 
  Cleanup          : shadow-utils-2:4.6-12.el8.x86_64                  930/1027 
  Cleanup          : python3-libs-3.6.8-37.el8.alma.x86_64             931/1027 
  Cleanup          : ca-certificates-2020.2.41-80.0.el8_2.noarch       932/1027 
  Cleanup          : platform-python-pip-9.0.3-19.el8.noarch           933/1027 
  Cleanup          : platform-python-3.6.8-37.el8.alma.x86_64          934/1027 
  Running scriptlet: platform-python-3.6.8-37.el8.alma.x86_64          934/1027 
  Cleanup          : kmod-libs-25-17.el8.x86_64                        935/1027 
  Running scriptlet: kmod-libs-25-17.el8.x86_64                        935/1027 
  Cleanup          : kpartx-0.8.4-10.el8.x86_64                        936/1027 
  Cleanup          : dracut-049-135.git20210121.el8.x86_64             937/1027 
  Cleanup          : kmod-25-17.el8.x86_64                             938/1027 
  Cleanup          : os-prober-1.74-6.el8.x86_64                       939/1027 
  Running scriptlet: grub2-tools-1:2.02-99.el8.alma.x86_64             940/1027 
  Cleanup          : grub2-tools-1:2.02-99.el8.alma.x86_64             940/1027 
  Cleanup          : device-mapper-8:1.02.175-5.el8.x86_64             941/1027 
  Cleanup          : device-mapper-libs-8:1.02.175-5.el8.x86_64        942/1027 
  Cleanup          : grub2-tools-minimal-1:2.02-99.el8.alma.x86_64     943/1027 
  Cleanup          : libdb-utils-5.3.28-40.el8.x86_64                  944/1027 
  Cleanup          : openldap-2.4.46-16.el8.x86_64                     945/1027 
  Cleanup          : libssh-0.9.4-2.el8.x86_64                         946/1027 
  Cleanup          : libcurl-7.61.1-18.el8.x86_64                      947/1027 
  Cleanup          : curl-7.61.1-18.el8.x86_64                         948/1027 
  Cleanup          : rpm-4.14.3-13.el8.x86_64                          949/1027 
  Cleanup          : rpm-libs-4.14.3-13.el8.x86_64                     950/1027 
  Running scriptlet: rpm-libs-4.14.3-13.el8.x86_64                     950/1027 
  Cleanup          : libfdisk-2.32.1-27.el8.x86_64                     951/1027 
  Running scriptlet: libfdisk-2.32.1-27.el8.x86_64                     951/1027 
  Cleanup          : libdb-5.3.28-40.el8.x86_64                        952/1027 
  Running scriptlet: libdb-5.3.28-40.el8.x86_64                        952/1027 
  Cleanup          : krb5-libs-1.18.2-8.el8.x86_64                     953/1027 
  Cleanup          : libtirpc-1.1.4-4.el8.x86_64                       954/1027 
  Running scriptlet: libtirpc-1.1.4-4.el8.x86_64                       954/1027 
  Cleanup          : pam-1.3.1-14.el8.x86_64                           955/1027 
  Running scriptlet: pam-1.3.1-14.el8.x86_64                           955/1027 
  Cleanup          : util-linux-2.32.1-27.el8.x86_64                   956/1027 
  Cleanup          : libmount-2.32.1-27.el8.x86_64                     957/1027 
  Running scriptlet: libmount-2.32.1-27.el8.x86_64                     957/1027 
  Cleanup          : libblkid-2.32.1-27.el8.x86_64                     958/1027 
  Running scriptlet: libblkid-2.32.1-27.el8.x86_64                     958/1027 
  Cleanup          : coreutils-8.30-8.el8.x86_64                       959/1027 
  Cleanup          : openssl-libs-1:1.1.1g-15.el8_3.x86_64             960/1027 
  Running scriptlet: openssl-libs-1:1.1.1g-15.el8_3.x86_64             960/1027 
  Cleanup          : crypto-policies-20210209-1.gitbfb6bed.el8_3.no    961/1027 
  Cleanup          : crypto-policies-scripts-20210209-1.gitbfb6bed.    962/1027 
  Cleanup          : grubby-8.40-41.el8.x86_64                         963/1027 
  Running scriptlet: coreutils-common-8.30-8.el8.x86_64                964/1027 
  Cleanup          : coreutils-common-8.30-8.el8.x86_64                964/1027 
  Cleanup          : grub2-common-1:2.02-99.el8.alma.noarch            965/1027 
  Cleanup          : libssh-config-0.9.4-2.el8.noarch                  966/1027 
  Cleanup          : python3-pip-wheel-9.0.3-19.el8.noarch             967/1027 
  Cleanup          : ncurses-6.1-7.20180224.el8.x86_64                 968/1027 
  Cleanup          : file-5.33-16.el8_3.1.x86_64                       969/1027 
  Cleanup          : chkconfig-1.13-2.el8.x86_64                       970/1027 
  Cleanup          : libsepol-2.9-2.el8.x86_64                         971/1027 
  Running scriptlet: libsepol-2.9-2.el8.x86_64                         971/1027 
  Cleanup          : bash-4.4.20-1.el8_4.x86_64                        972/1027 
  Running scriptlet: bash-4.4.20-1.el8_4.x86_64                        972/1027 
  Cleanup          : ncurses-libs-6.1-7.20180224.el8.x86_64            973/1027 
  Cleanup          : ncurses-base-6.1-7.20180224.el8.noarch            974/1027 
  Cleanup          : filesystem-3.8-3.el8.x86_64                       975/1027 
  Cleanup          : file-libs-5.33-16.el8_3.1.x86_64                  976/1027 
  Cleanup          : libcap-2.26-4.el8.x86_64                          977/1027 
  Cleanup          : libuuid-2.32.1-27.el8.x86_64                      978/1027 
  Running scriptlet: libuuid-2.32.1-27.el8.x86_64                      978/1027 
  Cleanup          : libcap-ng-0.7.9-5.el8.x86_64                      979/1027 
  Cleanup          : libsmartcols-2.32.1-27.el8.x86_64                 980/1027 
  Running scriptlet: libsmartcols-2.32.1-27.el8.x86_64                 980/1027 
  Cleanup          : libcom_err-1.45.6-1.el8.x86_64                    981/1027 
  Running scriptlet: libcom_err-1.45.6-1.el8.x86_64                    981/1027 
  Cleanup          : keyutils-libs-1.5.10-6.el8.x86_64                 982/1027 
  Cleanup          : lua-libs-5.3.4-11.el8.x86_64                      983/1027 
  Cleanup          : which-2.21-12.el8.x86_64                          984/1027 
  Cleanup          : sqlite-libs-3.26.0-13.el8.x86_64                  985/1027 
  Cleanup          : dbus-libs-1:1.12.8-12.el8_4.2.x86_64              986/1027 
  Running scriptlet: dbus-libs-1:1.12.8-12.el8_4.2.x86_64              986/1027 
  Cleanup          : pcre-8.42-4.el8.x86_64                            987/1027 
  Cleanup          : libndp-1.7-5.el8.x86_64                           988/1027 
  Running scriptlet: libndp-1.7-5.el8.x86_64                           988/1027 
  Cleanup          : criu-3.15-1.module_el8.4.0+2332+f4da7515.x86_6    989/1027 
  Cleanup          : libwayland-client-1.17.0-1.el8.x86_64             990/1027 
  Cleanup          : libstdc++-8.4.1-1.el8.alma.x86_64                 991/1027 
  Running scriptlet: libstdc++-8.4.1-1.el8.alma.x86_64                 991/1027 
  Cleanup          : libepoxy-1.5.3-1.el8.x86_64                       992/1027 
  Cleanup          : libwayland-egl-1.17.0-1.el8.x86_64                993/1027 
  Cleanup          : perl-libs-4:5.26.3-419.el8.x86_64                 994/1027 
  Cleanup          : libjpeg-turbo-1.5.3-10.el8.x86_64                 995/1027 
  Cleanup          : libgcrypt-1.8.5-4.el8.x86_64                      996/1027 
  Running scriptlet: libgcrypt-1.8.5-4.el8.x86_64                      996/1027 
  Cleanup          : iptables-libs-1.8.4-17.el8.x86_64                 997/1027 
  Cleanup          : libdrm-2.4.103-1.el8.x86_64                       998/1027 
  Cleanup          : libwayland-server-1.17.0-1.el8.x86_64             999/1027 
  Cleanup          : libfastjson-0.99.8-2.el8.x86_64                  1000/1027 
  Running scriptlet: libfastjson-0.99.8-2.el8.x86_64                  1000/1027 
  Cleanup          : libtalloc-2.3.1-2.el8.x86_64                     1001/1027 
  Cleanup          : nspr-4.25.0-2.el8_2.x86_64                       1002/1027 
  Running scriptlet: nspr-4.25.0-2.el8_2.x86_64                       1002/1027 
  Cleanup          : libxml2-2.9.7-9.el8.x86_64                       1003/1027 
  Cleanup          : gpgme-1.13.1-7.el8.x86_64                        1004/1027 
  Cleanup          : json-c-0.13.1-0.4.el8.x86_64                     1005/1027 
  Cleanup          : dmidecode-1:3.2-8.el8.x86_64                     1006/1027 
  Cleanup          : plymouth-core-libs-0.9.4-9.20200615git1e36e30.   1007/1027 
  Running scriptlet: plymouth-core-libs-0.9.4-9.20200615git1e36e30.   1007/1027 
  Cleanup          : numactl-libs-2.0.12-11.el8.x86_64                1008/1027 
  Running scriptlet: numactl-libs-2.0.12-11.el8.x86_64                1008/1027 
  Cleanup          : libX11-xcb-1.6.8-4.el8.x86_64                    1009/1027 
  Cleanup          : mesa-libglapi-20.3.3-2.el8.x86_64                1010/1027 
  Running scriptlet: mesa-libglapi-20.3.3-2.el8.x86_64                1010/1027 
  Cleanup          : libevdev-1.8.0-1.el8.x86_64                      1011/1027 
  Cleanup          : libsss_idmap-2.4.0-9.el8.x86_64                  1012/1027 
  Running scriptlet: libsss_idmap-2.4.0-9.el8.x86_64                  1012/1027 
  Cleanup          : libsss_nss_idmap-2.4.0-9.el8.x86_64              1013/1027 
  Running scriptlet: libsss_nss_idmap-2.4.0-9.el8.x86_64              1013/1027 
  Cleanup          : libsss_autofs-2.4.0-9.el8.x86_64                 1014/1027 
  Cleanup          : libsss_sudo-2.4.0-9.el8.x86_64                   1015/1027 
  Running scriptlet: libsss_sudo-2.4.0-9.el8.x86_64                   1015/1027 
  Cleanup          : fstrm-0.6.0-3.el8.1.x86_64                       1016/1027 
  Cleanup          : ethtool-2:5.8-5.el8.x86_64                       1017/1027 
  Cleanup          : containernetworking-plugins-0.9.1-1.module_el8   1018/1027 
  Cleanup          : openjpeg2-2.3.1-6.el8.x86_64                     1019/1027 
  Cleanup          : libwebp-1.0.0-1.el8.x86_64                       1020/1027 
  Cleanup          : bluez-libs-5.52-4.el8.alma.x86_64                1021/1027 
  Cleanup          : hdparm-9.54-3.el8.x86_64                         1022/1027 
  Cleanup          : libsndfile-1.0.28-10.el8.x86_64                  1023/1027 
  Running scriptlet: libsndfile-1.0.28-10.el8.x86_64                  1023/1027 
  Cleanup          : lz4-libs-1.8.3-2.el8.x86_64                      1024/1027 
  Cleanup          : lz4-1.8.3-2.el8.x86_64                           1025/1027 
  Cleanup          : lsscsi-0.32-2.el8.x86_64                         1026/1027 
  Cleanup          : efibootmgr-16-1.el8.x86_64                       1027/1027 
  Running scriptlet: filesystem-3.8-6.el8.x86_64                      1027/1027 
  Running scriptlet: crypto-policies-scripts-20210617-1.gitc776d3e.   1027/1027 
  Running scriptlet: ca-certificates-2021.2.50-80.0.el8_4.noarch      1027/1027 
  Running scriptlet: libwbclient-4.14.5-7.el8_5.x86_64                1027/1027 
  Running scriptlet: almalinux-logos-84.5-1.el8.x86_64                1027/1027 
  Running scriptlet: kernel-core-4.18.0-348.12.2.el8_5.x86_64         1027/1027 
  Running scriptlet: kmod-kvdo-6.2.5.72-81.el8.x86_64                 1027/1027 
  Running scriptlet: container-selinux-2:2.167.0-1.module_el8.5.0+2   1027/1027 
  Running scriptlet: authselect-libs-1.2.2-3.el8.x86_64               1027/1027 
  Running scriptlet: sssd-common-2.5.2-2.el8_5.3.x86_64               1027/1027 
  Running scriptlet: nss-3.67.0-7.el8_5.x86_64                        1027/1027 
  Running scriptlet: evolution-data-server-3.28.5-17.el8.x86_64       1027/1027 
  Running scriptlet: libvirt-daemon-6.0.0-37.module_el8.5.0+2608+72   1027/1027 
  Running scriptlet: ibus-1.5.19-14.el8_5.x86_64                      1027/1027 
  Running scriptlet: authselect-compat-1.2.2-3.el8.x86_64             1027/1027 
  Running scriptlet: libvirt-daemon-config-network-6.0.0-37.module_   1027/1027 
  Running scriptlet: tuned-2.16.0-1.el8.noarch                        1027/1027 
  Running scriptlet: firefox-91.5.0-1.el8_5.alma.x86_64               1027/1027 
  Running scriptlet: grub2-efi-x64-1:2.02-106.el8.alma.x86_64         1027/1027 
  Running scriptlet: microcode_ctl-4:20210608-1.el8.x86_64            1027/1027 
  Running scriptlet: efibootmgr-16-1.el8.x86_64                       1027/1027 
  Running scriptlet: vim-common-2:8.0.1763-16.el8.x86_64              1027/1027 
  Running scriptlet: glib2-2.56.4-156.el8.x86_64                      1027/1027 
  Running scriptlet: fontconfig-2.13.1-4.el8.x86_64                   1027/1027 
  Running scriptlet: gtk3-3.22.30-8.el8.x86_64                        1027/1027 
  Running scriptlet: man-db-2.7.6.1-18.el8.x86_64                     1027/1027 
  Verifying        : grub2-tools-efi-1:2.02-106.el8.alma.x86_64          1/1027 
  Verifying        : ima-evm-utils-1.3.2-12.el8.x86_64                   2/1027 
  Verifying        : kernel-4.18.0-348.12.2.el8_5.x86_64                 3/1027 
  Verifying        : kernel-core-4.18.0-348.12.2.el8_5.x86_64            4/1027 
  Verifying        : kernel-modules-4.18.0-348.12.2.el8_5.x86_64         5/1027 
  Verifying        : libbpf-0.4.0-1.el8.x86_64                           6/1027 
  Verifying        : python3-beautifulsoup4-4.6.3-2.el8.1.noarch         7/1027 
  Verifying        : python3-cssselect-0.9.2-10.el8.noarch               8/1027 
  Verifying        : ModemManager-1.10.8-4.el8.x86_64                    9/1027 
  Verifying        : ModemManager-1.10.8-2.el8.x86_64                   10/1027 
  Verifying        : ModemManager-glib-1.10.8-4.el8.x86_64              11/1027 
  Verifying        : ModemManager-glib-1.10.8-2.el8.x86_64              12/1027 
  Verifying        : NetworkManager-1:1.32.10-4.el8.x86_64              13/1027 
  Verifying        : NetworkManager-1:1.30.0-7.el8.x86_64               14/1027 
  Verifying        : NetworkManager-adsl-1:1.32.10-4.el8.x86_64         15/1027 
  Verifying        : NetworkManager-adsl-1:1.30.0-7.el8.x86_64          16/1027 
  Verifying        : NetworkManager-bluetooth-1:1.32.10-4.el8.x86_6     17/1027 
  Verifying        : NetworkManager-bluetooth-1:1.30.0-7.el8.x86_64     18/1027 
  Verifying        : NetworkManager-config-server-1:1.32.10-4.el8.n     19/1027 
  Verifying        : NetworkManager-config-server-1:1.30.0-7.el8.no     20/1027 
  Verifying        : NetworkManager-libnm-1:1.32.10-4.el8.x86_64        21/1027 
  Verifying        : NetworkManager-libnm-1:1.30.0-7.el8.x86_64         22/1027 
  Verifying        : NetworkManager-team-1:1.32.10-4.el8.x86_64         23/1027 
  Verifying        : NetworkManager-team-1:1.30.0-7.el8.x86_64          24/1027 
  Verifying        : NetworkManager-tui-1:1.32.10-4.el8.x86_64          25/1027 
  Verifying        : NetworkManager-tui-1:1.30.0-7.el8.x86_64           26/1027 
  Verifying        : NetworkManager-wifi-1:1.32.10-4.el8.x86_64         27/1027 
  Verifying        : NetworkManager-wifi-1:1.30.0-7.el8.x86_64          28/1027 
  Verifying        : NetworkManager-wwan-1:1.32.10-4.el8.x86_64         29/1027 
  Verifying        : NetworkManager-wwan-1:1.30.0-7.el8.x86_64          30/1027 
  Verifying        : adcli-0.8.2-12.el8.x86_64                          31/1027 
  Verifying        : adcli-0.8.2-9.el8.x86_64                           32/1027 
  Verifying        : almalinux-release-8.5-4.el8.x86_64                 33/1027 
  Verifying        : almalinux-release-8.4-2.el8.x86_64                 34/1027 
  Verifying        : authselect-1.2.2-3.el8.x86_64                      35/1027 
  Verifying        : authselect-1.2.2-2.el8.x86_64                      36/1027 
  Verifying        : authselect-libs-1.2.2-3.el8.x86_64                 37/1027 
  Verifying        : authselect-libs-1.2.2-2.el8.x86_64                 38/1027 
  Verifying        : bash-4.4.20-2.el8.x86_64                           39/1027 
  Verifying        : bash-4.4.20-1.el8_4.x86_64                         40/1027 
  Verifying        : bind-export-libs-32:9.11.26-6.el8.x86_64           41/1027 
  Verifying        : bind-export-libs-32:9.11.26-4.el8_4.x86_64         42/1027 
  Verifying        : binutils-2.30-108.el8_5.1.x86_64                   43/1027 
  Verifying        : binutils-2.30-93.el8.x86_64                        44/1027 
  Verifying        : bluez-5.56-2.el8.alma.x86_64                       45/1027 
  Verifying        : bluez-5.52-4.el8.alma.x86_64                       46/1027 
  Verifying        : bluez-libs-5.56-2.el8.alma.x86_64                  47/1027 
  Verifying        : bluez-libs-5.52-4.el8.alma.x86_64                  48/1027 
  Verifying        : bluez-obexd-5.56-2.el8.alma.x86_64                 49/1027 
  Verifying        : bluez-obexd-5.52-4.el8.alma.x86_64                 50/1027 
  Verifying        : bpftool-4.18.0-348.12.2.el8_5.x86_64               51/1027 
  Verifying        : bpftool-4.18.0-305.el8.x86_64                      52/1027 
  Verifying        : ca-certificates-2021.2.50-80.0.el8_4.noarch        53/1027 
  Verifying        : ca-certificates-2020.2.41-80.0.el8_2.noarch        54/1027 
  Verifying        : chkconfig-1.19.1-1.el8.x86_64                      55/1027 
  Verifying        : chkconfig-1.13-2.el8.x86_64                        56/1027 
  Verifying        : chrony-4.1-1.el8.alma.x86_64                       57/1027 
  Verifying        : chrony-3.5-2.el8.alma.x86_64                       58/1027 
  Verifying        : cockpit-251.1-1.el8.x86_64                         59/1027 
  Verifying        : cockpit-238.2-1.el8.x86_64                         60/1027 
  Verifying        : cockpit-bridge-251.1-1.el8.x86_64                  61/1027 
  Verifying        : cockpit-bridge-238.2-1.el8.x86_64                  62/1027 
  Verifying        : cockpit-system-251.1-1.el8.noarch                  63/1027 
  Verifying        : cockpit-system-238.2-1.el8.noarch                  64/1027 
  Verifying        : cockpit-ws-251.1-1.el8.x86_64                      65/1027 
  Verifying        : cockpit-ws-238.2-1.el8.x86_64                      66/1027 
  Verifying        : coreutils-8.30-12.el8.x86_64                       67/1027 
  Verifying        : coreutils-8.30-8.el8.x86_64                        68/1027 
  Verifying        : coreutils-common-8.30-12.el8.x86_64                69/1027 
  Verifying        : coreutils-common-8.30-8.el8.x86_64                 70/1027 
  Verifying        : crypto-policies-20210617-1.gitc776d3e.el8.noar     71/1027 
  Verifying        : crypto-policies-20210209-1.gitbfb6bed.el8_3.no     72/1027 
  Verifying        : crypto-policies-scripts-20210617-1.gitc776d3e.     73/1027 
  Verifying        : crypto-policies-scripts-20210209-1.gitbfb6bed.     74/1027 
  Verifying        : cups-libs-1:2.2.6-40.el8.x86_64                    75/1027 
  Verifying        : cups-libs-1:2.2.6-38.el8.x86_64                    76/1027 
  Verifying        : curl-7.61.1-22.el8.x86_64                          77/1027 
  Verifying        : curl-7.61.1-18.el8.x86_64                          78/1027 
  Verifying        : dbus-1:1.12.8-14.el8.x86_64                        79/1027 
  Verifying        : dbus-1:1.12.8-12.el8_4.2.x86_64                    80/1027 
  Verifying        : dbus-common-1:1.12.8-14.el8.noarch                 81/1027 
  Verifying        : dbus-common-1:1.12.8-12.el8_4.2.noarch             82/1027 
  Verifying        : dbus-daemon-1:1.12.8-14.el8.x86_64                 83/1027 
  Verifying        : dbus-daemon-1:1.12.8-12.el8_4.2.x86_64             84/1027 
  Verifying        : dbus-libs-1:1.12.8-14.el8.x86_64                   85/1027 
  Verifying        : dbus-libs-1:1.12.8-12.el8_4.2.x86_64               86/1027 
  Verifying        : dbus-tools-1:1.12.8-14.el8.x86_64                  87/1027 
  Verifying        : dbus-tools-1:1.12.8-12.el8_4.2.x86_64              88/1027 
  Verifying        : device-mapper-8:1.02.177-10.el8.x86_64             89/1027 
  Verifying        : device-mapper-8:1.02.175-5.el8.x86_64              90/1027 
  Verifying        : device-mapper-event-8:1.02.177-10.el8.x86_64       91/1027 
  Verifying        : device-mapper-event-8:1.02.175-5.el8.x86_64        92/1027 
  Verifying        : device-mapper-event-libs-8:1.02.177-10.el8.x86     93/1027 
  Verifying        : device-mapper-event-libs-8:1.02.175-5.el8.x86_     94/1027 
  Verifying        : device-mapper-libs-8:1.02.177-10.el8.x86_64        95/1027 
  Verifying        : device-mapper-libs-8:1.02.175-5.el8.x86_64         96/1027 
  Verifying        : device-mapper-multipath-0.8.4-17.el8.x86_64        97/1027 
  Verifying        : device-mapper-multipath-0.8.4-10.el8.x86_64        98/1027 
  Verifying        : device-mapper-multipath-libs-0.8.4-17.el8.x86_     99/1027 
  Verifying        : device-mapper-multipath-libs-0.8.4-10.el8.x86_    100/1027 
  Verifying        : device-mapper-persistent-data-0.9.0-4.el8.x86_    101/1027 
  Verifying        : device-mapper-persistent-data-0.8.5-4.el8.x86_    102/1027 
  Verifying        : dhcp-client-12:4.3.6-45.el8.x86_64                103/1027 
  Verifying        : dhcp-client-12:4.3.6-44.el8.x86_64                104/1027 
  Verifying        : dhcp-common-12:4.3.6-45.el8.noarch                105/1027 
  Verifying        : dhcp-common-12:4.3.6-44.el8.noarch                106/1027 
  Verifying        : dhcp-libs-12:4.3.6-45.el8.x86_64                  107/1027 
  Verifying        : dhcp-libs-12:4.3.6-44.el8.x86_64                  108/1027 
  Verifying        : dmidecode-1:3.2-10.el8.x86_64                     109/1027 
  Verifying        : dmidecode-1:3.2-8.el8.x86_64                      110/1027 
  Verifying        : dnf-4.7.0-4.el8.noarch                            111/1027 
  Verifying        : dnf-4.4.2-11.el8.noarch                           112/1027 
  Verifying        : dnf-data-4.7.0-4.el8.noarch                       113/1027 
  Verifying        : dnf-data-4.4.2-11.el8.noarch                      114/1027 
  Verifying        : dnf-plugins-core-4.0.21-3.el8.noarch              115/1027 
  Verifying        : dnf-plugins-core-4.0.18-4.el8.noarch              116/1027 
  Verifying        : dracut-049-191.git20210920.el8.x86_64             117/1027 
  Verifying        : dracut-049-135.git20210121.el8.x86_64             118/1027 
  Verifying        : dracut-config-rescue-049-191.git20210920.el8.x    119/1027 
  Verifying        : dracut-config-rescue-049-135.git20210121.el8.x    120/1027 
  Verifying        : dracut-network-049-191.git20210920.el8.x86_64     121/1027 
  Verifying        : dracut-network-049-135.git20210121.el8.x86_64     122/1027 
  Verifying        : dracut-squash-049-191.git20210920.el8.x86_64      123/1027 
  Verifying        : dracut-squash-049-135.git20210121.el8.x86_64      124/1027 
  Verifying        : e2fsprogs-1.45.6-2.el8.x86_64                     125/1027 
  Verifying        : e2fsprogs-1.45.6-1.el8.x86_64                     126/1027 
  Verifying        : e2fsprogs-libs-1.45.6-2.el8.x86_64                127/1027 
  Verifying        : e2fsprogs-libs-1.45.6-1.el8.x86_64                128/1027 
  Verifying        : efibootmgr-16-1.el8.0.1.x86_64                    129/1027 
  Verifying        : efibootmgr-16-1.el8.x86_64                        130/1027 
  Verifying        : elfutils-debuginfod-client-0.185-1.el8.x86_64     131/1027 
  Verifying        : elfutils-debuginfod-client-0.182-3.el8.x86_64     132/1027 
  Verifying        : elfutils-default-yama-scope-0.185-1.el8.noarch    133/1027 
  Verifying        : elfutils-default-yama-scope-0.182-3.el8.noarch    134/1027 
  Verifying        : emacs-filesystem-1:26.1-7.el8.noarch              135/1027 
  Verifying        : emacs-filesystem-1:26.1-5.el8.noarch              136/1027 
  Verifying        : ethtool-2:5.8-7.el8.x86_64                        137/1027 
  Verifying        : ethtool-2:5.8-5.el8.x86_64                        138/1027 
  Verifying        : file-5.33-20.el8.x86_64                           139/1027 
  Verifying        : file-5.33-16.el8_3.1.x86_64                       140/1027 
  Verifying        : file-libs-5.33-20.el8.x86_64                      141/1027 
  Verifying        : file-libs-5.33-16.el8_3.1.x86_64                  142/1027 
  Verifying        : filesystem-3.8-6.el8.x86_64                       143/1027 
  Verifying        : filesystem-3.8-3.el8.x86_64                       144/1027 
  Verifying        : firewalld-0.9.3-7.el8.noarch                      145/1027 
  Verifying        : firewalld-0.8.2-6.el8.noarch                      146/1027 
  Verifying        : firewalld-filesystem-0.9.3-7.el8.noarch           147/1027 
  Verifying        : firewalld-filesystem-0.8.2-6.el8.noarch           148/1027 
  Verifying        : fontconfig-2.13.1-4.el8.x86_64                    149/1027 
  Verifying        : fontconfig-2.13.1-3.el8.x86_64                    150/1027 
  Verifying        : fwupd-1.5.9-1.el8_4.alma.x86_64                   151/1027 
  Verifying        : fwupd-1.5.5-3.el8.alma.x86_64                     152/1027 
  Verifying        : glib2-2.56.4-156.el8.x86_64                       153/1027 
  Verifying        : glib2-2.56.4-9.el8.x86_64                         154/1027 
  Verifying        : glusterfs-6.0-56.4.el8.x86_64                     155/1027 
  Verifying        : glusterfs-6.0-56.el8.x86_64                       156/1027 
  Verifying        : glusterfs-client-xlators-6.0-56.4.el8.x86_64      157/1027 
  Verifying        : glusterfs-client-xlators-6.0-56.el8.x86_64        158/1027 
  Verifying        : glusterfs-libs-6.0-56.4.el8.x86_64                159/1027 
  Verifying        : glusterfs-libs-6.0-56.el8.x86_64                  160/1027 
  Verifying        : gnutls-3.6.16-4.el8.x86_64                        161/1027 
  Verifying        : gnutls-3.6.14-8.el8_3.x86_64                      162/1027 
  Verifying        : gpgme-1.13.1-9.el8.x86_64                         163/1027 
  Verifying        : gpgme-1.13.1-7.el8.x86_64                         164/1027 
  Verifying        : grub2-common-1:2.02-106.el8.alma.noarch           165/1027 
  Verifying        : grub2-common-1:2.02-99.el8.alma.noarch            166/1027 
  Verifying        : grub2-efi-x64-1:2.02-106.el8.alma.x86_64          167/1027 
  Verifying        : grub2-efi-x64-1:2.02-99.el8.alma.x86_64           168/1027 
  Verifying        : grub2-tools-1:2.02-106.el8.alma.x86_64            169/1027 
  Verifying        : grub2-tools-1:2.02-99.el8.alma.x86_64             170/1027 
  Verifying        : grub2-tools-extra-1:2.02-106.el8.alma.x86_64      171/1027 
  Verifying        : grub2-tools-extra-1:2.02-99.el8.alma.x86_64       172/1027 
  Verifying        : grub2-tools-minimal-1:2.02-106.el8.alma.x86_64    173/1027 
  Verifying        : grub2-tools-minimal-1:2.02-99.el8.alma.x86_64     174/1027 
  Verifying        : grubby-8.40-42.el8.x86_64                         175/1027 
  Verifying        : grubby-8.40-41.el8.x86_64                         176/1027 
  Verifying        : gsettings-desktop-schemas-3.32.0-6.el8.x86_64     177/1027 
  Verifying        : gsettings-desktop-schemas-3.32.0-5.el8.x86_64     178/1027 
  Verifying        : hdparm-9.54-4.el8.x86_64                          179/1027 
  Verifying        : hdparm-9.54-3.el8.x86_64                          180/1027 
  Verifying        : hwdata-0.314-8.10.el8.noarch                      181/1027 
  Verifying        : hwdata-0.314-8.8.el8.noarch                       182/1027 
  Verifying        : iproute-5.12.0-4.el8.x86_64                       183/1027 
  Verifying        : iproute-5.9.0-4.el8.x86_64                        184/1027 
  Verifying        : iproute-tc-5.12.0-4.el8.x86_64                    185/1027 
  Verifying        : iproute-tc-5.9.0-4.el8.x86_64                     186/1027 
  Verifying        : iptables-1.8.4-20.el8.x86_64                      187/1027 
  Verifying        : iptables-1.8.4-17.el8.x86_64                      188/1027 
  Verifying        : iptables-ebtables-1.8.4-20.el8.x86_64             189/1027 
  Verifying        : iptables-ebtables-1.8.4-17.el8.x86_64             190/1027 
  Verifying        : iptables-libs-1.8.4-20.el8.x86_64                 191/1027 
  Verifying        : iptables-libs-1.8.4-17.el8.x86_64                 192/1027 
  Verifying        : iscsi-initiator-utils-6.2.1.4-4.git095f59c.el8    193/1027 
  Verifying        : iscsi-initiator-utils-6.2.1.2-1.gita8fcb37.el8    194/1027 
  Verifying        : iscsi-initiator-utils-iscsiuio-6.2.1.4-4.git09    195/1027 
  Verifying        : iscsi-initiator-utils-iscsiuio-6.2.1.2-1.gita8    196/1027 
  Verifying        : iwl100-firmware-39.31.5.1-103.el8.1.noarch        197/1027 
  Verifying        : iwl100-firmware-39.31.5.1-102.el8.1.noarch        198/1027 
  Verifying        : iwl1000-firmware-1:39.31.5.1-103.el8.1.noarch     199/1027 
  Verifying        : iwl1000-firmware-1:39.31.5.1-102.el8.1.noarch     200/1027 
  Verifying        : iwl105-firmware-18.168.6.1-103.el8.1.noarch       201/1027 
  Verifying        : iwl105-firmware-18.168.6.1-102.el8.1.noarch       202/1027 
  Verifying        : iwl135-firmware-18.168.6.1-103.el8.1.noarch       203/1027 
  Verifying        : iwl135-firmware-18.168.6.1-102.el8.1.noarch       204/1027 
  Verifying        : iwl2000-firmware-18.168.6.1-103.el8.1.noarch      205/1027 
  Verifying        : iwl2000-firmware-18.168.6.1-102.el8.1.noarch      206/1027 
  Verifying        : iwl2030-firmware-18.168.6.1-103.el8.1.noarch      207/1027 
  Verifying        : iwl2030-firmware-18.168.6.1-102.el8.1.noarch      208/1027 
  Verifying        : iwl3160-firmware-1:25.30.13.0-103.el8.1.noarch    209/1027 
  Verifying        : iwl3160-firmware-1:25.30.13.0-102.el8.1.noarch    210/1027 
  Verifying        : iwl3945-firmware-15.32.2.9-103.el8.1.noarch       211/1027 
  Verifying        : iwl3945-firmware-15.32.2.9-102.el8.1.noarch       212/1027 
  Verifying        : iwl4965-firmware-228.61.2.24-103.el8.1.noarch     213/1027 
  Verifying        : iwl4965-firmware-228.61.2.24-102.el8.1.noarch     214/1027 
  Verifying        : iwl5000-firmware-8.83.5.1_1-103.el8.1.noarch      215/1027 
  Verifying        : iwl5000-firmware-8.83.5.1_1-102.el8.1.noarch      216/1027 
  Verifying        : iwl5150-firmware-8.24.2.2-103.el8.1.noarch        217/1027 
  Verifying        : iwl5150-firmware-8.24.2.2-102.el8.1.noarch        218/1027 
  Verifying        : iwl6000-firmware-9.221.4.1-103.el8.1.noarch       219/1027 
  Verifying        : iwl6000-firmware-9.221.4.1-102.el8.1.noarch       220/1027 
  Verifying        : iwl6000g2a-firmware-18.168.6.1-103.el8.1.noarc    221/1027 
  Verifying        : iwl6000g2a-firmware-18.168.6.1-102.el8.1.noarc    222/1027 
  Verifying        : iwl6000g2b-firmware-18.168.6.1-103.el8.1.noarc    223/1027 
  Verifying        : iwl6000g2b-firmware-18.168.6.1-102.el8.1.noarc    224/1027 
  Verifying        : iwl6050-firmware-41.28.5.1-103.el8.1.noarch       225/1027 
  Verifying        : iwl6050-firmware-41.28.5.1-102.el8.1.noarch       226/1027 
  Verifying        : iwl7260-firmware-1:25.30.13.0-103.el8.1.noarch    227/1027 
  Verifying        : iwl7260-firmware-1:25.30.13.0-102.el8.1.noarch    228/1027 
  Verifying        : json-c-0.13.1-2.el8.x86_64                        229/1027 
  Verifying        : json-c-0.13.1-0.4.el8.x86_64                      230/1027 
  Verifying        : kernel-tools-4.18.0-348.12.2.el8_5.x86_64         231/1027 
  Verifying        : kernel-tools-4.18.0-305.el8.x86_64                232/1027 
  Verifying        : kernel-tools-libs-4.18.0-348.12.2.el8_5.x86_64    233/1027 
  Verifying        : kernel-tools-libs-4.18.0-305.el8.x86_64           234/1027 
  Verifying        : kexec-tools-2.0.20-57.el8_5.1.x86_64              235/1027 
  Verifying        : kexec-tools-2.0.20-46.el8.x86_64                  236/1027 
  Verifying        : keyutils-1.5.10-9.el8.x86_64                      237/1027 
  Verifying        : keyutils-1.5.10-6.el8.x86_64                      238/1027 
  Verifying        : keyutils-libs-1.5.10-9.el8.x86_64                 239/1027 
  Verifying        : keyutils-libs-1.5.10-6.el8.x86_64                 240/1027 
  Verifying        : kmod-25-18.el8.x86_64                             241/1027 
  Verifying        : kmod-25-17.el8.x86_64                             242/1027 
  Verifying        : kmod-kvdo-6.2.5.72-81.el8.x86_64                  243/1027 
  Verifying        : kmod-kvdo-6.2.4.26-77.el8.x86_64                  244/1027 
  Verifying        : kmod-libs-25-18.el8.x86_64                        245/1027 
  Verifying        : kmod-libs-25-17.el8.x86_64                        246/1027 
  Verifying        : kpartx-0.8.4-17.el8.x86_64                        247/1027 
  Verifying        : kpartx-0.8.4-10.el8.x86_64                        248/1027 
  Verifying        : krb5-libs-1.18.2-14.el8.x86_64                    249/1027 
  Verifying        : krb5-libs-1.18.2-8.el8.x86_64                     250/1027 
  Verifying        : libblkid-2.32.1-28.el8.x86_64                     251/1027 
  Verifying        : libblkid-2.32.1-27.el8.x86_64                     252/1027 
  Verifying        : libcap-2.26-5.el8.x86_64                          253/1027 
  Verifying        : libcap-2.26-4.el8.x86_64                          254/1027 
  Verifying        : libcap-ng-0.7.11-1.el8.x86_64                     255/1027 
  Verifying        : libcap-ng-0.7.9-5.el8.x86_64                      256/1027 
  Verifying        : libcom_err-1.45.6-2.el8.x86_64                    257/1027 
  Verifying        : libcom_err-1.45.6-1.el8.x86_64                    258/1027 
  Verifying        : libcomps-0.1.16-2.el8.x86_64                      259/1027 
  Verifying        : libcomps-0.1.11-5.el8.x86_64                      260/1027 
  Verifying        : libcurl-7.61.1-22.el8.x86_64                      261/1027 
  Verifying        : libcurl-7.61.1-18.el8.x86_64                      262/1027 
  Verifying        : libdb-5.3.28-42.el8_4.x86_64                      263/1027 
  Verifying        : libdb-5.3.28-40.el8.x86_64                        264/1027 
  Verifying        : libdb-utils-5.3.28-42.el8_4.x86_64                265/1027 
  Verifying        : libdb-utils-5.3.28-40.el8.x86_64                  266/1027 
  Verifying        : libdnf-0.63.0-3.el8.x86_64                        267/1027 
  Verifying        : libdnf-0.55.0-7.el8.alma.x86_64                   268/1027 
  Verifying        : libertas-usb8388-firmware-2:20210702-103.gitd7    269/1027 
  Verifying        : libertas-usb8388-firmware-2:20201218-102.git05    270/1027 
  Verifying        : libfdisk-2.32.1-28.el8.x86_64                     271/1027 
  Verifying        : libfdisk-2.32.1-27.el8.x86_64                     272/1027 
  Verifying        : libgcrypt-1.8.5-6.el8.x86_64                      273/1027 
  Verifying        : libgcrypt-1.8.5-4.el8.x86_64                      274/1027 
  Verifying        : libipa_hbac-2.5.2-2.el8_5.3.x86_64                275/1027 
  Verifying        : libipa_hbac-2.4.0-9.el8.x86_64                    276/1027 
  Verifying        : libldb-2.3.0-2.el8.x86_64                         277/1027 
  Verifying        : libldb-2.2.0-2.el8.x86_64                         278/1027 
  Verifying        : libmodulemd-2.13.0-1.el8.x86_64                   279/1027 
  Verifying        : libmodulemd-2.9.4-2.el8.x86_64                    280/1027 
  Verifying        : libmount-2.32.1-28.el8.x86_64                     281/1027 
  Verifying        : libmount-2.32.1-27.el8.x86_64                     282/1027 
  Verifying        : libndp-1.7-6.el8.x86_64                           283/1027 
  Verifying        : libndp-1.7-5.el8.x86_64                           284/1027 
  Verifying        : libnfsidmap-1:2.3.3-46.el8.x86_64                 285/1027 
  Verifying        : libnfsidmap-1:2.3.3-41.el8.x86_64                 286/1027 
  Verifying        : libqmi-1.24.0-3.el8.x86_64                        287/1027 
  Verifying        : libqmi-1.24.0-1.el8.x86_64                        288/1027 
  Verifying        : libqmi-utils-1.24.0-3.el8.x86_64                  289/1027 
  Verifying        : libqmi-utils-1.24.0-1.el8.x86_64                  290/1027 
  Verifying        : librepo-1.14.0-2.el8.x86_64                       291/1027 
  Verifying        : librepo-1.12.0-3.el8.x86_64                       292/1027 
  Verifying        : libsepol-2.9-3.el8.x86_64                         293/1027 
  Verifying        : libsepol-2.9-2.el8.x86_64                         294/1027 
  Verifying        : libsmartcols-2.32.1-28.el8.x86_64                 295/1027 
  Verifying        : libsmartcols-2.32.1-27.el8.x86_64                 296/1027 
  Verifying        : libsmbclient-4.14.5-7.el8_5.x86_64                297/1027 
  Verifying        : libsmbclient-4.13.3-3.el8.x86_64                  298/1027 
  Verifying        : libsolv-0.7.19-1.el8.x86_64                       299/1027 
  Verifying        : libsolv-0.7.16-2.el8.x86_64                       300/1027 
  Verifying        : libss-1.45.6-2.el8.x86_64                         301/1027 
  Verifying        : libss-1.45.6-1.el8.x86_64                         302/1027 
  Verifying        : libssh-0.9.4-3.el8.x86_64                         303/1027 
  Verifying        : libssh-0.9.4-2.el8.x86_64                         304/1027 
  Verifying        : libssh-config-0.9.4-3.el8.noarch                  305/1027 
  Verifying        : libssh-config-0.9.4-2.el8.noarch                  306/1027 
  Verifying        : libsss_autofs-2.5.2-2.el8_5.3.x86_64              307/1027 
  Verifying        : libsss_autofs-2.4.0-9.el8.x86_64                  308/1027 
  Verifying        : libsss_certmap-2.5.2-2.el8_5.3.x86_64             309/1027 
  Verifying        : libsss_certmap-2.4.0-9.el8.x86_64                 310/1027 
  Verifying        : libsss_idmap-2.5.2-2.el8_5.3.x86_64               311/1027 
  Verifying        : libsss_idmap-2.4.0-9.el8.x86_64                   312/1027 
  Verifying        : libsss_nss_idmap-2.5.2-2.el8_5.3.x86_64           313/1027 
  Verifying        : libsss_nss_idmap-2.4.0-9.el8.x86_64               314/1027 
  Verifying        : libsss_sudo-2.5.2-2.el8_5.3.x86_64                315/1027 
  Verifying        : libsss_sudo-2.4.0-9.el8.x86_64                    316/1027 
  Verifying        : libstdc++-8.5.0-4.el8_5.alma.x86_64               317/1027 
  Verifying        : libstdc++-8.4.1-1.el8.alma.x86_64                 318/1027 
  Verifying        : libstoragemgmt-1.9.1-1.el8.x86_64                 319/1027 
  Verifying        : libstoragemgmt-1.8.7-1.el8.x86_64                 320/1027 
  Verifying        : libtalloc-2.3.2-1.el8.x86_64                      321/1027 
  Verifying        : libtalloc-2.3.1-2.el8.x86_64                      322/1027 
  Verifying        : libtevent-0.11.0-0.el8.x86_64                     323/1027 
  Verifying        : libtevent-0.10.2-2.el8.x86_64                     324/1027 
  Verifying        : libtirpc-1.1.4-5.el8.x86_64                       325/1027 
  Verifying        : libtirpc-1.1.4-4.el8.x86_64                       326/1027 
  Verifying        : libuuid-2.32.1-28.el8.x86_64                      327/1027 
  Verifying        : libuuid-2.32.1-27.el8.x86_64                      328/1027 
  Verifying        : libwbclient-4.14.5-7.el8_5.x86_64                 329/1027 
  Verifying        : libwbclient-4.13.3-3.el8.x86_64                   330/1027 
  Verifying        : libxml2-2.9.7-9.el8_4.2.x86_64                    331/1027 
  Verifying        : libxml2-2.9.7-9.el8.x86_64                        332/1027 
  Verifying        : linux-firmware-20210702-103.gitd79c2677.el8.no    333/1027 
  Verifying        : linux-firmware-20201218-102.git05789708.el8.no    334/1027 
  Verifying        : lshw-B.02.19.2-6.el8.x86_64                       335/1027 
  Verifying        : lshw-B.02.19.2-5.el8.x86_64                       336/1027 
  Verifying        : lsscsi-0.32-3.el8.x86_64                          337/1027 
  Verifying        : lsscsi-0.32-2.el8.x86_64                          338/1027 
  Verifying        : lua-libs-5.3.4-12.el8.x86_64                      339/1027 
  Verifying        : lua-libs-5.3.4-11.el8.x86_64                      340/1027 
  Verifying        : lvm2-8:2.03.12-10.el8.x86_64                      341/1027 
  Verifying        : lvm2-8:2.03.11-5.el8.x86_64                       342/1027 
  Verifying        : lvm2-libs-8:2.03.12-10.el8.x86_64                 343/1027 
  Verifying        : lvm2-libs-8:2.03.11-5.el8.x86_64                  344/1027 
  Verifying        : lz4-1.8.3-3.el8_4.x86_64                          345/1027 
  Verifying        : lz4-1.8.3-2.el8.x86_64                            346/1027 
  Verifying        : lz4-libs-1.8.3-3.el8_4.x86_64                     347/1027 
  Verifying        : lz4-libs-1.8.3-2.el8.x86_64                       348/1027 
  Verifying        : man-db-2.7.6.1-18.el8.x86_64                      349/1027 
  Verifying        : man-db-2.7.6.1-17.el8.x86_64                      350/1027 
  Verifying        : mcelog-3:175-1.el8.x86_64                         351/1027 
  Verifying        : mcelog-3:173-0.el8.x86_64                         352/1027 
  Verifying        : mdadm-4.2-rc2.el8.x86_64                          353/1027 
  Verifying        : mdadm-4.1-15.el8.x86_64                           354/1027 
  Verifying        : microcode_ctl-4:20210608-1.el8.x86_64             355/1027 
  Verifying        : microcode_ctl-4:20210216-1.el8.x86_64             356/1027 
  Verifying        : mobile-broadband-provider-info-20210805-1.el8.    357/1027 
  Verifying        : mobile-broadband-provider-info-20190618-2.el8.    358/1027 
  Verifying        : ncurses-6.1-9.20180224.el8.x86_64                 359/1027 
  Verifying        : ncurses-6.1-7.20180224.el8.x86_64                 360/1027 
  Verifying        : ncurses-base-6.1-9.20180224.el8.noarch            361/1027 
  Verifying        : ncurses-base-6.1-7.20180224.el8.noarch            362/1027 
  Verifying        : ncurses-libs-6.1-9.20180224.el8.x86_64            363/1027 
  Verifying        : ncurses-libs-6.1-7.20180224.el8.x86_64            364/1027 
  Verifying        : net-snmp-libs-1:5.8-22.el8.x86_64                 365/1027 
  Verifying        : net-snmp-libs-1:5.8-20.el8.x86_64                 366/1027 
  Verifying        : nettle-3.4.1-7.el8.x86_64                         367/1027 
  Verifying        : nettle-3.4.1-4.el8_3.x86_64                       368/1027 
  Verifying        : nfs-utils-1:2.3.3-46.el8.x86_64                   369/1027 
  Verifying        : nfs-utils-1:2.3.3-41.el8.x86_64                   370/1027 
  Verifying        : nftables-1:0.9.3-21.el8.x86_64                    371/1027 
  Verifying        : nftables-1:0.9.3-18.el8.x86_64                    372/1027 
  Verifying        : numactl-libs-2.0.12-13.el8.x86_64                 373/1027 
  Verifying        : numactl-libs-2.0.12-11.el8.x86_64                 374/1027 
  Verifying        : openldap-2.4.46-18.el8.x86_64                     375/1027 
  Verifying        : openldap-2.4.46-16.el8.x86_64                     376/1027 
  Verifying        : openssh-8.0p1-10.el8.x86_64                       377/1027 
  Verifying        : openssh-8.0p1-6.el8_4.2.x86_64                    378/1027 
  Verifying        : openssh-clients-8.0p1-10.el8.x86_64               379/1027 
  Verifying        : openssh-clients-8.0p1-6.el8_4.2.x86_64            380/1027 
  Verifying        : openssh-server-8.0p1-10.el8.x86_64                381/1027 
  Verifying        : openssh-server-8.0p1-6.el8_4.2.x86_64             382/1027 
  Verifying        : openssl-1:1.1.1k-5.el8_5.x86_64                   383/1027 
  Verifying        : openssl-1:1.1.1g-15.el8_3.x86_64                  384/1027 
  Verifying        : openssl-libs-1:1.1.1k-5.el8_5.x86_64              385/1027 
  Verifying        : openssl-libs-1:1.1.1g-15.el8_3.x86_64             386/1027 
  Verifying        : os-prober-1.74-9.el8.x86_64                       387/1027 
  Verifying        : os-prober-1.74-6.el8.x86_64                       388/1027 
  Verifying        : pam-1.3.1-15.el8.x86_64                           389/1027 
  Verifying        : pam-1.3.1-14.el8.x86_64                           390/1027 
  Verifying        : parted-3.2-39.el8.x86_64                          391/1027 
  Verifying        : parted-3.2-38.el8.x86_64                          392/1027 
  Verifying        : pcre-8.42-6.el8.x86_64                            393/1027 
  Verifying        : pcre-8.42-4.el8.x86_64                            394/1027 
  Verifying        : perl-Errno-1.28-420.el8.x86_64                    395/1027 
  Verifying        : perl-Errno-1.28-419.el8.x86_64                    396/1027 
  Verifying        : perl-IO-1.38-420.el8.x86_64                       397/1027 
  Verifying        : perl-IO-1.38-419.el8.x86_64                       398/1027 
  Verifying        : perl-Math-Complex-1.59-420.el8.noarch             399/1027 
  Verifying        : perl-Math-Complex-1.59-419.el8.noarch             400/1027 
  Verifying        : perl-interpreter-4:5.26.3-420.el8.x86_64          401/1027 
  Verifying        : perl-interpreter-4:5.26.3-419.el8.x86_64          402/1027 
  Verifying        : perl-libs-4:5.26.3-420.el8.x86_64                 403/1027 
  Verifying        : perl-libs-4:5.26.3-419.el8.x86_64                 404/1027 
  Verifying        : perl-macros-4:5.26.3-420.el8.x86_64               405/1027 
  Verifying        : perl-macros-4:5.26.3-419.el8.x86_64               406/1027 
  Verifying        : platform-python-3.6.8-41.el8.alma.x86_64          407/1027 
  Verifying        : platform-python-3.6.8-37.el8.alma.x86_64          408/1027 
  Verifying        : platform-python-pip-9.0.3-20.el8.noarch           409/1027 
  Verifying        : platform-python-pip-9.0.3-19.el8.noarch           410/1027 
  Verifying        : policycoreutils-2.9-16.el8.x86_64                 411/1027 
  Verifying        : policycoreutils-2.9-14.el8.x86_64                 412/1027 
  Verifying        : policycoreutils-python-utils-2.9-16.el8.noarch    413/1027 
  Verifying        : policycoreutils-python-utils-2.9-14.el8.noarch    414/1027 
  Verifying        : polkit-0.115-13.el8_5.1.x86_64                    415/1027 
  Verifying        : polkit-0.115-11.el8.x86_64                        416/1027 
  Verifying        : polkit-libs-0.115-13.el8_5.1.x86_64               417/1027 
  Verifying        : polkit-libs-0.115-11.el8.x86_64                   418/1027 
  Verifying        : python3-cryptography-3.2.1-5.el8.x86_64           419/1027 
  Verifying        : python3-cryptography-3.2.1-4.el8.x86_64           420/1027 
  Verifying        : python3-dnf-4.7.0-4.el8.noarch                    421/1027 
  Verifying        : python3-dnf-4.4.2-11.el8.noarch                   422/1027 
  Verifying        : python3-dnf-plugins-core-4.0.21-3.el8.noarch      423/1027 
  Verifying        : python3-dnf-plugins-core-4.0.18-4.el8.noarch      424/1027 
  Verifying        : python3-firewall-0.9.3-7.el8.noarch               425/1027 
  Verifying        : python3-firewall-0.8.2-6.el8.noarch               426/1027 
  Verifying        : python3-gpg-1.13.1-9.el8.x86_64                   427/1027 
  Verifying        : python3-gpg-1.13.1-7.el8.x86_64                   428/1027 
  Verifying        : python3-hawkey-0.63.0-3.el8.x86_64                429/1027 
  Verifying        : python3-hawkey-0.55.0-7.el8.alma.x86_64           430/1027 
  Verifying        : python3-libcomps-0.1.16-2.el8.x86_64              431/1027 
  Verifying        : python3-libcomps-0.1.11-5.el8.x86_64              432/1027 
  Verifying        : python3-libdnf-0.63.0-3.el8.x86_64                433/1027 
  Verifying        : python3-libdnf-0.55.0-7.el8.alma.x86_64           434/1027 
  Verifying        : python3-librepo-1.14.0-2.el8.x86_64               435/1027 
  Verifying        : python3-librepo-1.12.0-3.el8.x86_64               436/1027 
  Verifying        : python3-libs-3.6.8-41.el8.alma.x86_64             437/1027 
  Verifying        : python3-libs-3.6.8-37.el8.alma.x86_64             438/1027 
  Verifying        : python3-libstoragemgmt-1.9.1-1.el8.x86_64         439/1027 
  Verifying        : python3-libstoragemgmt-1.8.7-1.el8.noarch         440/1027 
  Verifying        : python3-libstoragemgmt-clibs-1.8.7-1.el8.x86_6    441/1027 
  Verifying        : python3-libxml2-2.9.7-9.el8_4.2.x86_64            442/1027 
  Verifying        : python3-libxml2-2.9.7-9.el8.x86_64                443/1027 
  Verifying        : python3-nftables-1:0.9.3-21.el8.x86_64            444/1027 
  Verifying        : python3-nftables-1:0.9.3-18.el8.x86_64            445/1027 
  Verifying        : python3-perf-4.18.0-348.12.2.el8_5.x86_64         446/1027 
  Verifying        : python3-perf-4.18.0-305.el8.x86_64                447/1027 
  Verifying        : python3-pip-wheel-9.0.3-20.el8.noarch             448/1027 
  Verifying        : python3-pip-wheel-9.0.3-19.el8.noarch             449/1027 
  Verifying        : python3-policycoreutils-2.9-16.el8.noarch         450/1027 
  Verifying        : python3-policycoreutils-2.9-14.el8.noarch         451/1027 
  Verifying        : python3-rpm-4.14.3-19.el8.x86_64                  452/1027 
  Verifying        : python3-rpm-4.14.3-13.el8.x86_64                  453/1027 
  Verifying        : python3-sssdconfig-2.5.2-2.el8_5.3.noarch         454/1027 
  Verifying        : python3-sssdconfig-2.4.0-9.el8.noarch             455/1027 
  Verifying        : python3-syspurpose-1.28.21-3.el8.alma.x86_64      456/1027 
  Verifying        : python3-syspurpose-1.28.13-2.el8.alma.x86_64      457/1027 
  Verifying        : quota-1:4.04-14.el8.x86_64                        458/1027 
  Verifying        : quota-1:4.04-12.el8.x86_64                        459/1027 
  Verifying        : quota-nls-1:4.04-14.el8.noarch                    460/1027 
  Verifying        : quota-nls-1:4.04-12.el8.noarch                    461/1027 
  Verifying        : rasdaemon-0.6.1-6.el8.x86_64                      462/1027 
  Verifying        : rasdaemon-0.6.1-5.el8.x86_64                      463/1027 
  Verifying        : realmd-0.16.3-23.el8.x86_64                       464/1027 
  Verifying        : realmd-0.16.3-22.el8.x86_64                       465/1027 
  Verifying        : rng-tools-6.13-1.git.d207e0b6.el8.x86_64          466/1027 
  Verifying        : rng-tools-6.8-3.el8.x86_64                        467/1027 
  Verifying        : rpm-4.14.3-19.el8.x86_64                          468/1027 
  Verifying        : rpm-4.14.3-13.el8.x86_64                          469/1027 
  Verifying        : rpm-build-libs-4.14.3-19.el8.x86_64               470/1027 
  Verifying        : rpm-build-libs-4.14.3-13.el8.x86_64               471/1027 
  Verifying        : rpm-libs-4.14.3-19.el8.x86_64                     472/1027 
  Verifying        : rpm-libs-4.14.3-13.el8.x86_64                     473/1027 
  Verifying        : rpm-plugin-selinux-4.14.3-19.el8.x86_64           474/1027 
  Verifying        : rpm-plugin-selinux-4.14.3-13.el8.x86_64           475/1027 
  Verifying        : rpm-plugin-systemd-inhibit-4.14.3-19.el8.x86_6    476/1027 
  Verifying        : rpm-plugin-systemd-inhibit-4.14.3-13.el8.x86_6    477/1027 
  Verifying        : samba-client-libs-4.14.5-7.el8_5.x86_64           478/1027 
  Verifying        : samba-client-libs-4.13.3-3.el8.x86_64             479/1027 
  Verifying        : samba-common-4.14.5-7.el8_5.noarch                480/1027 
  Verifying        : samba-common-4.13.3-3.el8.noarch                  481/1027 
  Verifying        : samba-common-libs-4.14.5-7.el8_5.x86_64           482/1027 
  Verifying        : samba-common-libs-4.13.3-3.el8.x86_64             483/1027 
  Verifying        : selinux-policy-3.14.3-80.el8_5.2.noarch           484/1027 
  Verifying        : selinux-policy-3.14.3-67.el8.noarch               485/1027 
  Verifying        : selinux-policy-targeted-3.14.3-80.el8_5.2.noar    486/1027 
  Verifying        : selinux-policy-targeted-3.14.3-67.el8.noarch      487/1027 
  Verifying        : shadow-utils-2:4.6-14.el8.x86_64                  488/1027 
  Verifying        : shadow-utils-2:4.6-12.el8.x86_64                  489/1027 
  Verifying        : sos-4.1-5.el8.alma.noarch                         490/1027 
  Verifying        : sos-4.0-11.el8.alma.noarch                        491/1027 
  Verifying        : sqlite-3.26.0-15.el8.x86_64                       492/1027 
  Verifying        : sqlite-3.26.0-13.el8.x86_64                       493/1027 
  Verifying        : sqlite-libs-3.26.0-15.el8.x86_64                  494/1027 
  Verifying        : sqlite-libs-3.26.0-13.el8.x86_64                  495/1027 
  Verifying        : sssd-2.5.2-2.el8_5.3.x86_64                       496/1027 
  Verifying        : sssd-2.4.0-9.el8.x86_64                           497/1027 
  Verifying        : sssd-ad-2.5.2-2.el8_5.3.x86_64                    498/1027 
  Verifying        : sssd-ad-2.4.0-9.el8.x86_64                        499/1027 
  Verifying        : sssd-client-2.5.2-2.el8_5.3.x86_64                500/1027 
  Verifying        : sssd-client-2.4.0-9.el8.x86_64                    501/1027 
  Verifying        : sssd-common-2.5.2-2.el8_5.3.x86_64                502/1027 
  Verifying        : sssd-common-2.4.0-9.el8.x86_64                    503/1027 
  Verifying        : sssd-common-pac-2.5.2-2.el8_5.3.x86_64            504/1027 
  Verifying        : sssd-common-pac-2.4.0-9.el8.x86_64                505/1027 
  Verifying        : sssd-ipa-2.5.2-2.el8_5.3.x86_64                   506/1027 
  Verifying        : sssd-ipa-2.4.0-9.el8.x86_64                       507/1027 
  Verifying        : sssd-kcm-2.5.2-2.el8_5.3.x86_64                   508/1027 
  Verifying        : sssd-kcm-2.4.0-9.el8.x86_64                       509/1027 
  Verifying        : sssd-krb5-2.5.2-2.el8_5.3.x86_64                  510/1027 
  Verifying        : sssd-krb5-2.4.0-9.el8.x86_64                      511/1027 
  Verifying        : sssd-krb5-common-2.5.2-2.el8_5.3.x86_64           512/1027 
  Verifying        : sssd-krb5-common-2.4.0-9.el8.x86_64               513/1027 
  Verifying        : sssd-ldap-2.5.2-2.el8_5.3.x86_64                  514/1027 
  Verifying        : sssd-ldap-2.4.0-9.el8.x86_64                      515/1027 
  Verifying        : sssd-nfs-idmap-2.5.2-2.el8_5.3.x86_64             516/1027 
  Verifying        : sssd-nfs-idmap-2.4.0-9.el8.x86_64                 517/1027 
  Verifying        : sssd-proxy-2.5.2-2.el8_5.3.x86_64                 518/1027 
  Verifying        : sssd-proxy-2.4.0-9.el8.x86_64                     519/1027 
  Verifying        : strace-5.7-3.el8.x86_64                           520/1027 
  Verifying        : strace-5.7-2.el8.x86_64                           521/1027 
  Verifying        : sudo-1.8.29-7.el8_4.1.x86_64                      522/1027 
  Verifying        : sudo-1.8.29-7.el8.x86_64                          523/1027 
  Verifying        : tpm2-tools-4.1.1-5.el8.x86_64                     524/1027 
  Verifying        : tpm2-tools-4.1.1-2.el8.x86_64                     525/1027 
  Verifying        : tpm2-tss-2.3.2-4.el8.x86_64                       526/1027 
  Verifying        : tpm2-tss-2.3.2-3.el8.x86_64                       527/1027 
  Verifying        : tuned-2.16.0-1.el8.noarch                         528/1027 
  Verifying        : tuned-2.15.0-2.el8.noarch                         529/1027 
  Verifying        : tzdata-2021e-1.el8.noarch                         530/1027 
  Verifying        : tzdata-2021a-1.el8.noarch                         531/1027 
  Verifying        : unzip-6.0-45.el8_4.x86_64                         532/1027 
  Verifying        : unzip-6.0-44.el8.x86_64                           533/1027 
  Verifying        : usermode-1.113-2.el8.x86_64                       534/1027 
  Verifying        : usermode-1.113-1.el8.x86_64                       535/1027 
  Verifying        : util-linux-2.32.1-28.el8.x86_64                   536/1027 
  Verifying        : util-linux-2.32.1-27.el8.x86_64                   537/1027 
  Verifying        : util-linux-user-2.32.1-28.el8.x86_64              538/1027 
  Verifying        : util-linux-user-2.32.1-27.el8.x86_64              539/1027 
  Verifying        : vdo-6.2.5.74-14.el8.x86_64                        540/1027 
  Verifying        : vdo-6.2.4.14-14.el8.x86_64                        541/1027 
  Verifying        : vim-minimal-2:8.0.1763-16.el8.x86_64              542/1027 
  Verifying        : vim-minimal-2:8.0.1763-15.el8.x86_64              543/1027 
  Verifying        : virt-what-1.18-12.el8.x86_64                      544/1027 
  Verifying        : virt-what-1.18-6.el8.x86_64                       545/1027 
  Verifying        : which-2.21-16.el8.x86_64                          546/1027 
  Verifying        : which-2.21-12.el8.x86_64                          547/1027 
  Verifying        : xfsprogs-5.0.0-9.el8.x86_64                       548/1027 
  Verifying        : xfsprogs-5.0.0-8.el8.x86_64                       549/1027 
  Verifying        : yum-4.7.0-4.el8.noarch                            550/1027 
  Verifying        : yum-4.4.2-11.el8.noarch                           551/1027 
  Verifying        : accountsservice-0.6.55-2.el8_5.2.x86_64           552/1027 
  Verifying        : accountsservice-0.6.55-1.el8.x86_64               553/1027 
  Verifying        : accountsservice-libs-0.6.55-2.el8_5.2.x86_64      554/1027 
  Verifying        : accountsservice-libs-0.6.55-1.el8.x86_64          555/1027 
  Verifying        : almalinux-backgrounds-84.5-1.el8.noarch           556/1027 
  Verifying        : almalinux-backgrounds-84.4-1.el8.noarch           557/1027 
  Verifying        : almalinux-logos-84.5-1.el8.x86_64                 558/1027 
  Verifying        : almalinux-logos-84.4-1.el8.x86_64                 559/1027 
  Verifying        : alsa-lib-1.2.5-4.el8.x86_64                       560/1027 
  Verifying        : alsa-lib-1.2.4-5.el8.x86_64                       561/1027 
  Verifying        : alsa-ucm-1.2.5-4.el8.noarch                       562/1027 
  Verifying        : alsa-ucm-1.2.4-5.el8.noarch                       563/1027 
  Verifying        : alsa-utils-1.2.5-3.el8.x86_64                     564/1027 
  Verifying        : alsa-utils-1.2.4-2.el8.x86_64                     565/1027 
  Verifying        : anaconda-core-33.16.5.6-1.el8.alma.x86_64         566/1027 
  Verifying        : anaconda-core-33.16.4.15-1.el8.alma.x86_64        567/1027 
  Verifying        : anaconda-gui-33.16.5.6-1.el8.alma.x86_64          568/1027 
  Verifying        : anaconda-gui-33.16.4.15-1.el8.alma.x86_64         569/1027 
  Verifying        : anaconda-tui-33.16.5.6-1.el8.alma.x86_64          570/1027 
  Verifying        : anaconda-tui-33.16.4.15-1.el8.alma.x86_64         571/1027 
  Verifying        : anaconda-widgets-33.16.5.6-1.el8.alma.x86_64      572/1027 
  Verifying        : anaconda-widgets-33.16.4.15-1.el8.alma.x86_64     573/1027 
  Verifying        : authselect-compat-1.2.2-3.el8.x86_64              574/1027 
  Verifying        : authselect-compat-1.2.2-2.el8.x86_64              575/1027 
  Verifying        : bind-libs-32:9.11.26-6.el8.x86_64                 576/1027 
  Verifying        : bind-libs-32:9.11.26-4.el8_4.x86_64               577/1027 
  Verifying        : bind-libs-lite-32:9.11.26-6.el8.x86_64            578/1027 
  Verifying        : bind-libs-lite-32:9.11.26-4.el8_4.x86_64          579/1027 
  Verifying        : bind-license-32:9.11.26-6.el8.noarch              580/1027 
  Verifying        : bind-license-32:9.11.26-4.el8_4.noarch            581/1027 
  Verifying        : bind-utils-32:9.11.26-6.el8.x86_64                582/1027 
  Verifying        : bind-utils-32:9.11.26-4.el8_4.x86_64              583/1027 
  Verifying        : blivet-data-1:3.4.0-6.el8.noarch                  584/1027 
  Verifying        : blivet-data-1:3.2.2-10.el8.noarch                 585/1027 
  Verifying        : buildah-1.22.3-2.module_el8.5.0+2586+018f24d7.    586/1027 
  Verifying        : buildah-1.19.7-1.module_el8.4.0+2332+f4da7515.    587/1027 
  Verifying        : cockpit-packagekit-251.1-1.el8.noarch             588/1027 
  Verifying        : cockpit-packagekit-238.2-1.el8.noarch             589/1027 
  Verifying        : cockpit-podman-33-1.module_el8.5.0+2586+018f24    590/1027 
  Verifying        : cockpit-podman-29-2.module_el8.4.0+2332+f4da75    591/1027 
  Verifying        : cockpit-storaged-251.1-1.el8.noarch               592/1027 
  Verifying        : cockpit-storaged-238.2-1.el8.noarch               593/1027 
  Verifying        : compat-exiv2-026-0.26-6.el8.x86_64                594/1027 
  Verifying        : compat-exiv2-026-0.26-3.el8.x86_64                595/1027 
  Verifying        : conmon-2:2.0.29-1.module_el8.5.0+2586+018f24d7    596/1027 
  Verifying        : conmon-2:2.0.26-1.module_el8.4.0+2332+f4da7515    597/1027 
  Verifying        : container-selinux-2:2.167.0-1.module_el8.5.0+2    598/1027 
  Verifying        : container-selinux-2:2.158.0-1.module_el8.4.0+2    599/1027 
  Verifying        : containernetworking-plugins-1.0.0-1.module_el8    600/1027 
  Verifying        : containernetworking-plugins-0.9.1-1.module_el8    601/1027 
  Verifying        : containers-common-2:1-2.module_el8.5.0+2586+01    602/1027 
  Verifying        : containers-common-1:1.2.2-8.module_el8.4.0+233    603/1027 
  Verifying        : criu-3.15-3.module_el8.5.0+2586+018f24d7.x86_6    604/1027 
  Verifying        : criu-3.15-1.module_el8.4.0+2332+f4da7515.x86_6    605/1027 
  Verifying        : cups-1:2.2.6-40.el8.x86_64                        606/1027 
  Verifying        : cups-1:2.2.6-38.el8.x86_64                        607/1027 
  Verifying        : cups-client-1:2.2.6-40.el8.x86_64                 608/1027 
  Verifying        : cups-client-1:2.2.6-38.el8.x86_64                 609/1027 
  Verifying        : cups-filesystem-1:2.2.6-40.el8.noarch             610/1027 
  Verifying        : cups-filesystem-1:2.2.6-38.el8.noarch             611/1027 
  Verifying        : cups-filters-1.20.0-27.el8.x86_64                 612/1027 
  Verifying        : cups-filters-1.20.0-24.el8.x86_64                 613/1027 
  Verifying        : cups-filters-libs-1.20.0-27.el8.x86_64            614/1027 
  Verifying        : cups-filters-libs-1.20.0-24.el8.x86_64            615/1027 
  Verifying        : cups-ipptool-1:2.2.6-40.el8.x86_64                616/1027 
  Verifying        : cups-ipptool-1:2.2.6-38.el8.x86_64                617/1027 
  Verifying        : dbus-x11-1:1.12.8-14.el8.x86_64                   618/1027 
  Verifying        : dbus-x11-1:1.12.8-12.el8_4.2.x86_64               619/1027 
  Verifying        : dnsmasq-2.79-19.el8.x86_64                        620/1027 
  Verifying        : dnsmasq-2.79-15.el8.x86_64                        621/1027 
  Verifying        : edk2-ovmf-20210527gite1999b264f1f-3.el8.noarch    622/1027 
  Verifying        : edk2-ovmf-20200602gitca407c7246bf-4.el8.noarch    623/1027 
  Verifying        : evince-3.28.4-14.el8.x86_64                       624/1027 
  Verifying        : evince-3.28.4-11.el8.x86_64                       625/1027 
  Verifying        : evince-libs-3.28.4-14.el8.x86_64                  626/1027 
  Verifying        : evince-libs-3.28.4-11.el8.x86_64                  627/1027 
  Verifying        : evince-nautilus-3.28.4-14.el8.x86_64              628/1027 
  Verifying        : evince-nautilus-3.28.4-11.el8.x86_64              629/1027 
  Verifying        : evolution-data-server-3.28.5-17.el8.x86_64        630/1027 
  Verifying        : evolution-data-server-3.28.5-15.el8.x86_64        631/1027 
  Verifying        : evolution-data-server-langpacks-3.28.5-17.el8.    632/1027 
  Verifying        : evolution-data-server-langpacks-3.28.5-15.el8.    633/1027 
  Verifying        : exiv2-0.27.4-5.el8.x86_64                         634/1027 
  Verifying        : exiv2-0.27.3-2.el8.x86_64                         635/1027 
  Verifying        : exiv2-libs-0.27.4-5.el8.x86_64                    636/1027 
  Verifying        : exiv2-libs-0.27.3-2.el8.x86_64                    637/1027 
  Verifying        : file-roller-3.28.1-4.el8.x86_64                   638/1027 
  Verifying        : file-roller-3.28.1-3.el8.x86_64                   639/1027 
  Verifying        : firefox-91.5.0-1.el8_5.alma.x86_64                640/1027 
  Verifying        : firefox-78.10.0-1.el8_3.alma.x86_64               641/1027 
  Verifying        : flatpak-1.8.5-5.el8_5.x86_64                      642/1027 
  Verifying        : flatpak-1.8.5-3.el8.x86_64                        643/1027 
  Verifying        : flatpak-libs-1.8.5-5.el8_5.x86_64                 644/1027 
  Verifying        : flatpak-libs-1.8.5-3.el8.x86_64                   645/1027 
  Verifying        : flatpak-selinux-1.8.5-5.el8_5.noarch              646/1027 
  Verifying        : flatpak-selinux-1.8.5-3.el8.noarch                647/1027 
  Verifying        : flatpak-session-helper-1.8.5-5.el8_5.x86_64       648/1027 
  Verifying        : flatpak-session-helper-1.8.5-3.el8.x86_64         649/1027 
  Verifying        : freerdp-libs-2:2.2.0-7.el8_5.x86_64               650/1027 
  Verifying        : freerdp-libs-2:2.2.0-1.el8.x86_64                 651/1027 
  Verifying        : fstrm-0.6.1-2.el8.x86_64                          652/1027 
  Verifying        : fstrm-0.6.0-3.el8.1.x86_64                        653/1027 
  Verifying        : fuse-overlayfs-1.7.1-1.module_el8.5.0+2586+018    654/1027 
  Verifying        : fuse-overlayfs-1.4.0-2.module_el8.4.0+2332+f4d    655/1027 
  Verifying        : gdm-1:40.0-15.el8.x86_64                          656/1027 
  Verifying        : gdm-1:3.28.3-39.el8.x86_64                        657/1027 
  Verifying        : glusterfs-api-6.0-56.4.el8.x86_64                 658/1027 
  Verifying        : glusterfs-api-6.0-56.el8.x86_64                   659/1027 
  Verifying        : glusterfs-cli-6.0-56.4.el8.x86_64                 660/1027 
  Verifying        : glusterfs-cli-6.0-56.el8.x86_64                   661/1027 
  Verifying        : gnome-autoar-0.2.3-2.el8.x86_64                   662/1027 
  Verifying        : gnome-autoar-0.2.3-1.el8.x86_64                   663/1027 
  Verifying        : gnome-calculator-3.28.2-2.el8.x86_64              664/1027 
  Verifying        : gnome-calculator-3.28.2-1.el8.x86_64              665/1027 
  Verifying        : gnome-classic-session-3.32.1-22.el8_5.noarch      666/1027 
  Verifying        : gnome-classic-session-3.32.1-14.el8.noarch        667/1027 
  Verifying        : gnome-control-center-3.28.2-28.el8.x86_64         668/1027 
  Verifying        : gnome-control-center-3.28.2-27.el8.x86_64         669/1027 
  Verifying        : gnome-control-center-filesystem-3.28.2-28.el8.    670/1027 
  Verifying        : gnome-control-center-filesystem-3.28.2-27.el8.    671/1027 
  Verifying        : gnome-online-accounts-3.28.2-3.el8.x86_64         672/1027 
  Verifying        : gnome-online-accounts-3.28.2-2.el8.x86_64         673/1027 
  Verifying        : gnome-session-3.28.1-13.el8.x86_64                674/1027 
  Verifying        : gnome-session-3.28.1-10.el8.x86_64                675/1027 
  Verifying        : gnome-session-wayland-session-3.28.1-13.el8.x8    676/1027 
  Verifying        : gnome-session-wayland-session-3.28.1-10.el8.x8    677/1027 
  Verifying        : gnome-session-xsession-3.28.1-13.el8.x86_64       678/1027 
  Verifying        : gnome-session-xsession-3.28.1-10.el8.x86_64       679/1027 
  Verifying        : gnome-settings-daemon-3.32.0-16.el8.alma.x86_6    680/1027 
  Verifying        : gnome-settings-daemon-3.32.0-14.el8.alma.x86_6    681/1027 
  Verifying        : gnome-shell-3.32.2-40.el8.x86_64                  682/1027 
  Verifying        : gnome-shell-3.32.2-30.el8.x86_64                  683/1027 
  Verifying        : gnome-shell-extension-apps-menu-3.32.1-22.el8_    684/1027 
  Verifying        : gnome-shell-extension-apps-menu-3.32.1-14.el8.    685/1027 
  Verifying        : gnome-shell-extension-common-3.32.1-22.el8_5.n    686/1027 
  Verifying        : gnome-shell-extension-common-3.32.1-14.el8.noa    687/1027 
  Verifying        : gnome-shell-extension-desktop-icons-3.32.1-22.    688/1027 
  Verifying        : gnome-shell-extension-desktop-icons-3.32.1-14.    689/1027 
  Verifying        : gnome-shell-extension-horizontal-workspaces-3.    690/1027 
  Verifying        : gnome-shell-extension-horizontal-workspaces-3.    691/1027 
  Verifying        : gnome-shell-extension-launch-new-instance-3.32    692/1027 
  Verifying        : gnome-shell-extension-launch-new-instance-3.32    693/1027 
  Verifying        : gnome-shell-extension-places-menu-3.32.1-22.el    694/1027 
  Verifying        : gnome-shell-extension-places-menu-3.32.1-14.el    695/1027 
  Verifying        : gnome-shell-extension-window-list-3.32.1-22.el    696/1027 
  Verifying        : gnome-shell-extension-window-list-3.32.1-14.el    697/1027 
  Verifying        : gnome-software-3.36.1-10.el8.x86_64               698/1027 
  Verifying        : gnome-software-3.36.1-5.el8.x86_64                699/1027 
  Verifying        : grilo-0.3.6-3.el8.x86_64                          700/1027 
  Verifying        : grilo-0.3.6-2.el8.x86_64                          701/1027 
  Verifying        : gtk-update-icon-cache-3.22.30-8.el8.x86_64        702/1027 
  Verifying        : gtk-update-icon-cache-3.22.30-6.el8.x86_64        703/1027 
  Verifying        : gtk3-3.22.30-8.el8.x86_64                         704/1027 
  Verifying        : gtk3-3.22.30-6.el8.x86_64                         705/1027 
  Verifying        : gupnp-1.0.6-2.el8_4.x86_64                        706/1027 
  Verifying        : gupnp-1.0.6-1.el8.x86_64                          707/1027 
  Verifying        : hplip-common-3.18.4-9.el8.alma.x86_64             708/1027 
  Verifying        : hplip-common-3.18.4-9.el8.x86_64                  709/1027 
  Verifying        : hplip-libs-3.18.4-9.el8.alma.x86_64               710/1027 
  Verifying        : hplip-libs-3.18.4-9.el8.x86_64                    711/1027 
  Verifying        : ibus-1.5.19-14.el8_5.x86_64                       712/1027 
  Verifying        : ibus-1.5.19-12.el8.x86_64                         713/1027 
  Verifying        : ibus-gtk2-1.5.19-14.el8_5.x86_64                  714/1027 
  Verifying        : ibus-gtk2-1.5.19-12.el8.x86_64                    715/1027 
  Verifying        : ibus-gtk3-1.5.19-14.el8_5.x86_64                  716/1027 
  Verifying        : ibus-gtk3-1.5.19-12.el8.x86_64                    717/1027 
  Verifying        : ibus-libs-1.5.19-14.el8_5.x86_64                  718/1027 
  Verifying        : ibus-libs-1.5.19-12.el8.x86_64                    719/1027 
  Verifying        : ibus-setup-1.5.19-14.el8_5.noarch                 720/1027 
  Verifying        : ibus-setup-1.5.19-12.el8.noarch                   721/1027 
  Verifying        : jasper-libs-2.0.14-5.el8.x86_64                   722/1027 
  Verifying        : jasper-libs-2.0.14-4.el8.x86_64                   723/1027 
  Verifying        : libX11-1.6.8-5.el8.x86_64                         724/1027 
  Verifying        : libX11-1.6.8-4.el8.x86_64                         725/1027 
  Verifying        : libX11-common-1.6.8-5.el8.noarch                  726/1027 
  Verifying        : libX11-common-1.6.8-4.el8.noarch                  727/1027 
  Verifying        : libX11-xcb-1.6.8-5.el8.x86_64                     728/1027 
  Verifying        : libX11-xcb-1.6.8-4.el8.x86_64                     729/1027 
  Verifying        : libblockdev-2.24-7.el8.x86_64                     730/1027 
  Verifying        : libblockdev-2.24-5.el8.x86_64                     731/1027 
  Verifying        : libblockdev-crypto-2.24-7.el8.x86_64              732/1027 
  Verifying        : libblockdev-crypto-2.24-5.el8.x86_64              733/1027 
  Verifying        : libblockdev-dm-2.24-7.el8.x86_64                  734/1027 
  Verifying        : libblockdev-dm-2.24-5.el8.x86_64                  735/1027 
  Verifying        : libblockdev-fs-2.24-7.el8.x86_64                  736/1027 
  Verifying        : libblockdev-fs-2.24-5.el8.x86_64                  737/1027 
  Verifying        : libblockdev-kbd-2.24-7.el8.x86_64                 738/1027 
  Verifying        : libblockdev-kbd-2.24-5.el8.x86_64                 739/1027 
  Verifying        : libblockdev-loop-2.24-7.el8.x86_64                740/1027 
  Verifying        : libblockdev-loop-2.24-5.el8.x86_64                741/1027 
  Verifying        : libblockdev-lvm-2.24-7.el8.x86_64                 742/1027 
  Verifying        : libblockdev-lvm-2.24-5.el8.x86_64                 743/1027 
  Verifying        : libblockdev-mdraid-2.24-7.el8.x86_64              744/1027 
  Verifying        : libblockdev-mdraid-2.24-5.el8.x86_64              745/1027 
  Verifying        : libblockdev-mpath-2.24-7.el8.x86_64               746/1027 
  Verifying        : libblockdev-mpath-2.24-5.el8.x86_64               747/1027 
  Verifying        : libblockdev-nvdimm-2.24-7.el8.x86_64              748/1027 
  Verifying        : libblockdev-nvdimm-2.24-5.el8.x86_64              749/1027 
  Verifying        : libblockdev-part-2.24-7.el8.x86_64                750/1027 
  Verifying        : libblockdev-part-2.24-5.el8.x86_64                751/1027 
  Verifying        : libblockdev-swap-2.24-7.el8.x86_64                752/1027 
  Verifying        : libblockdev-swap-2.24-5.el8.x86_64                753/1027 
  Verifying        : libblockdev-utils-2.24-7.el8.x86_64               754/1027 
  Verifying        : libblockdev-utils-2.24-5.el8.x86_64               755/1027 
  Verifying        : libdrm-2.4.106-2.el8.x86_64                       756/1027 
  Verifying        : libdrm-2.4.103-1.el8.x86_64                       757/1027 
  Verifying        : libepoxy-1.5.8-1.el8.x86_64                       758/1027 
  Verifying        : libepoxy-1.5.3-1.el8.x86_64                       759/1027 
  Verifying        : libevdev-1.10.0-1.el8.x86_64                      760/1027 
  Verifying        : libevdev-1.8.0-1.el8.x86_64                       761/1027 
  Verifying        : libfastjson-0.99.9-1.el8.x86_64                   762/1027 
  Verifying        : libfastjson-0.99.8-2.el8.x86_64                   763/1027 
  Verifying        : libgweather-3.28.2-4.el8.x86_64                   764/1027 
  Verifying        : libgweather-3.28.2-3.el8.x86_64                   765/1027 
  Verifying        : libinput-1.16.3-2.el8.x86_64                      766/1027 
  Verifying        : libinput-1.16.3-1.el8.x86_64                      767/1027 
  Verifying        : libiscsi-1.18.0-8.module_el8.5.0+2608+72063365    768/1027 
  Verifying        : libiscsi-1.18.0-8.module_el8.3.0+2048+e7a0a3ea    769/1027 
  Verifying        : libjpeg-turbo-1.5.3-12.el8.x86_64                 770/1027 
  Verifying        : libjpeg-turbo-1.5.3-10.el8.x86_64                 771/1027 
  Verifying        : libnma-1.8.32-1.el8.x86_64                        772/1027 
  Verifying        : libnma-1.8.30-2.el8.x86_64                        773/1027 
  Verifying        : librelp-1.9.0-1.el8.x86_64                        774/1027 
  Verifying        : librelp-1.2.16-1.el8.x86_64                       775/1027 
  Verifying        : libsane-hpaio-3.18.4-9.el8.alma.x86_64            776/1027 
  Verifying        : libsane-hpaio-3.18.4-9.el8.x86_64                 777/1027 
  Verifying        : libslirp-4.4.0-1.module_el8.5.0+2586+018f24d7.    778/1027 
  Verifying        : libslirp-4.3.1-1.module_el8.4.0+2332+f4da7515.    779/1027 
  Verifying        : libsndfile-1.0.28-10.el8_4.1.x86_64               780/1027 
  Verifying        : libsndfile-1.0.28-10.el8.x86_64                   781/1027 
  Verifying        : libtiff-4.0.9-20.el8.x86_64                       782/1027 
  Verifying        : libtiff-4.0.9-18.el8.x86_64                       783/1027 
  Verifying        : libudisks2-2.9.0-7.el8.x86_64                     784/1027 
  Verifying        : libudisks2-2.9.0-6.el8.x86_64                     785/1027 
  Verifying        : libvirt-daemon-6.0.0-37.module_el8.5.0+2608+72    786/1027 
  Verifying        : libvirt-daemon-6.0.0-35.module_el8.4.0+2358+63    787/1027 
  Verifying        : libvirt-daemon-config-network-6.0.0-37.module_    788/1027 
  Verifying        : libvirt-daemon-config-network-6.0.0-35.module_    789/1027 
  Verifying        : libvirt-daemon-driver-interface-6.0.0-37.modul    790/1027 
  Verifying        : libvirt-daemon-driver-interface-6.0.0-35.modul    791/1027 
  Verifying        : libvirt-daemon-driver-network-6.0.0-37.module_    792/1027 
  Verifying        : libvirt-daemon-driver-network-6.0.0-35.module_    793/1027 
  Verifying        : libvirt-daemon-driver-nodedev-6.0.0-37.module_    794/1027 
  Verifying        : libvirt-daemon-driver-nodedev-6.0.0-35.module_    795/1027 
  Verifying        : libvirt-daemon-driver-nwfilter-6.0.0-37.module    796/1027 
  Verifying        : libvirt-daemon-driver-nwfilter-6.0.0-35.module    797/1027 
  Verifying        : libvirt-daemon-driver-qemu-6.0.0-37.module_el8    798/1027 
  Verifying        : libvirt-daemon-driver-qemu-6.0.0-35.module_el8    799/1027 
  Verifying        : libvirt-daemon-driver-secret-6.0.0-37.module_e    800/1027 
  Verifying        : libvirt-daemon-driver-secret-6.0.0-35.module_e    801/1027 
  Verifying        : libvirt-daemon-driver-storage-6.0.0-37.module_    802/1027 
  Verifying        : libvirt-daemon-driver-storage-6.0.0-35.module_    803/1027 
  Verifying        : libvirt-daemon-driver-storage-core-6.0.0-37.mo    804/1027 
  Verifying        : libvirt-daemon-driver-storage-core-6.0.0-35.mo    805/1027 
  Verifying        : libvirt-daemon-driver-storage-disk-6.0.0-37.mo    806/1027 
  Verifying        : libvirt-daemon-driver-storage-disk-6.0.0-35.mo    807/1027 
  Verifying        : libvirt-daemon-driver-storage-gluster-6.0.0-37    808/1027 
  Verifying        : libvirt-daemon-driver-storage-gluster-6.0.0-35    809/1027 
  Verifying        : libvirt-daemon-driver-storage-iscsi-6.0.0-37.m    810/1027 
  Verifying        : libvirt-daemon-driver-storage-iscsi-6.0.0-35.m    811/1027 
  Verifying        : libvirt-daemon-driver-storage-iscsi-direct-6.0    812/1027 
  Verifying        : libvirt-daemon-driver-storage-iscsi-direct-6.0    813/1027 
  Verifying        : libvirt-daemon-driver-storage-logical-6.0.0-37    814/1027 
  Verifying        : libvirt-daemon-driver-storage-logical-6.0.0-35    815/1027 
  Verifying        : libvirt-daemon-driver-storage-mpath-6.0.0-37.m    816/1027 
  Verifying        : libvirt-daemon-driver-storage-mpath-6.0.0-35.m    817/1027 
  Verifying        : libvirt-daemon-driver-storage-rbd-6.0.0-37.mod    818/1027 
  Verifying        : libvirt-daemon-driver-storage-rbd-6.0.0-35.mod    819/1027 
  Verifying        : libvirt-daemon-driver-storage-scsi-6.0.0-37.mo    820/1027 
  Verifying        : libvirt-daemon-driver-storage-scsi-6.0.0-35.mo    821/1027 
  Verifying        : libvirt-daemon-kvm-6.0.0-37.module_el8.5.0+260    822/1027 
  Verifying        : libvirt-daemon-kvm-6.0.0-35.module_el8.4.0+235    823/1027 
  Verifying        : libvirt-libs-6.0.0-37.module_el8.5.0+2608+7206    824/1027 
  Verifying        : libvirt-libs-6.0.0-35.module_el8.4.0+2358+630e    825/1027 
  Verifying        : libwacom-1.6-3.el8.x86_64                         826/1027 
  Verifying        : libwacom-1.6-2.el8.x86_64                         827/1027 
  Verifying        : libwacom-data-1.6-3.el8.noarch                    828/1027 
  Verifying        : libwacom-data-1.6-2.el8.noarch                    829/1027 
  Verifying        : libwayland-client-1.19.0-1.el8.x86_64             830/1027 
  Verifying        : libwayland-client-1.17.0-1.el8.x86_64             831/1027 
  Verifying        : libwayland-cursor-1.19.0-1.el8.x86_64             832/1027 
  Verifying        : libwayland-cursor-1.17.0-1.el8.x86_64             833/1027 
  Verifying        : libwayland-egl-1.19.0-1.el8.x86_64                834/1027 
  Verifying        : libwayland-egl-1.17.0-1.el8.x86_64                835/1027 
  Verifying        : libwayland-server-1.19.0-1.el8.x86_64             836/1027 
  Verifying        : libwayland-server-1.17.0-1.el8.x86_64             837/1027 
  Verifying        : libwebp-1.0.0-5.el8.x86_64                        838/1027 
  Verifying        : libwebp-1.0.0-1.el8.x86_64                        839/1027 
  Verifying        : libwinpr-2:2.2.0-7.el8_5.x86_64                   840/1027 
  Verifying        : libwinpr-2:2.2.0-1.el8.x86_64                     841/1027 
  Verifying        : llvm-libs-12.0.1-2.module_el8.5.0+2598+6a7729f    842/1027 
  Verifying        : llvm-libs-11.0.0-2.module_el8.4.0+2107+39fed69    843/1027 
  Verifying        : lua-5.3.4-12.el8.x86_64                           844/1027 
  Verifying        : lua-5.3.4-11.el8.x86_64                           845/1027 
  Verifying        : man-pages-overrides-8.5.0.1-1.el8.noarch          846/1027 
  Verifying        : man-pages-overrides-8.3.0.2-2.el8.noarch          847/1027 
  Verifying        : mesa-dri-drivers-21.1.5-1.el8.x86_64              848/1027 
  Verifying        : mesa-dri-drivers-20.3.3-2.el8.x86_64              849/1027 
  Verifying        : mesa-filesystem-21.1.5-1.el8.x86_64               850/1027 
  Verifying        : mesa-filesystem-20.3.3-2.el8.x86_64               851/1027 
  Verifying        : mesa-libEGL-21.1.5-1.el8.x86_64                   852/1027 
  Verifying        : mesa-libEGL-20.3.3-2.el8.x86_64                   853/1027 
  Verifying        : mesa-libGL-21.1.5-1.el8.x86_64                    854/1027 
  Verifying        : mesa-libGL-20.3.3-2.el8.x86_64                    855/1027 
  Verifying        : mesa-libgbm-21.1.5-1.el8.x86_64                   856/1027 
  Verifying        : mesa-libgbm-20.3.3-2.el8.x86_64                   857/1027 
  Verifying        : mesa-libglapi-21.1.5-1.el8.x86_64                 858/1027 
  Verifying        : mesa-libglapi-20.3.3-2.el8.x86_64                 859/1027 
  Verifying        : mesa-libxatracker-21.1.5-1.el8.x86_64             860/1027 
  Verifying        : mesa-libxatracker-20.3.3-2.el8.x86_64             861/1027 
  Verifying        : mutter-3.32.2-60.el8.x86_64                       862/1027 
  Verifying        : mutter-3.32.2-57.el8.x86_64                       863/1027 
  Verifying        : netcf-libs-0.2.8-12.module_el8.5.0+2608+720633    864/1027 
  Verifying        : netcf-libs-0.2.8-12.module_el8.3.0+2048+e7a0a3    865/1027 
  Verifying        : nm-connection-editor-1.18.0-3.el8.x86_64          866/1027 
  Verifying        : nm-connection-editor-1.18.0-2.el8.x86_64          867/1027 
  Verifying        : nmap-ncat-2:7.70-6.el8.x86_64                     868/1027 
  Verifying        : nmap-ncat-2:7.70-5.el8.x86_64                     869/1027 
  Verifying        : nspr-4.32.0-1.el8_4.x86_64                        870/1027 
  Verifying        : nspr-4.25.0-2.el8_2.x86_64                        871/1027 
  Verifying        : nss-3.67.0-7.el8_5.x86_64                         872/1027 
  Verifying        : nss-3.53.1-17.el8_3.x86_64                        873/1027 
  Verifying        : nss-softokn-3.67.0-7.el8_5.x86_64                 874/1027 
  Verifying        : nss-softokn-3.53.1-17.el8_3.x86_64                875/1027 
  Verifying        : nss-softokn-freebl-3.67.0-7.el8_5.x86_64          876/1027 
  Verifying        : nss-softokn-freebl-3.53.1-17.el8_3.x86_64         877/1027 
  Verifying        : nss-sysinit-3.67.0-7.el8_5.x86_64                 878/1027 
  Verifying        : nss-sysinit-3.53.1-17.el8_3.x86_64                879/1027 
  Verifying        : nss-util-3.67.0-7.el8_5.x86_64                    880/1027 
  Verifying        : nss-util-3.53.1-17.el8_3.x86_64                   881/1027 
  Verifying        : open-vm-tools-11.2.5-2.el8.x86_64                 882/1027 
  Verifying        : open-vm-tools-11.2.0-2.el8.x86_64                 883/1027 
  Verifying        : open-vm-tools-desktop-11.2.5-2.el8.x86_64         884/1027 
  Verifying        : open-vm-tools-desktop-11.2.0-2.el8.x86_64         885/1027 
  Verifying        : openjpeg2-2.4.0-4.el8.x86_64                      886/1027 
  Verifying        : openjpeg2-2.3.1-6.el8.x86_64                      887/1027 
  Verifying        : openssh-askpass-8.0p1-10.el8.x86_64               888/1027 
  Verifying        : openssh-askpass-8.0p1-6.el8_4.2.x86_64            889/1027 
  Verifying        : osinfo-db-20210903-1.el8.noarch                   890/1027 
  Verifying        : osinfo-db-20210215-1.el8.alma.noarch              891/1027 
  Verifying        : ostree-2021.3-1.el8.x86_64                        892/1027 
  Verifying        : ostree-2020.7-4.el8.x86_64                        893/1027 
  Verifying        : ostree-libs-2021.3-1.el8.x86_64                   894/1027 
  Verifying        : ostree-libs-2020.7-4.el8.x86_64                   895/1027 
  Verifying        : pango-1.42.4-8.el8.x86_64                         896/1027 
  Verifying        : pango-1.42.4-6.el8.x86_64                         897/1027 
  Verifying        : plymouth-0.9.4-10.20200615git1e36e30.el8.x86_6    898/1027 
  Verifying        : plymouth-0.9.4-9.20200615git1e36e30.el8.x86_64    899/1027 
  Verifying        : plymouth-core-libs-0.9.4-10.20200615git1e36e30    900/1027 
  Verifying        : plymouth-core-libs-0.9.4-9.20200615git1e36e30.    901/1027 
  Verifying        : plymouth-graphics-libs-0.9.4-10.20200615git1e3    902/1027 
  Verifying        : plymouth-graphics-libs-0.9.4-9.20200615git1e36    903/1027 
  Verifying        : plymouth-plugin-label-0.9.4-10.20200615git1e36    904/1027 
  Verifying        : plymouth-plugin-label-0.9.4-9.20200615git1e36e    905/1027 
  Verifying        : plymouth-plugin-two-step-0.9.4-10.20200615git1    906/1027 
  Verifying        : plymouth-plugin-two-step-0.9.4-9.20200615git1e    907/1027 
  Verifying        : plymouth-scripts-0.9.4-10.20200615git1e36e30.e    908/1027 
  Verifying        : plymouth-scripts-0.9.4-9.20200615git1e36e30.el    909/1027 
  Verifying        : plymouth-system-theme-0.9.4-10.20200615git1e36    910/1027 
  Verifying        : plymouth-system-theme-0.9.4-9.20200615git1e36e    911/1027 
  Verifying        : plymouth-theme-charge-0.9.4-10.20200615git1e36    912/1027 
  Verifying        : plymouth-theme-charge-0.9.4-9.20200615git1e36e    913/1027 
  Verifying        : plymouth-theme-spinner-0.9.4-10.20200615git1e3    914/1027 
  Verifying        : plymouth-theme-spinner-0.9.4-9.20200615git1e36    915/1027 
  Verifying        : podman-3.3.1-9.module_el8.5.0+2586+018f24d7.x8    916/1027 
  Verifying        : podman-3.0.1-6.module_el8.4.0+2332+f4da7515.x8    917/1027 
  Verifying        : podman-catatonit-3.3.1-9.module_el8.5.0+2586+0    918/1027 
  Verifying        : podman-catatonit-3.0.1-6.module_el8.4.0+2332+f    919/1027 
  Verifying        : poppler-20.11.0-3.el8_5.1.x86_64                  920/1027 
  Verifying        : poppler-20.11.0-2.el8.x86_64                      921/1027 
  Verifying        : poppler-glib-20.11.0-3.el8_5.1.x86_64             922/1027 
  Verifying        : poppler-glib-20.11.0-2.el8.x86_64                 923/1027 
  Verifying        : poppler-utils-20.11.0-3.el8_5.1.x86_64            924/1027 
  Verifying        : poppler-utils-20.11.0-2.el8.x86_64                925/1027 
  Verifying        : python3-bind-32:9.11.26-6.el8.noarch              926/1027 
  Verifying        : python3-bind-32:9.11.26-4.el8_4.noarch            927/1027 
  Verifying        : python3-blivet-1:3.4.0-6.el8.noarch               928/1027 
  Verifying        : python3-blivet-1:3.2.2-10.el8.noarch              929/1027 
  Verifying        : python3-blockdev-2.24-7.el8.x86_64                930/1027 
  Verifying        : python3-blockdev-2.24-5.el8.x86_64                931/1027 
  Verifying        : python3-kickstart-3.16.14-1.el8.noarch            932/1027 
  Verifying        : python3-kickstart-3.16.11-1.el8.noarch            933/1027 
  Verifying        : python3-lxml-4.2.3-3.el8.x86_64                   934/1027 
  Verifying        : python3-lxml-4.2.3-2.el8.x86_64                   935/1027 
  Verifying        : python3-pip-9.0.3-20.el8.noarch                   936/1027 
  Verifying        : python3-pip-9.0.3-19.el8.noarch                   937/1027 
  Verifying        : python3-psutil-5.4.3-11.el8.x86_64                938/1027 
  Verifying        : python3-psutil-5.4.3-10.el8.x86_64                939/1027 
  Verifying        : python3-pyparted-1:3.11.7-4.el8.x86_64            940/1027 
  Verifying        : python3-pyparted-1:3.11.0-13.el8.x86_64           941/1027 
  Verifying        : python3-unbound-1.7.3-17.el8.x86_64               942/1027 
  Verifying        : python3-unbound-1.7.3-15.el8.x86_64               943/1027 
  Verifying        : python36-3.6.8-38.module_el8.5.0+2569+5c5719bc    944/1027 
  Verifying        : python36-3.6.8-2.module_el8.3.0+6191+6b4b10ec.    945/1027 
  Verifying        : qemu-guest-agent-15:4.2.0-59.module_el8.5.0+26    946/1027 
  Verifying        : qemu-guest-agent-15:4.2.0-48.module_el8.4.0+23    947/1027 
  Verifying        : qemu-img-15:4.2.0-59.module_el8.5.0+2608+72063    948/1027 
  Verifying        : qemu-img-15:4.2.0-48.module_el8.4.0+2358+630e8    949/1027 
  Verifying        : qemu-kvm-15:4.2.0-59.module_el8.5.0+2608+72063    950/1027 
  Verifying        : qemu-kvm-15:4.2.0-48.module_el8.4.0+2358+630e8    951/1027 
  Verifying        : qemu-kvm-block-curl-15:4.2.0-59.module_el8.5.0    952/1027 
  Verifying        : qemu-kvm-block-curl-15:4.2.0-48.module_el8.4.0    953/1027 
  Verifying        : qemu-kvm-block-gluster-15:4.2.0-59.module_el8.    954/1027 
  Verifying        : qemu-kvm-block-gluster-15:4.2.0-48.module_el8.    955/1027 
  Verifying        : qemu-kvm-block-iscsi-15:4.2.0-59.module_el8.5.    956/1027 
  Verifying        : qemu-kvm-block-iscsi-15:4.2.0-48.module_el8.4.    957/1027 
  Verifying        : qemu-kvm-block-rbd-15:4.2.0-59.module_el8.5.0+    958/1027 
  Verifying        : qemu-kvm-block-rbd-15:4.2.0-48.module_el8.4.0+    959/1027 
  Verifying        : qemu-kvm-block-ssh-15:4.2.0-59.module_el8.5.0+    960/1027 
  Verifying        : qemu-kvm-block-ssh-15:4.2.0-48.module_el8.4.0+    961/1027 
  Verifying        : qemu-kvm-common-15:4.2.0-59.module_el8.5.0+260    962/1027 
  Verifying        : qemu-kvm-common-15:4.2.0-48.module_el8.4.0+235    963/1027 
  Verifying        : qemu-kvm-core-15:4.2.0-59.module_el8.5.0+2608+    964/1027 
  Verifying        : qemu-kvm-core-15:4.2.0-48.module_el8.4.0+2358+    965/1027 
  Verifying        : rsyslog-8.2102.0-5.el8.x86_64                     966/1027 
  Verifying        : rsyslog-8.1911.0-7.el8.x86_64                     967/1027 
  Verifying        : rsyslog-gnutls-8.2102.0-5.el8.x86_64              968/1027 
  Verifying        : rsyslog-gnutls-8.1911.0-7.el8.x86_64              969/1027 
  Verifying        : rsyslog-gssapi-8.2102.0-5.el8.x86_64              970/1027 
  Verifying        : rsyslog-gssapi-8.1911.0-7.el8.x86_64              971/1027 
  Verifying        : rsyslog-relp-8.2102.0-5.el8.x86_64                972/1027 
  Verifying        : rsyslog-relp-8.1911.0-7.el8.x86_64                973/1027 
  Verifying        : runc-1.0.2-1.module_el8.5.0+2586+018f24d7.x86_    974/1027 
  Verifying        : runc-1.0.0-70.rc92.module_el8.4.0+2332+f4da751    975/1027 
  Verifying        : seabios-bin-1.13.0-2.module_el8.5.0+2608+72063    976/1027 
  Verifying        : seabios-bin-1.13.0-2.module_el8.3.0+2048+e7a0a    977/1027 
  Verifying        : seavgabios-bin-1.13.0-2.module_el8.5.0+2608+72    978/1027 
  Verifying        : seavgabios-bin-1.13.0-2.module_el8.3.0+2048+e7    979/1027 
  Verifying        : setroubleshoot-plugins-3.3.14-1.el8.noarch        980/1027 
  Verifying        : setroubleshoot-plugins-3.3.13-1.el8.noarch        981/1027 
  Verifying        : setroubleshoot-server-3.3.24-4.el8.x86_64         982/1027 
  Verifying        : setroubleshoot-server-3.3.24-3.el8.x86_64         983/1027 
  Verifying        : sgabios-bin-1:0.20170427git-3.module_el8.5.0+2    984/1027 
  Verifying        : sgabios-bin-1:0.20170427git-3.module_el8.3.0+2    985/1027 
  Verifying        : sil-nuosu-fonts-2.200-2.el8.noarch                986/1027 
  Verifying        : sil-nuosu-fonts-2.1.1-14.el8.noarch               987/1027 
  Verifying        : slirp4netns-1.1.8-1.module_el8.5.0+2586+018f24    988/1027 
  Verifying        : slirp4netns-1.1.8-1.module_el8.4.0+2332+f4da75    989/1027 
  Verifying        : tcpdump-14:4.9.3-2.el8.x86_64                     990/1027 
  Verifying        : tcpdump-14:4.9.3-1.el8.x86_64                     991/1027 
  Verifying        : tigervnc-license-1.11.0-9.el8.noarch              992/1027 
  Verifying        : tigervnc-license-1.11.0-6.el8.noarch              993/1027 
  Verifying        : tigervnc-server-minimal-1.11.0-9.el8.x86_64       994/1027 
  Verifying        : tigervnc-server-minimal-1.11.0-6.el8.x86_64       995/1027 
  Verifying        : udisks2-2.9.0-7.el8.x86_64                        996/1027 
  Verifying        : udisks2-2.9.0-6.el8.x86_64                        997/1027 
  Verifying        : udisks2-iscsi-2.9.0-7.el8.x86_64                  998/1027 
  Verifying        : udisks2-iscsi-2.9.0-6.el8.x86_64                  999/1027 
  Verifying        : udisks2-lvm2-2.9.0-7.el8.x86_64                  1000/1027 
  Verifying        : udisks2-lvm2-2.9.0-6.el8.x86_64                  1001/1027 
  Verifying        : unbound-libs-1.7.3-17.el8.x86_64                 1002/1027 
  Verifying        : unbound-libs-1.7.3-15.el8.x86_64                 1003/1027 
  Verifying        : vim-common-2:8.0.1763-16.el8.x86_64              1004/1027 
  Verifying        : vim-common-2:8.0.1763-15.el8.x86_64              1005/1027 
  Verifying        : vim-enhanced-2:8.0.1763-16.el8.x86_64            1006/1027 
  Verifying        : vim-enhanced-2:8.0.1763-15.el8.x86_64            1007/1027 
  Verifying        : vim-filesystem-2:8.0.1763-16.el8.noarch          1008/1027 
  Verifying        : vim-filesystem-2:8.0.1763-15.el8.noarch          1009/1027 
  Verifying        : vino-3.22.0-11.el8.x86_64                        1010/1027 
  Verifying        : vino-3.22.0-10.el8.x86_64                        1011/1027 
  Verifying        : webkit2gtk3-2.32.3-2.el8.x86_64                  1012/1027 
  Verifying        : webkit2gtk3-2.30.4-1.el8.x86_64                  1013/1027 
  Verifying        : webkit2gtk3-jsc-2.32.3-2.el8.x86_64              1014/1027 
  Verifying        : webkit2gtk3-jsc-2.30.4-1.el8.x86_64              1015/1027 
  Verifying        : xdg-desktop-portal-1.6.0-5.el8.x86_64            1016/1027 
  Verifying        : xdg-desktop-portal-1.6.0-4.el8.x86_64            1017/1027 
  Verifying        : xorg-x11-font-utils-1:7.5-41.el8.x86_64          1018/1027 
  Verifying        : xorg-x11-font-utils-1:7.5-40.el8.x86_64          1019/1027 
  Verifying        : xorg-x11-server-Xorg-1.20.11-2.el8.x86_64        1020/1027 
  Verifying        : xorg-x11-server-Xorg-1.20.10-1.el8.x86_64        1021/1027 
  Verifying        : xorg-x11-server-Xwayland-21.1.1-6.el8.x86_64     1022/1027 
  Verifying        : xorg-x11-server-Xwayland-1.20.10-1.el8.x86_64    1023/1027 
  Verifying        : xorg-x11-server-common-1.20.11-2.el8.x86_64      1024/1027 
  Verifying        : xorg-x11-server-common-1.20.10-1.el8.x86_64      1025/1027 
  Verifying        : epel-release-8-13.el8.noarch                     1026/1027 
  Verifying        : epel-release-8-10.el8.noarch                     1027/1027 

Upgraded:
  ModemManager-1.10.8-4.el8.x86_64                                              
  ModemManager-glib-1.10.8-4.el8.x86_64                                         
  NetworkManager-1:1.32.10-4.el8.x86_64                                         
  NetworkManager-adsl-1:1.32.10-4.el8.x86_64                                    
  NetworkManager-bluetooth-1:1.32.10-4.el8.x86_64                               
  NetworkManager-config-server-1:1.32.10-4.el8.noarch                           
  NetworkManager-libnm-1:1.32.10-4.el8.x86_64                                   
  NetworkManager-team-1:1.32.10-4.el8.x86_64                                    
  NetworkManager-tui-1:1.32.10-4.el8.x86_64                                     
  NetworkManager-wifi-1:1.32.10-4.el8.x86_64                                    
  NetworkManager-wwan-1:1.32.10-4.el8.x86_64                                    
  accountsservice-0.6.55-2.el8_5.2.x86_64                                       
  accountsservice-libs-0.6.55-2.el8_5.2.x86_64                                  
  adcli-0.8.2-12.el8.x86_64                                                     
  almalinux-backgrounds-84.5-1.el8.noarch                                       
  almalinux-logos-84.5-1.el8.x86_64                                             
  almalinux-release-8.5-4.el8.x86_64                                            
  alsa-lib-1.2.5-4.el8.x86_64                                                   
  alsa-ucm-1.2.5-4.el8.noarch                                                   
  alsa-utils-1.2.5-3.el8.x86_64                                                 
  anaconda-core-33.16.5.6-1.el8.alma.x86_64                                     
  anaconda-gui-33.16.5.6-1.el8.alma.x86_64                                      
  anaconda-tui-33.16.5.6-1.el8.alma.x86_64                                      
  anaconda-widgets-33.16.5.6-1.el8.alma.x86_64                                  
  authselect-1.2.2-3.el8.x86_64                                                 
  authselect-compat-1.2.2-3.el8.x86_64                                          
  authselect-libs-1.2.2-3.el8.x86_64                                            
  bash-4.4.20-2.el8.x86_64                                                      
  bind-export-libs-32:9.11.26-6.el8.x86_64                                      
  bind-libs-32:9.11.26-6.el8.x86_64                                             
  bind-libs-lite-32:9.11.26-6.el8.x86_64                                        
  bind-license-32:9.11.26-6.el8.noarch                                          
  bind-utils-32:9.11.26-6.el8.x86_64                                            
  binutils-2.30-108.el8_5.1.x86_64                                              
  blivet-data-1:3.4.0-6.el8.noarch                                              
  bluez-5.56-2.el8.alma.x86_64                                                  
  bluez-libs-5.56-2.el8.alma.x86_64                                             
  bluez-obexd-5.56-2.el8.alma.x86_64                                            
  bpftool-4.18.0-348.12.2.el8_5.x86_64                                          
  buildah-1.22.3-2.module_el8.5.0+2586+018f24d7.x86_64                          
  ca-certificates-2021.2.50-80.0.el8_4.noarch                                   
  chkconfig-1.19.1-1.el8.x86_64                                                 
  chrony-4.1-1.el8.alma.x86_64                                                  
  cockpit-251.1-1.el8.x86_64                                                    
  cockpit-bridge-251.1-1.el8.x86_64                                             
  cockpit-packagekit-251.1-1.el8.noarch                                         
  cockpit-podman-33-1.module_el8.5.0+2586+018f24d7.noarch                       
  cockpit-storaged-251.1-1.el8.noarch                                           
  cockpit-system-251.1-1.el8.noarch                                             
  cockpit-ws-251.1-1.el8.x86_64                                                 
  compat-exiv2-026-0.26-6.el8.x86_64                                            
  conmon-2:2.0.29-1.module_el8.5.0+2586+018f24d7.x86_64                         
  container-selinux-2:2.167.0-1.module_el8.5.0+2586+018f24d7.noarch             
  containernetworking-plugins-1.0.0-1.module_el8.5.0+2586+018f24d7.x86_64       
  containers-common-2:1-2.module_el8.5.0+2586+018f24d7.noarch                   
  coreutils-8.30-12.el8.x86_64                                                  
  coreutils-common-8.30-12.el8.x86_64                                           
  criu-3.15-3.module_el8.5.0+2586+018f24d7.x86_64                               
  crypto-policies-20210617-1.gitc776d3e.el8.noarch                              
  crypto-policies-scripts-20210617-1.gitc776d3e.el8.noarch                      
  cups-1:2.2.6-40.el8.x86_64                                                    
  cups-client-1:2.2.6-40.el8.x86_64                                             
  cups-filesystem-1:2.2.6-40.el8.noarch                                         
  cups-filters-1.20.0-27.el8.x86_64                                             
  cups-filters-libs-1.20.0-27.el8.x86_64                                        
  cups-ipptool-1:2.2.6-40.el8.x86_64                                            
  cups-libs-1:2.2.6-40.el8.x86_64                                               
  curl-7.61.1-22.el8.x86_64                                                     
  dbus-1:1.12.8-14.el8.x86_64                                                   
  dbus-common-1:1.12.8-14.el8.noarch                                            
  dbus-daemon-1:1.12.8-14.el8.x86_64                                            
  dbus-libs-1:1.12.8-14.el8.x86_64                                              
  dbus-tools-1:1.12.8-14.el8.x86_64                                             
  dbus-x11-1:1.12.8-14.el8.x86_64                                               
  device-mapper-8:1.02.177-10.el8.x86_64                                        
  device-mapper-event-8:1.02.177-10.el8.x86_64                                  
  device-mapper-event-libs-8:1.02.177-10.el8.x86_64                             
  device-mapper-libs-8:1.02.177-10.el8.x86_64                                   
  device-mapper-multipath-0.8.4-17.el8.x86_64                                   
  device-mapper-multipath-libs-0.8.4-17.el8.x86_64                              
  device-mapper-persistent-data-0.9.0-4.el8.x86_64                              
  dhcp-client-12:4.3.6-45.el8.x86_64                                            
  dhcp-common-12:4.3.6-45.el8.noarch                                            
  dhcp-libs-12:4.3.6-45.el8.x86_64                                              
  dmidecode-1:3.2-10.el8.x86_64                                                 
  dnf-4.7.0-4.el8.noarch                                                        
  dnf-data-4.7.0-4.el8.noarch                                                   
  dnf-plugins-core-4.0.21-3.el8.noarch                                          
  dnsmasq-2.79-19.el8.x86_64                                                    
  dracut-049-191.git20210920.el8.x86_64                                         
  dracut-config-rescue-049-191.git20210920.el8.x86_64                           
  dracut-network-049-191.git20210920.el8.x86_64                                 
  dracut-squash-049-191.git20210920.el8.x86_64                                  
  e2fsprogs-1.45.6-2.el8.x86_64                                                 
  e2fsprogs-libs-1.45.6-2.el8.x86_64                                            
  edk2-ovmf-20210527gite1999b264f1f-3.el8.noarch                                
  efibootmgr-16-1.el8.0.1.x86_64                                                
  elfutils-debuginfod-client-0.185-1.el8.x86_64                                 
  elfutils-default-yama-scope-0.185-1.el8.noarch                                
  emacs-filesystem-1:26.1-7.el8.noarch                                          
  epel-release-8-13.el8.noarch                                                  
  ethtool-2:5.8-7.el8.x86_64                                                    
  evince-3.28.4-14.el8.x86_64                                                   
  evince-libs-3.28.4-14.el8.x86_64                                              
  evince-nautilus-3.28.4-14.el8.x86_64                                          
  evolution-data-server-3.28.5-17.el8.x86_64                                    
  evolution-data-server-langpacks-3.28.5-17.el8.noarch                          
  exiv2-0.27.4-5.el8.x86_64                                                     
  exiv2-libs-0.27.4-5.el8.x86_64                                                
  file-5.33-20.el8.x86_64                                                       
  file-libs-5.33-20.el8.x86_64                                                  
  file-roller-3.28.1-4.el8.x86_64                                               
  filesystem-3.8-6.el8.x86_64                                                   
  firefox-91.5.0-1.el8_5.alma.x86_64                                            
  firewalld-0.9.3-7.el8.noarch                                                  
  firewalld-filesystem-0.9.3-7.el8.noarch                                       
  flatpak-1.8.5-5.el8_5.x86_64                                                  
  flatpak-libs-1.8.5-5.el8_5.x86_64                                             
  flatpak-selinux-1.8.5-5.el8_5.noarch                                          
  flatpak-session-helper-1.8.5-5.el8_5.x86_64                                   
  fontconfig-2.13.1-4.el8.x86_64                                                
  freerdp-libs-2:2.2.0-7.el8_5.x86_64                                           
  fstrm-0.6.1-2.el8.x86_64                                                      
  fuse-overlayfs-1.7.1-1.module_el8.5.0+2586+018f24d7.x86_64                    
  fwupd-1.5.9-1.el8_4.alma.x86_64                                               
  gdm-1:40.0-15.el8.x86_64                                                      
  glib2-2.56.4-156.el8.x86_64                                                   
  glusterfs-6.0-56.4.el8.x86_64                                                 
  glusterfs-api-6.0-56.4.el8.x86_64                                             
  glusterfs-cli-6.0-56.4.el8.x86_64                                             
  glusterfs-client-xlators-6.0-56.4.el8.x86_64                                  
  glusterfs-libs-6.0-56.4.el8.x86_64                                            
  gnome-autoar-0.2.3-2.el8.x86_64                                               
  gnome-calculator-3.28.2-2.el8.x86_64                                          
  gnome-classic-session-3.32.1-22.el8_5.noarch                                  
  gnome-control-center-3.28.2-28.el8.x86_64                                     
  gnome-control-center-filesystem-3.28.2-28.el8.noarch                          
  gnome-online-accounts-3.28.2-3.el8.x86_64                                     
  gnome-session-3.28.1-13.el8.x86_64                                            
  gnome-session-wayland-session-3.28.1-13.el8.x86_64                            
  gnome-session-xsession-3.28.1-13.el8.x86_64                                   
  gnome-settings-daemon-3.32.0-16.el8.alma.x86_64                               
  gnome-shell-3.32.2-40.el8.x86_64                                              
  gnome-shell-extension-apps-menu-3.32.1-22.el8_5.noarch                        
  gnome-shell-extension-common-3.32.1-22.el8_5.noarch                           
  gnome-shell-extension-desktop-icons-3.32.1-22.el8_5.noarch                    
  gnome-shell-extension-horizontal-workspaces-3.32.1-22.el8_5.noarch            
  gnome-shell-extension-launch-new-instance-3.32.1-22.el8_5.noarch              
  gnome-shell-extension-places-menu-3.32.1-22.el8_5.noarch                      
  gnome-shell-extension-window-list-3.32.1-22.el8_5.noarch                      
  gnome-software-3.36.1-10.el8.x86_64                                           
  gnutls-3.6.16-4.el8.x86_64                                                    
  gpgme-1.13.1-9.el8.x86_64                                                     
  grilo-0.3.6-3.el8.x86_64                                                      
  grub2-common-1:2.02-106.el8.alma.noarch                                       
  grub2-efi-x64-1:2.02-106.el8.alma.x86_64                                      
  grub2-tools-1:2.02-106.el8.alma.x86_64                                        
  grub2-tools-extra-1:2.02-106.el8.alma.x86_64                                  
  grub2-tools-minimal-1:2.02-106.el8.alma.x86_64                                
  grubby-8.40-42.el8.x86_64                                                     
  gsettings-desktop-schemas-3.32.0-6.el8.x86_64                                 
  gtk-update-icon-cache-3.22.30-8.el8.x86_64                                    
  gtk3-3.22.30-8.el8.x86_64                                                     
  gupnp-1.0.6-2.el8_4.x86_64                                                    
  hdparm-9.54-4.el8.x86_64                                                      
  hplip-common-3.18.4-9.el8.alma.x86_64                                         
  hplip-libs-3.18.4-9.el8.alma.x86_64                                           
  hwdata-0.314-8.10.el8.noarch                                                  
  ibus-1.5.19-14.el8_5.x86_64                                                   
  ibus-gtk2-1.5.19-14.el8_5.x86_64                                              
  ibus-gtk3-1.5.19-14.el8_5.x86_64                                              
  ibus-libs-1.5.19-14.el8_5.x86_64                                              
  ibus-setup-1.5.19-14.el8_5.noarch                                             
  iproute-5.12.0-4.el8.x86_64                                                   
  iproute-tc-5.12.0-4.el8.x86_64                                                
  iptables-1.8.4-20.el8.x86_64                                                  
  iptables-ebtables-1.8.4-20.el8.x86_64                                         
  iptables-libs-1.8.4-20.el8.x86_64                                             
  iscsi-initiator-utils-6.2.1.4-4.git095f59c.el8.x86_64                         
  iscsi-initiator-utils-iscsiuio-6.2.1.4-4.git095f59c.el8.x86_64                
  iwl100-firmware-39.31.5.1-103.el8.1.noarch                                    
  iwl1000-firmware-1:39.31.5.1-103.el8.1.noarch                                 
  iwl105-firmware-18.168.6.1-103.el8.1.noarch                                   
  iwl135-firmware-18.168.6.1-103.el8.1.noarch                                   
  iwl2000-firmware-18.168.6.1-103.el8.1.noarch                                  
  iwl2030-firmware-18.168.6.1-103.el8.1.noarch                                  
  iwl3160-firmware-1:25.30.13.0-103.el8.1.noarch                                
  iwl3945-firmware-15.32.2.9-103.el8.1.noarch                                   
  iwl4965-firmware-228.61.2.24-103.el8.1.noarch                                 
  iwl5000-firmware-8.83.5.1_1-103.el8.1.noarch                                  
  iwl5150-firmware-8.24.2.2-103.el8.1.noarch                                    
  iwl6000-firmware-9.221.4.1-103.el8.1.noarch                                   
  iwl6000g2a-firmware-18.168.6.1-103.el8.1.noarch                               
  iwl6000g2b-firmware-18.168.6.1-103.el8.1.noarch                               
  iwl6050-firmware-41.28.5.1-103.el8.1.noarch                                   
  iwl7260-firmware-1:25.30.13.0-103.el8.1.noarch                                
  jasper-libs-2.0.14-5.el8.x86_64                                               
  json-c-0.13.1-2.el8.x86_64                                                    
  kernel-tools-4.18.0-348.12.2.el8_5.x86_64                                     
  kernel-tools-libs-4.18.0-348.12.2.el8_5.x86_64                                
  kexec-tools-2.0.20-57.el8_5.1.x86_64                                          
  keyutils-1.5.10-9.el8.x86_64                                                  
  keyutils-libs-1.5.10-9.el8.x86_64                                             
  kmod-25-18.el8.x86_64                                                         
  kmod-kvdo-6.2.5.72-81.el8.x86_64                                              
  kmod-libs-25-18.el8.x86_64                                                    
  kpartx-0.8.4-17.el8.x86_64                                                    
  krb5-libs-1.18.2-14.el8.x86_64                                                
  libX11-1.6.8-5.el8.x86_64                                                     
  libX11-common-1.6.8-5.el8.noarch                                              
  libX11-xcb-1.6.8-5.el8.x86_64                                                 
  libblkid-2.32.1-28.el8.x86_64                                                 
  libblockdev-2.24-7.el8.x86_64                                                 
  libblockdev-crypto-2.24-7.el8.x86_64                                          
  libblockdev-dm-2.24-7.el8.x86_64                                              
  libblockdev-fs-2.24-7.el8.x86_64                                              
  libblockdev-kbd-2.24-7.el8.x86_64                                             
  libblockdev-loop-2.24-7.el8.x86_64                                            
  libblockdev-lvm-2.24-7.el8.x86_64                                             
  libblockdev-mdraid-2.24-7.el8.x86_64                                          
  libblockdev-mpath-2.24-7.el8.x86_64                                           
  libblockdev-nvdimm-2.24-7.el8.x86_64                                          
  libblockdev-part-2.24-7.el8.x86_64                                            
  libblockdev-swap-2.24-7.el8.x86_64                                            
  libblockdev-utils-2.24-7.el8.x86_64                                           
  libcap-2.26-5.el8.x86_64                                                      
  libcap-ng-0.7.11-1.el8.x86_64                                                 
  libcom_err-1.45.6-2.el8.x86_64                                                
  libcomps-0.1.16-2.el8.x86_64                                                  
  libcurl-7.61.1-22.el8.x86_64                                                  
  libdb-5.3.28-42.el8_4.x86_64                                                  
  libdb-utils-5.3.28-42.el8_4.x86_64                                            
  libdnf-0.63.0-3.el8.x86_64                                                    
  libdrm-2.4.106-2.el8.x86_64                                                   
  libepoxy-1.5.8-1.el8.x86_64                                                   
  libertas-usb8388-firmware-2:20210702-103.gitd79c2677.el8.noarch               
  libevdev-1.10.0-1.el8.x86_64                                                  
  libfastjson-0.99.9-1.el8.x86_64                                               
  libfdisk-2.32.1-28.el8.x86_64                                                 
  libgcrypt-1.8.5-6.el8.x86_64                                                  
  libgweather-3.28.2-4.el8.x86_64                                               
  libinput-1.16.3-2.el8.x86_64                                                  
  libipa_hbac-2.5.2-2.el8_5.3.x86_64                                            
  libiscsi-1.18.0-8.module_el8.5.0+2608+72063365.x86_64                         
  libjpeg-turbo-1.5.3-12.el8.x86_64                                             
  libldb-2.3.0-2.el8.x86_64                                                     
  libmodulemd-2.13.0-1.el8.x86_64                                               
  libmount-2.32.1-28.el8.x86_64                                                 
  libndp-1.7-6.el8.x86_64                                                       
  libnfsidmap-1:2.3.3-46.el8.x86_64                                             
  libnma-1.8.32-1.el8.x86_64                                                    
  libqmi-1.24.0-3.el8.x86_64                                                    
  libqmi-utils-1.24.0-3.el8.x86_64                                              
  librelp-1.9.0-1.el8.x86_64                                                    
  librepo-1.14.0-2.el8.x86_64                                                   
  libsane-hpaio-3.18.4-9.el8.alma.x86_64                                        
  libsepol-2.9-3.el8.x86_64                                                     
  libslirp-4.4.0-1.module_el8.5.0+2586+018f24d7.x86_64                          
  libsmartcols-2.32.1-28.el8.x86_64                                             
  libsmbclient-4.14.5-7.el8_5.x86_64                                            
  libsndfile-1.0.28-10.el8_4.1.x86_64                                           
  libsolv-0.7.19-1.el8.x86_64                                                   
  libss-1.45.6-2.el8.x86_64                                                     
  libssh-0.9.4-3.el8.x86_64                                                     
  libssh-config-0.9.4-3.el8.noarch                                              
  libsss_autofs-2.5.2-2.el8_5.3.x86_64                                          
  libsss_certmap-2.5.2-2.el8_5.3.x86_64                                         
  libsss_idmap-2.5.2-2.el8_5.3.x86_64                                           
  libsss_nss_idmap-2.5.2-2.el8_5.3.x86_64                                       
  libsss_sudo-2.5.2-2.el8_5.3.x86_64                                            
  libstdc++-8.5.0-4.el8_5.alma.x86_64                                           
  libstoragemgmt-1.9.1-1.el8.x86_64                                             
  libtalloc-2.3.2-1.el8.x86_64                                                  
  libtevent-0.11.0-0.el8.x86_64                                                 
  libtiff-4.0.9-20.el8.x86_64                                                   
  libtirpc-1.1.4-5.el8.x86_64                                                   
  libudisks2-2.9.0-7.el8.x86_64                                                 
  libuuid-2.32.1-28.el8.x86_64                                                  
  libvirt-daemon-6.0.0-37.module_el8.5.0+2608+72063365.x86_64                   
  libvirt-daemon-config-network-6.0.0-37.module_el8.5.0+2608+72063365.x86_64    
  libvirt-daemon-driver-interface-6.0.0-37.module_el8.5.0+2608+72063365.x86_64  
  libvirt-daemon-driver-network-6.0.0-37.module_el8.5.0+2608+72063365.x86_64    
  libvirt-daemon-driver-nodedev-6.0.0-37.module_el8.5.0+2608+72063365.x86_64    
  libvirt-daemon-driver-nwfilter-6.0.0-37.module_el8.5.0+2608+72063365.x86_64   
  libvirt-daemon-driver-qemu-6.0.0-37.module_el8.5.0+2608+72063365.x86_64       
  libvirt-daemon-driver-secret-6.0.0-37.module_el8.5.0+2608+72063365.x86_64     
  libvirt-daemon-driver-storage-6.0.0-37.module_el8.5.0+2608+72063365.x86_64    
  libvirt-daemon-driver-storage-core-6.0.0-37.module_el8.5.0+2608+72063365.x86_64
  libvirt-daemon-driver-storage-disk-6.0.0-37.module_el8.5.0+2608+72063365.x86_64
  libvirt-daemon-driver-storage-gluster-6.0.0-37.module_el8.5.0+2608+72063365.x86_64
  libvirt-daemon-driver-storage-iscsi-6.0.0-37.module_el8.5.0+2608+72063365.x86_64
  libvirt-daemon-driver-storage-iscsi-direct-6.0.0-37.module_el8.5.0+2608+72063365.x86_64
  libvirt-daemon-driver-storage-logical-6.0.0-37.module_el8.5.0+2608+72063365.x86_64
  libvirt-daemon-driver-storage-mpath-6.0.0-37.module_el8.5.0+2608+72063365.x86_64
  libvirt-daemon-driver-storage-rbd-6.0.0-37.module_el8.5.0+2608+72063365.x86_64
  libvirt-daemon-driver-storage-scsi-6.0.0-37.module_el8.5.0+2608+72063365.x86_64
  libvirt-daemon-kvm-6.0.0-37.module_el8.5.0+2608+72063365.x86_64               
  libvirt-libs-6.0.0-37.module_el8.5.0+2608+72063365.x86_64                     
  libwacom-1.6-3.el8.x86_64                                                     
  libwacom-data-1.6-3.el8.noarch                                                
  libwayland-client-1.19.0-1.el8.x86_64                                         
  libwayland-cursor-1.19.0-1.el8.x86_64                                         
  libwayland-egl-1.19.0-1.el8.x86_64                                            
  libwayland-server-1.19.0-1.el8.x86_64                                         
  libwbclient-4.14.5-7.el8_5.x86_64                                             
  libwebp-1.0.0-5.el8.x86_64                                                    
  libwinpr-2:2.2.0-7.el8_5.x86_64                                               
  libxml2-2.9.7-9.el8_4.2.x86_64                                                
  linux-firmware-20210702-103.gitd79c2677.el8.noarch                            
  llvm-libs-12.0.1-2.module_el8.5.0+2598+6a7729ff.x86_64                        
  lshw-B.02.19.2-6.el8.x86_64                                                   
  lsscsi-0.32-3.el8.x86_64                                                      
  lua-5.3.4-12.el8.x86_64                                                       
  lua-libs-5.3.4-12.el8.x86_64                                                  
  lvm2-8:2.03.12-10.el8.x86_64                                                  
  lvm2-libs-8:2.03.12-10.el8.x86_64                                             
  lz4-1.8.3-3.el8_4.x86_64                                                      
  lz4-libs-1.8.3-3.el8_4.x86_64                                                 
  man-db-2.7.6.1-18.el8.x86_64                                                  
  man-pages-overrides-8.5.0.1-1.el8.noarch                                      
  mcelog-3:175-1.el8.x86_64                                                     
  mdadm-4.2-rc2.el8.x86_64                                                      
  mesa-dri-drivers-21.1.5-1.el8.x86_64                                          
  mesa-filesystem-21.1.5-1.el8.x86_64                                           
  mesa-libEGL-21.1.5-1.el8.x86_64                                               
  mesa-libGL-21.1.5-1.el8.x86_64                                                
  mesa-libgbm-21.1.5-1.el8.x86_64                                               
  mesa-libglapi-21.1.5-1.el8.x86_64                                             
  mesa-libxatracker-21.1.5-1.el8.x86_64                                         
  microcode_ctl-4:20210608-1.el8.x86_64                                         
  mobile-broadband-provider-info-20210805-1.el8.noarch                          
  mutter-3.32.2-60.el8.x86_64                                                   
  ncurses-6.1-9.20180224.el8.x86_64                                             
  ncurses-base-6.1-9.20180224.el8.noarch                                        
  ncurses-libs-6.1-9.20180224.el8.x86_64                                        
  net-snmp-libs-1:5.8-22.el8.x86_64                                             
  netcf-libs-0.2.8-12.module_el8.5.0+2608+72063365.x86_64                       
  nettle-3.4.1-7.el8.x86_64                                                     
  nfs-utils-1:2.3.3-46.el8.x86_64                                               
  nftables-1:0.9.3-21.el8.x86_64                                                
  nm-connection-editor-1.18.0-3.el8.x86_64                                      
  nmap-ncat-2:7.70-6.el8.x86_64                                                 
  nspr-4.32.0-1.el8_4.x86_64                                                    
  nss-3.67.0-7.el8_5.x86_64                                                     
  nss-softokn-3.67.0-7.el8_5.x86_64                                             
  nss-softokn-freebl-3.67.0-7.el8_5.x86_64                                      
  nss-sysinit-3.67.0-7.el8_5.x86_64                                             
  nss-util-3.67.0-7.el8_5.x86_64                                                
  numactl-libs-2.0.12-13.el8.x86_64                                             
  open-vm-tools-11.2.5-2.el8.x86_64                                             
  open-vm-tools-desktop-11.2.5-2.el8.x86_64                                     
  openjpeg2-2.4.0-4.el8.x86_64                                                  
  openldap-2.4.46-18.el8.x86_64                                                 
  openssh-8.0p1-10.el8.x86_64                                                   
  openssh-askpass-8.0p1-10.el8.x86_64                                           
  openssh-clients-8.0p1-10.el8.x86_64                                           
  openssh-server-8.0p1-10.el8.x86_64                                            
  openssl-1:1.1.1k-5.el8_5.x86_64                                               
  openssl-libs-1:1.1.1k-5.el8_5.x86_64                                          
  os-prober-1.74-9.el8.x86_64                                                   
  osinfo-db-20210903-1.el8.noarch                                               
  ostree-2021.3-1.el8.x86_64                                                    
  ostree-libs-2021.3-1.el8.x86_64                                               
  pam-1.3.1-15.el8.x86_64                                                       
  pango-1.42.4-8.el8.x86_64                                                     
  parted-3.2-39.el8.x86_64                                                      
  pcre-8.42-6.el8.x86_64                                                        
  perl-Errno-1.28-420.el8.x86_64                                                
  perl-IO-1.38-420.el8.x86_64                                                   
  perl-Math-Complex-1.59-420.el8.noarch                                         
  perl-interpreter-4:5.26.3-420.el8.x86_64                                      
  perl-libs-4:5.26.3-420.el8.x86_64                                             
  perl-macros-4:5.26.3-420.el8.x86_64                                           
  platform-python-3.6.8-41.el8.alma.x86_64                                      
  platform-python-pip-9.0.3-20.el8.noarch                                       
  plymouth-0.9.4-10.20200615git1e36e30.el8.x86_64                               
  plymouth-core-libs-0.9.4-10.20200615git1e36e30.el8.x86_64                     
  plymouth-graphics-libs-0.9.4-10.20200615git1e36e30.el8.x86_64                 
  plymouth-plugin-label-0.9.4-10.20200615git1e36e30.el8.x86_64                  
  plymouth-plugin-two-step-0.9.4-10.20200615git1e36e30.el8.x86_64               
  plymouth-scripts-0.9.4-10.20200615git1e36e30.el8.x86_64                       
  plymouth-system-theme-0.9.4-10.20200615git1e36e30.el8.x86_64                  
  plymouth-theme-charge-0.9.4-10.20200615git1e36e30.el8.x86_64                  
  plymouth-theme-spinner-0.9.4-10.20200615git1e36e30.el8.x86_64                 
  podman-3.3.1-9.module_el8.5.0+2586+018f24d7.x86_64                            
  podman-catatonit-3.3.1-9.module_el8.5.0+2586+018f24d7.x86_64                  
  policycoreutils-2.9-16.el8.x86_64                                             
  policycoreutils-python-utils-2.9-16.el8.noarch                                
  polkit-0.115-13.el8_5.1.x86_64                                                
  polkit-libs-0.115-13.el8_5.1.x86_64                                           
  poppler-20.11.0-3.el8_5.1.x86_64                                              
  poppler-glib-20.11.0-3.el8_5.1.x86_64                                         
  poppler-utils-20.11.0-3.el8_5.1.x86_64                                        
  python3-bind-32:9.11.26-6.el8.noarch                                          
  python3-blivet-1:3.4.0-6.el8.noarch                                           
  python3-blockdev-2.24-7.el8.x86_64                                            
  python3-cryptography-3.2.1-5.el8.x86_64                                       
  python3-dnf-4.7.0-4.el8.noarch                                                
  python3-dnf-plugins-core-4.0.21-3.el8.noarch                                  
  python3-firewall-0.9.3-7.el8.noarch                                           
  python3-gpg-1.13.1-9.el8.x86_64                                               
  python3-hawkey-0.63.0-3.el8.x86_64                                            
  python3-kickstart-3.16.14-1.el8.noarch                                        
  python3-libcomps-0.1.16-2.el8.x86_64                                          
  python3-libdnf-0.63.0-3.el8.x86_64                                            
  python3-librepo-1.14.0-2.el8.x86_64                                           
  python3-libs-3.6.8-41.el8.alma.x86_64                                         
  python3-libstoragemgmt-1.9.1-1.el8.x86_64                                     
  python3-libxml2-2.9.7-9.el8_4.2.x86_64                                        
  python3-lxml-4.2.3-3.el8.x86_64                                               
  python3-nftables-1:0.9.3-21.el8.x86_64                                        
  python3-perf-4.18.0-348.12.2.el8_5.x86_64                                     
  python3-pip-9.0.3-20.el8.noarch                                               
  python3-pip-wheel-9.0.3-20.el8.noarch                                         
  python3-policycoreutils-2.9-16.el8.noarch                                     
  python3-psutil-5.4.3-11.el8.x86_64                                            
  python3-pyparted-1:3.11.7-4.el8.x86_64                                        
  python3-rpm-4.14.3-19.el8.x86_64                                              
  python3-sssdconfig-2.5.2-2.el8_5.3.noarch                                     
  python3-syspurpose-1.28.21-3.el8.alma.x86_64                                  
  python3-unbound-1.7.3-17.el8.x86_64                                           
  python36-3.6.8-38.module_el8.5.0+2569+5c5719bc.x86_64                         
  qemu-guest-agent-15:4.2.0-59.module_el8.5.0+2608+72063365.1.x86_64            
  qemu-img-15:4.2.0-59.module_el8.5.0+2608+72063365.1.x86_64                    
  qemu-kvm-15:4.2.0-59.module_el8.5.0+2608+72063365.1.x86_64                    
  qemu-kvm-block-curl-15:4.2.0-59.module_el8.5.0+2608+72063365.1.x86_64         
  qemu-kvm-block-gluster-15:4.2.0-59.module_el8.5.0+2608+72063365.1.x86_64      
  qemu-kvm-block-iscsi-15:4.2.0-59.module_el8.5.0+2608+72063365.1.x86_64        
  qemu-kvm-block-rbd-15:4.2.0-59.module_el8.5.0+2608+72063365.1.x86_64          
  qemu-kvm-block-ssh-15:4.2.0-59.module_el8.5.0+2608+72063365.1.x86_64          
  qemu-kvm-common-15:4.2.0-59.module_el8.5.0+2608+72063365.1.x86_64             
  qemu-kvm-core-15:4.2.0-59.module_el8.5.0+2608+72063365.1.x86_64               
  quota-1:4.04-14.el8.x86_64                                                    
  quota-nls-1:4.04-14.el8.noarch                                                
  rasdaemon-0.6.1-6.el8.x86_64                                                  
  realmd-0.16.3-23.el8.x86_64                                                   
  rng-tools-6.13-1.git.d207e0b6.el8.x86_64                                      
  rpm-4.14.3-19.el8.x86_64                                                      
  rpm-build-libs-4.14.3-19.el8.x86_64                                           
  rpm-libs-4.14.3-19.el8.x86_64                                                 
  rpm-plugin-selinux-4.14.3-19.el8.x86_64                                       
  rpm-plugin-systemd-inhibit-4.14.3-19.el8.x86_64                               
  rsyslog-8.2102.0-5.el8.x86_64                                                 
  rsyslog-gnutls-8.2102.0-5.el8.x86_64                                          
  rsyslog-gssapi-8.2102.0-5.el8.x86_64                                          
  rsyslog-relp-8.2102.0-5.el8.x86_64                                            
  runc-1.0.2-1.module_el8.5.0+2586+018f24d7.x86_64                              
  samba-client-libs-4.14.5-7.el8_5.x86_64                                       
  samba-common-4.14.5-7.el8_5.noarch                                            
  samba-common-libs-4.14.5-7.el8_5.x86_64                                       
  seabios-bin-1.13.0-2.module_el8.5.0+2608+72063365.noarch                      
  seavgabios-bin-1.13.0-2.module_el8.5.0+2608+72063365.noarch                   
  selinux-policy-3.14.3-80.el8_5.2.noarch                                       
  selinux-policy-targeted-3.14.3-80.el8_5.2.noarch                              
  setroubleshoot-plugins-3.3.14-1.el8.noarch                                    
  setroubleshoot-server-3.3.24-4.el8.x86_64                                     
  sgabios-bin-1:0.20170427git-3.module_el8.5.0+2608+72063365.noarch             
  shadow-utils-2:4.6-14.el8.x86_64                                              
  sil-nuosu-fonts-2.200-2.el8.noarch                                            
  slirp4netns-1.1.8-1.module_el8.5.0+2586+018f24d7.x86_64                       
  sos-4.1-5.el8.alma.noarch                                                     
  sqlite-3.26.0-15.el8.x86_64                                                   
  sqlite-libs-3.26.0-15.el8.x86_64                                              
  sssd-2.5.2-2.el8_5.3.x86_64                                                   
  sssd-ad-2.5.2-2.el8_5.3.x86_64                                                
  sssd-client-2.5.2-2.el8_5.3.x86_64                                            
  sssd-common-2.5.2-2.el8_5.3.x86_64                                            
  sssd-common-pac-2.5.2-2.el8_5.3.x86_64                                        
  sssd-ipa-2.5.2-2.el8_5.3.x86_64                                               
  sssd-kcm-2.5.2-2.el8_5.3.x86_64                                               
  sssd-krb5-2.5.2-2.el8_5.3.x86_64                                              
  sssd-krb5-common-2.5.2-2.el8_5.3.x86_64                                       
  sssd-ldap-2.5.2-2.el8_5.3.x86_64                                              
  sssd-nfs-idmap-2.5.2-2.el8_5.3.x86_64                                         
  sssd-proxy-2.5.2-2.el8_5.3.x86_64                                             
  strace-5.7-3.el8.x86_64                                                       
  sudo-1.8.29-7.el8_4.1.x86_64                                                  
  tcpdump-14:4.9.3-2.el8.x86_64                                                 
  tigervnc-license-1.11.0-9.el8.noarch                                          
  tigervnc-server-minimal-1.11.0-9.el8.x86_64                                   
  tpm2-tools-4.1.1-5.el8.x86_64                                                 
  tpm2-tss-2.3.2-4.el8.x86_64                                                   
  tuned-2.16.0-1.el8.noarch                                                     
  tzdata-2021e-1.el8.noarch                                                     
  udisks2-2.9.0-7.el8.x86_64                                                    
  udisks2-iscsi-2.9.0-7.el8.x86_64                                              
  udisks2-lvm2-2.9.0-7.el8.x86_64                                               
  unbound-libs-1.7.3-17.el8.x86_64                                              
  unzip-6.0-45.el8_4.x86_64                                                     
  usermode-1.113-2.el8.x86_64                                                   
  util-linux-2.32.1-28.el8.x86_64                                               
  util-linux-user-2.32.1-28.el8.x86_64                                          
  vdo-6.2.5.74-14.el8.x86_64                                                    
  vim-common-2:8.0.1763-16.el8.x86_64                                           
  vim-enhanced-2:8.0.1763-16.el8.x86_64                                         
  vim-filesystem-2:8.0.1763-16.el8.noarch                                       
  vim-minimal-2:8.0.1763-16.el8.x86_64                                          
  vino-3.22.0-11.el8.x86_64                                                     
  virt-what-1.18-12.el8.x86_64                                                  
  webkit2gtk3-2.32.3-2.el8.x86_64                                               
  webkit2gtk3-jsc-2.32.3-2.el8.x86_64                                           
  which-2.21-16.el8.x86_64                                                      
  xdg-desktop-portal-1.6.0-5.el8.x86_64                                         
  xfsprogs-5.0.0-9.el8.x86_64                                                   
  xorg-x11-font-utils-1:7.5-41.el8.x86_64                                       
  xorg-x11-server-Xorg-1.20.11-2.el8.x86_64                                     
  xorg-x11-server-Xwayland-21.1.1-6.el8.x86_64                                  
  xorg-x11-server-common-1.20.11-2.el8.x86_64                                   
  yum-4.7.0-4.el8.noarch                                                        
Installed:
  grub2-tools-efi-1:2.02-106.el8.alma.x86_64                                    
  ima-evm-utils-1.3.2-12.el8.x86_64                                             
  kernel-4.18.0-348.12.2.el8_5.x86_64                                           
  kernel-core-4.18.0-348.12.2.el8_5.x86_64                                      
  kernel-modules-4.18.0-348.12.2.el8_5.x86_64                                   
  libbpf-0.4.0-1.el8.x86_64                                                     
  python3-beautifulsoup4-4.6.3-2.el8.1.noarch                                   
  python3-cssselect-0.9.2-10.el8.noarch                                         

Complete!

After a reboot, the Kernel version has been updated and also the AlmaLinux version was updated from 8.4 to 8.5:

[mr_halfword@haswell-alma ~]$ uname -a
Linux haswell-alma 4.18.0-348.12.2.el8_5.x86_64 #1 SMP Wed Jan 19 14:35:04 EST 2022 x86_64 x86_64 x86_64 GNU/Linux
[mr_halfword@haswell-alma ~]$ cat /etc/redhat-release 
AlmaLinux release 8.5 (Arctic Sphynx)

4.8 Able to build and install irmda.ko module after the upgrade to AlmaLinux 8.5

Following upgrading to AlmaLinux 8.5 the compilation was successful, but couldn't install the module when run as a non-root user:

$ ./build.sh 
make: Entering directory '/usr/src/kernels/4.18.0-348.12.2.el8_5.x86_64'
  CLEAN   /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/.tmp_versions
make: Leaving directory '/usr/src/kernels/4.18.0-348.12.2.el8_5.x86_64'
make: Entering directory '/usr/src/kernels/4.18.0-348.12.2.el8_5.x86_64'
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/main.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/hw.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/cm.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/ctrl.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/hmc.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/pble.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/puda.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/uk.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/utils.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/verbs.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/uda.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/ws.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/trace.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/i40iw_if.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/i40iw_hw.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/icrdma_hw.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/configfs.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/vf.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/virtchnl.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/irdma_kcompat.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/debugfs.o
  LD [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/irdma.o
  Building modules, stage 2.
  MODPOST 1 modules
  CC      /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/irdma.mod.o
  LD [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/irdma.ko
make: Leaving directory '/usr/src/kernels/4.18.0-348.12.2.el8_5.x86_64'
make: Entering directory '/usr/src/kernels/4.18.0-348.12.2.el8_5.x86_64'
mkdir: cannot create directory ‘/lib/modules/4.18.0-348.12.2.el8_5.x86_64/updates/drivers’: Permission denied

Runnng as root to allow the module to be installed:

[mr_halfword@haswell-alma irdma-1.7.72]$ sudo ./build.sh 
[sudo] password for mr_halfword: 
make: Entering directory '/usr/src/kernels/4.18.0-348.12.2.el8_5.x86_64'
  CLEAN   /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/.tmp_versions
  CLEAN   /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/Module.symvers
make: Leaving directory '/usr/src/kernels/4.18.0-348.12.2.el8_5.x86_64'
make: Entering directory '/usr/src/kernels/4.18.0-348.12.2.el8_5.x86_64'
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/main.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/hw.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/cm.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/ctrl.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/hmc.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/pble.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/puda.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/uk.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/utils.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/verbs.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/uda.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/ws.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/trace.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/i40iw_if.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/i40iw_hw.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/icrdma_hw.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/configfs.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/vf.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/virtchnl.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/irdma_kcompat.o
  CC [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/debugfs.o
  LD [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/irdma.o
  Building modules, stage 2.
  MODPOST 1 modules
  CC      /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/irdma.mod.o
  LD [M]  /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/irdma.ko
make: Leaving directory '/usr/src/kernels/4.18.0-348.12.2.el8_5.x86_64'
make: Entering directory '/usr/src/kernels/4.18.0-348.12.2.el8_5.x86_64'
  INSTALL /home/mr_halfword/E810-2CQDA2/irdma-1.7.72/src/irdma/irdma.ko
At main.c:160:
- SSL error:02001002:system library:fopen:No such file or directory: crypto/bio/bss_file.c:69
- SSL error:2006D080:BIO routines:BIO_new_file:no such file: crypto/bio/bss_file.c:76
sign-file: certs/signing_key.pem: No such file or directory
  DEPMOD  4.18.0-348.12.2.el8_5.x86_64
make: Leaving directory '/usr/src/kernels/4.18.0-348.12.2.el8_5.x86_64'
Creating /etc/modprobe.d/irdma.conf file ...
Updating initramfs...
dracut --force

There were errors about the lack of a signing key, and the created module isn't signed:

$ modinfo irdma
filename:       /lib/modules/4.18.0-348.12.2.el8_5.x86_64/updates/drivers/infiniband/hw/irdma/irdma.ko
version:        1.7.72
license:        Dual BSD/GPL
description:    Intel(R) Ethernet Protocol Driver for RDMA
author:         Intel Corporation, <[email protected]>
alias:          i40iw
rhelversion:    8.5
srcversion:     71929F97FE02BAB28354CA0
alias:          auxiliary:iavf.roce
alias:          auxiliary:iavf.iwarp
alias:          auxiliary:iecm.roce
alias:          auxiliary:iecm.iwarp
alias:          auxiliary:ice.roce
alias:          auxiliary:ice.iwarp
alias:          auxiliary:i40e.iwarp
depends:        ib_core,ib_uverbs
name:           irdma
vermagic:       4.18.0-348.12.2.el8_5.x86_64 SMP mod_unload modversions 
parm:           resource_profile:Resource Profile: 0=PF only(default), 1=Weighted VF, 2=Even Distribution (byte)
parm:           max_rdma_vfs:Maximum VF count: 0-32, default=32 (byte)
parm:           irdma_upload_context:Upload QP context, default=false (bool)
parm:           limits_sel:Resource limits selector, Range: 0-7, default=3 (uint)
parm:           gen1_limits_sel:x722 resource limits selector, Range: 0-5, default=1 (uint)
parm:           roce_ena:RoCE enable: 1=enable RoCEv2 on all ports (not supported on x722), 0=iWARP(default) (uint)
parm:           roce_port_cfg:RoCEv2 per port enable: 1=port0 RoCEv2 all others iWARP, 2=port1 RoCEv2 etc. not supported on X722 (ulong)
parm:           en_rem_endpoint_trk:Remote Endpoint Tracking: 1=enabled (not supported on x722), 0=disabled(default) (bool)
parm:           fragment_count_limit:adjust maximum values for queue depth and inline data size, default=4, Range: 2-13 (byte)
parm:           dcqcn_enable:enables DCQCN algorithm for RoCEv2 on all ports, default=false  (bool)
parm:           dcqcn_cc_cfg_valid:set DCQCN parameters to be valid, default=false (bool)
parm:           dcqcn_min_dec_factor:set minimum percentage factor by which tx rate can be changed for CNP, Range: 1-100, default=1 (byte)
parm:           dcqcn_min_rate_MBps:set minimum rate limit value, in MBits per second, default=0 (byte)
parm:           dcqcn_F:set number of times to stay in each stage of bandwidth recovery, default=0 (byte)
parm:           dcqcn_T:set number of usecs that should elapse before increasing the CWND in DCQCN mode, default=0 (ushort)
parm:           dcqcn_B:set number of MSS to add to the congestion window in additive increase mode, default=0 (uint)
parm:           dcqcn_rai_factor:set number of MSS to add to the congestion window in additive increase mode, default=0 (ushort)
parm:           dcqcn_hai_factor:set number of MSS to add to the congestion window in hyperactive increase mode, default=0 (ushort)
parm:           dcqcn_rreduce_mperiod:set minimum time between 2 consecutive rate reductions for a single flow, default=0 (uint)

As haven't enabled secure boot on the workstation in use, that doesn't prevent the irdma module from being loaded by modprobe (albeit don't have an actual E810 adapter fitted in the PC to test actual operation). Would need to investigate signing if secure boot was enabled.

4.9 Loading unsigned module taints Kernel

After a reboot show that as expected the irmda module is not loaded, as no Intel adapter for it installed in the workstation:

[mr_halfword@haswell-alma ~]$ lsmod|grep irdma
[mr_halfword@haswell-alma ~]$ dmesg|tail
[   63.178267] virbr0: port 1(virbr0-nic) entered blocking state
[   63.178269] virbr0: port 1(virbr0-nic) entered disabled state
[   63.178441] device virbr0-nic entered promiscuous mode
[   63.956675] virbr0: port 1(virbr0-nic) entered blocking state
[   63.956679] virbr0: port 1(virbr0-nic) entered listening state
[   64.043438] virbr0: port 1(virbr0-nic) entered disabled state
[  104.123185] rfkill: input handler disabled
[  104.524992] ISO 9660 Extensions: Microsoft Joliet Level 3
[  104.526943] ISO 9660 Extensions: Microsoft Joliet Level 3
[  104.606467] ISO 9660 Extensions: RRIP_1991A

And if load the module, the Kernel is tainted due to the module being unsigned:

mr_halfword@haswell-alma ~]$ sudo modprobe irdma
[sudo] password for mr_halfword: 
[mr_halfword@haswell-alma ~]$ dmesg|tail
[   63.956675] virbr0: port 1(virbr0-nic) entered blocking state
[   63.956679] virbr0: port 1(virbr0-nic) entered listening state
[   64.043438] virbr0: port 1(virbr0-nic) entered disabled state
[  104.123185] rfkill: input handler disabled
[  104.524992] ISO 9660 Extensions: Microsoft Joliet Level 3
[  104.526943] ISO 9660 Extensions: Microsoft Joliet Level 3
[  104.606467] ISO 9660 Extensions: RRIP_1991A
[  148.458728] irdma: loading out-of-tree module taints kernel.
[  148.459054] irdma: module verification failed: signature and/or required key missing - tainting kernel
[  148.464375] irdma driver version: 1.7.72
[mr_halfword@haswell-alma ~]$ lsmod|grep irdma
irdma                 479232  0
ib_uverbs             159744  1 irdma
ib_core               393216  2 irdma,ib_uverbs

4.10. Try building the patched rdma-core v35.0 to add support for the E810 adapters

For this performed the steps in the README_irdma.txt to build a patched version of rdma-core which adds support for the E810 adapters. Didn't first erase the version of rdma-core installed with AlmaLinux as initialled justed wanted to check that builds OK.

Download rdma-core-35.0.tar.gz from GitHub:

[mr_halfword@haswell-alma ~]$ wget https://github.com/linux-rdma/rdma-core/releases/download/v35.0/rdma-core-35.0.tar.gz
--2022-01-30 16:51:38--  https://github.com/linux-rdma/rdma-core/releases/download/v35.0/rdma-core-35.0.tar.gz
Resolving github.com (github.com)... 140.82.121.3
Connecting to github.com (github.com)|140.82.121.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://objects.githubusercontent.com/github-production-release-asset-2e65be/68456226/a0508c00-b152-11eb-86ef-d98b32622b6a?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20220130%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20220130T165138Z&X-Amz-Expires=300&X-Amz-Signature=e0fc91319de031cf8ee56fc10a81acb71792e5480f87303756d0d4a5d5970c47&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=68456226&response-content-disposition=attachment%3B%20filename%3Drdma-core-35.0.tar.gz&response-content-type=application%2Foctet-stream [following]
--2022-01-30 16:51:39--  https://objects.githubusercontent.com/github-production-release-asset-2e65be/68456226/a0508c00-b152-11eb-86ef-d98b32622b6a?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20220130%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20220130T165138Z&X-Amz-Expires=300&X-Amz-Signature=e0fc91319de031cf8ee56fc10a81acb71792e5480f87303756d0d4a5d5970c47&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=68456226&response-content-disposition=attachment%3B%20filename%3Drdma-core-35.0.tar.gz&response-content-type=application%2Foctet-stream
Resolving objects.githubusercontent.com (objects.githubusercontent.com)... 185.199.109.133, 185.199.110.133, 185.199.111.133, ...
Connecting to objects.githubusercontent.com (objects.githubusercontent.com)|185.199.109.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1672254 (1.6M) [application/octet-stream]
Saving to: ‘rdma-core-35.0.tar.gz’

rdma-core-35.0.tar. 100%[===================>]   1.59M  7.50MB/s    in 0.2s    

2022-01-30 16:51:39 (7.50 MB/s) - ‘rdma-core-35.0.tar.gz’ saved [1672254/1672254]

Apply patch libirdma-35.0.patch to rdma-core

[mr_halfword@haswell-alma ~]$ tar -xzvf rdma-core-35.0.tar.gz
rdma-core-35.0/
rdma-core-35.0/.clang-format
rdma-core-35.0/.gitignore
rdma-core-35.0/.mailmap
rdma-core-35.0/CMakeLists.txt
<snip>
rdma-core-35.0/buildlib/pandoc-prebuilt/a8ffa02582b1604aa43cc72efd3bcde41e65b4cd
[mr_halfword@haswell-alma ~]$ cd rdma-core-35.0
[mr_halfword@haswell-alma rdma-core-35.0]$ patch -p2 < ~/E810-2CQDA2/irdma-1.7.72/libirdma-35.0.patch
bash: patch: command not found...
Install package 'patch' to provide command 'patch'? [N/y] n


[mr_halfword@haswell-alma rdma-core-35.0]$ sudo yum install patch
[sudo] password for mr_halfword: 
Last metadata expiration check: 2:48:39 ago on Sun 30 Jan 2022 14:21:44 GMT.
Dependencies resolved.
================================================================================
 Package         Architecture     Version                Repository        Size
================================================================================
Installing:
 patch           x86_64           2.7.6-11.el8           baseos           138 k

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

Total download size: 138 k
Installed size: 271 k
Is this ok [y/N]: y
Downloading Packages:
patch-2.7.6-11.el8.x86_64.rpm                   234 kB/s | 138 kB     00:00    
--------------------------------------------------------------------------------
Total                                           101 kB/s | 138 kB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : patch-2.7.6-11.el8.x86_64                              1/1 
  Running scriptlet: patch-2.7.6-11.el8.x86_64                              1/1 
  Verifying        : patch-2.7.6-11.el8.x86_64                              1/1 

Installed:
  patch-2.7.6-11.el8.x86_64                                                     

Complete!
[mr_halfword@haswell-alma rdma-core-35.0]$ patch -p2 < ~/E810-2CQDA2/irdma-1.7.72/libirdma-35.0.patch 
patching file CMakeLists.txt
patching file debian/control
patching file debian/copyright
patching file iwpmd/iwarp_pm_common.c
patching file iwpmd/iwarp_pm_helper.c
patching file iwpmd/iwarp_pm_server.c
patching file kernel-boot/rdma-description.rules
patching file kernel-boot/rdma-hw-modules.rules
patching file kernel-headers/CMakeLists.txt
patching file kernel-headers/rdma/i40iw-abi.h
patching file kernel-headers/rdma/ib_user_ioctl_verbs.h
patching file kernel-headers/rdma/irdma-abi.h
patching file libibverbs/verbs.h
patching file MAINTAINERS
patching file providers/i40iw/CMakeLists.txt
patching file providers/i40iw/i40e_devids.h
patching file providers/i40iw/i40iw-abi.h
patching file providers/i40iw/i40iw_d.h
patching file providers/i40iw/i40iw_osdep.h
patching file providers/i40iw/i40iw_register.h
patching file providers/i40iw/i40iw_status.h
patching file providers/i40iw/i40iw_uk.c
patching file providers/i40iw/i40iw_umain.c
patching file providers/i40iw/i40iw_umain.h
patching file providers/i40iw/i40iw_user.h
patching file providers/i40iw/i40iw_uverbs.c
patching file providers/irdma/abi.h
patching file providers/irdma/CMakeLists.txt
patching file providers/irdma/defs.h
patching file providers/irdma/i40e_devids.h
patching file providers/irdma/i40iw_hw.h
patching file providers/irdma/ice_devids.h
patching file providers/irdma/irdma.h
patching file providers/irdma/osdep.h
patching file providers/irdma/status.h
patching file providers/irdma/uk.c
patching file providers/irdma/umain.c
patching file providers/irdma/umain.h
patching file providers/irdma/user.h
patching file providers/irdma/uverbs.c
patching file redhat/rdma-core.spec
patching file suse/rdma-core.spec

Perform the build of the patched rdma-core (not creating the rpm install packages as per the README_irdma.txt):

[mr_halfword@haswell-alma rdma-core-35.0]$ ./build.sh 
-- The C compiler identification is GNU 8.5.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Could NOT find cython (missing: CYTHON_EXECUTABLE CYTHON_VERSION_STRING) 
-- Performing Test HAVE_NO_SPARSE
-- Performing Test HAVE_NO_SPARSE - Success
-- Performing Test HAVE_C_WARNINGS
-- Performing Test HAVE_C_WARNINGS - Success
-- Performing Test HAVE_C_WMISSING_PROTOTYPES
-- Performing Test HAVE_C_WMISSING_PROTOTYPES - Success
-- Performing Test HAVE_C_WMISSING_DECLARATIONS
-- Performing Test HAVE_C_WMISSING_DECLARATIONS - Success
-- Performing Test HAVE_C_WWRITE_STRINGS
-- Performing Test HAVE_C_WWRITE_STRINGS - Success
-- Performing Test HAVE_C_WFORMAT_2
-- Performing Test HAVE_C_WFORMAT_2 - Success
-- Performing Test HAVE_C_WCAST_FUNCTION
-- Performing Test HAVE_C_WCAST_FUNCTION - Success
-- Performing Test HAVE_C_WFORMAT_NONLITERAL
-- Performing Test HAVE_C_WFORMAT_NONLITERAL - Success
-- Performing Test HAVE_C_WDATE_TIME
-- Performing Test HAVE_C_WDATE_TIME - Success
-- Performing Test HAVE_C_WNESTED_EXTERNS
-- Performing Test HAVE_C_WNESTED_EXTERNS - Success
-- Performing Test HAVE_C_WORKING_SHADOW
-- Performing Test HAVE_C_WORKING_SHADOW - Success
-- Performing Test HAVE_C_WORKING_MISSING_FIELD_INITIALIZERS
-- Performing Test HAVE_C_WORKING_MISSING_FIELD_INITIALIZERS - Success
-- Performing Test HAVE_NO_STRICT_ALIASING
-- Performing Test HAVE_NO_STRICT_ALIASING - Success
-- Performing Test HAVE_NO_VAR_TRACKING_ASSIGNMENTS
-- Performing Test HAVE_NO_VAR_TRACKING_ASSIGNMENTS - Success
-- Performing Test HAVE_FUNC_ATTRIBUTE_IFUNC
-- Performing Test HAVE_FUNC_ATTRIBUTE_IFUNC - Success
-- Performing Test HAVE_FUNC_ATTRIBUTE_SYMVER
-- Performing Test HAVE_FUNC_ATTRIBUTE_SYMVER - Failed
-- Performing Test HAS_CLOEXEC
-- Performing Test HAS_CLOEXEC - Success
-- Performing Test HAVE_FUNC_ATTRIBUTE_ALWAYS_INLINE
-- Performing Test HAVE_FUNC_ATTRIBUTE_ALWAYS_INLINE - Success
-- Performing Test HAVE_LONG_LONG_U64
-- Performing Test HAVE_LONG_LONG_U64 - Success
-- Performing Test HAVE_GLIBC_UAPI_COMPAT
-- Performing Test HAVE_GLIBC_UAPI_COMPAT - Success
-- Performing Test HAVE_WORKING_STRICT_ALIASING
-- Performing Test HAVE_WORKING_STRICT_ALIASING - Success
-- Performing Test HAVE_LARGE_FILES
-- Performing Test HAVE_LARGE_FILES - Success
-- Looking for stdatomic.h
-- Looking for stdatomic.h - found
-- Performing Test HAVE_TARGET_SSE
-- Performing Test HAVE_TARGET_SSE - Success
-- Performing Test SUPPORTS_AS_NEEDED
-- Performing Test SUPPORTS_AS_NEEDED - Success
-- Performing Test SUPPORTS_NO_UNDEFINED
-- Performing Test SUPPORTS_NO_UNDEFINED - Success
-- Performing Test _LDSYMVER_SUCCESS
-- Performing Test _LDSYMVER_SUCCESS - Success
-- Found LDSymVer: GNU  
-- Found pandoc: /usr/bin/pandoc (found version "2.0.6") 
-- Could NOT find rst2man (missing: RST2MAN_EXECUTABLE RST2MAN_VERSION_STRING) 
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE  
-- Found PkgConfig: /usr/bin/pkg-config (found version "1.4.2") 
-- Checking for modules 'libnl-3.0;libnl-route-3.0'
--   Found libnl-3.0, version 3.5.0
--   Found libnl-route-3.0, version 3.5.0
-- Performing Test HAVE_WORKING_IF_H
-- Performing Test HAVE_WORKING_IF_H - Success
-- Found UDev: /usr/lib64/libudev.so  
-- Check size of long
-- Check size of long - done
-- Performing Test HAVE_COHERENT_DMA
-- Performing Test HAVE_COHERENT_DMA - Success
-- Found Systemd: /usr/lib64/libsystemd.so  
-- Looking for valgrind/memcheck.h
-- Looking for valgrind/memcheck.h - found
-- Looking for valgrind/drd.h
-- Looking for valgrind/drd.h - found
-- Performing Test LIBC_HAS_LIBRT
-- Performing Test LIBC_HAS_LIBRT - Success
-- Performing Test HAVE_STATIC_ASSERT
-- Performing Test HAVE_STATIC_ASSERT - Success
-- Performing Test HAVE_C_WSTRICT_PROTOTYPES
-- Performing Test HAVE_C_WSTRICT_PROTOTYPES - Success
-- Performing Test HAVE_C_WOLD_STYLE_DEFINITION
-- Performing Test HAVE_C_WOLD_STYLE_DEFINITION - Success
-- Performing Test HAVE_C_WREDUNDANT_DECLS
-- Performing Test HAVE_C_WREDUNDANT_DECLS - Success
-- Performing Test HAVE_GLIBC_GETRANDOM
-- Performing Test HAVE_GLIBC_GETRANDOM - Success
-- Performing Test HAVE_GLIBC_FXSTAT
-- Performing Test HAVE_GLIBC_FXSTAT - Success
-- Missing Optional Items:
--  Compiler attribute symver NOT supported, can not use LTO
--  rst2man NOT found (using prebuilt man pages)
--  cython NOT found (disabling pyverbs)
-- Configuring done
-- Generating done
-- Build files have been written to: /home/mr_halfword/rdma-core-35.0/build
[400/400] Linking C shared module lib/libibacmp.so

After the build could see irdma related files:

[mr_halfword@haswell-alma rdma-core-35.0]$ find . -name '*irdma*'
./kernel-headers/rdma/irdma-abi.h
./providers/irdma
./providers/irdma/irdma.h
./build/include/rdma/irdma-abi.h
./build/include/kernel-abi/irdma-abi.h
./build/lib/libirdma-rdmav34.so
./build/providers/irdma
./build/providers/irdma/CMakeFiles/irdma-rdmav34.dir
./build/providers/irdma/irdma.driver
./build/etc/libibverbs.d/irdma.driver

5. Try building an unmodified rdma-core release which includes irdma support

Downloaded the most recent release v39.0:

--2022-01-30 17:27:21--  https://github.com/linux-rdma/rdma-core/releases/download/v39.0/rdma-core-39.0.tar.gz
Resolving github.com (github.com)... 140.82.121.3
Connecting to github.com (github.com)|140.82.121.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://objects.githubusercontent.com/github-production-release-asset-2e65be/68456226/9ccddf91-1c39-4d7d-a5df-9c29cca264ea?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20220130%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20220130T172721Z&X-Amz-Expires=300&X-Amz-Signature=18db0ab4ec706b724cfed054c446f9faf7acdf908c22e9f46abb5bb5be73010c&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=68456226&response-content-disposition=attachment%3B%20filename%3Drdma-core-39.0.tar.gz&response-content-type=application%2Foctet-stream [following]
--2022-01-30 17:27:21--  https://objects.githubusercontent.com/github-production-release-asset-2e65be/68456226/9ccddf91-1c39-4d7d-a5df-9c29cca264ea?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20220130%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20220130T172721Z&X-Amz-Expires=300&X-Amz-Signature=18db0ab4ec706b724cfed054c446f9faf7acdf908c22e9f46abb5bb5be73010c&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=68456226&response-content-disposition=attachment%3B%20filename%3Drdma-core-39.0.tar.gz&response-content-type=application%2Foctet-stream
Resolving objects.githubusercontent.com (objects.githubusercontent.com)... 185.199.111.133, 185.199.109.133, 185.199.110.133, ...
Connecting to objects.githubusercontent.com (objects.githubusercontent.com)|185.199.111.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1854581 (1.8M) [application/octet-stream]
Saving to: ‘rdma-core-39.0.tar.gz’

rdma-core-39.0.tar. 100%[===================>]   1.77M  7.49MB/s    in 0.2s    

2022-01-30 17:27:22 (7.49 MB/s) - ‘rdma-core-39.0.tar.gz’ saved [1854581/1854581]

Untar and build:

[mr_halfword@haswell-alma ~]$ tar -xzf rdma-core-39.0.tar.gz
[mr_halfword@haswell-alma ~]$ cd rdma-core-39.0/
[mr_halfword@haswell-alma rdma-core-39.0]$ ./build.sh 
-- The C compiler identification is GNU 8.5.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Could NOT find cython (missing: CYTHON_EXECUTABLE CYTHON_VERSION_STRING) 
-- Performing Test HAVE_NO_SPARSE
-- Performing Test HAVE_NO_SPARSE - Success
-- Performing Test HAVE_C_WARNINGS
-- Performing Test HAVE_C_WARNINGS - Success
-- Performing Test HAVE_C_WMISSING_PROTOTYPES
-- Performing Test HAVE_C_WMISSING_PROTOTYPES - Success
-- Performing Test HAVE_C_WMISSING_DECLARATIONS
-- Performing Test HAVE_C_WMISSING_DECLARATIONS - Success
-- Performing Test HAVE_C_WWRITE_STRINGS
-- Performing Test HAVE_C_WWRITE_STRINGS - Success
-- Performing Test HAVE_C_WFORMAT_2
-- Performing Test HAVE_C_WFORMAT_2 - Success
-- Performing Test HAVE_C_WCAST_FUNCTION
-- Performing Test HAVE_C_WCAST_FUNCTION - Success
-- Performing Test HAVE_C_WFORMAT_NONLITERAL
-- Performing Test HAVE_C_WFORMAT_NONLITERAL - Success
-- Performing Test HAVE_C_WDATE_TIME
-- Performing Test HAVE_C_WDATE_TIME - Success
-- Performing Test HAVE_C_WNESTED_EXTERNS
-- Performing Test HAVE_C_WNESTED_EXTERNS - Success
-- Performing Test HAVE_C_WORKING_SHADOW
-- Performing Test HAVE_C_WORKING_SHADOW - Success
-- Performing Test HAVE_C_WORKING_MISSING_FIELD_INITIALIZERS
-- Performing Test HAVE_C_WORKING_MISSING_FIELD_INITIALIZERS - Success
-- Performing Test HAVE_NO_STRICT_ALIASING
-- Performing Test HAVE_NO_STRICT_ALIASING - Success
-- Performing Test HAVE_NO_VAR_TRACKING_ASSIGNMENTS
-- Performing Test HAVE_NO_VAR_TRACKING_ASSIGNMENTS - Success
-- Performing Test HAVE_FUNC_ATTRIBUTE_IFUNC
-- Performing Test HAVE_FUNC_ATTRIBUTE_IFUNC - Success
-- Performing Test HAVE_FUNC_ATTRIBUTE_SYMVER
-- Performing Test HAVE_FUNC_ATTRIBUTE_SYMVER - Failed
-- Performing Test HAS_CLOEXEC
-- Performing Test HAS_CLOEXEC - Success
-- Performing Test HAVE_FUNC_ATTRIBUTE_ALWAYS_INLINE
-- Performing Test HAVE_FUNC_ATTRIBUTE_ALWAYS_INLINE - Success
-- Performing Test HAVE_LONG_LONG_U64
-- Performing Test HAVE_LONG_LONG_U64 - Success
-- Performing Test HAVE_GLIBC_UAPI_COMPAT
-- Performing Test HAVE_GLIBC_UAPI_COMPAT - Success
-- Performing Test HAVE_WORKING_STRICT_ALIASING
-- Performing Test HAVE_WORKING_STRICT_ALIASING - Success
-- Performing Test HAVE_LARGE_FILES
-- Performing Test HAVE_LARGE_FILES - Success
-- Looking for stdatomic.h
-- Looking for stdatomic.h - found
-- Performing Test HAVE_TARGET_SSE
-- Performing Test HAVE_TARGET_SSE - Success
-- Performing Test SUPPORTS_AS_NEEDED
-- Performing Test SUPPORTS_AS_NEEDED - Success
-- Performing Test SUPPORTS_NO_UNDEFINED
-- Performing Test SUPPORTS_NO_UNDEFINED - Success
-- Performing Test _LDSYMVER_SUCCESS
-- Performing Test _LDSYMVER_SUCCESS - Success
-- Found LDSymVer: GNU  
-- Found pandoc: /usr/bin/pandoc (found version "2.0.6") 
-- Could NOT find rst2man (missing: RST2MAN_EXECUTABLE RST2MAN_VERSION_STRING) 
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE  
-- Found PkgConfig: /usr/bin/pkg-config (found version "1.4.2") 
-- Checking for modules 'libnl-3.0;libnl-route-3.0'
--   Found libnl-3.0, version 3.5.0
--   Found libnl-route-3.0, version 3.5.0
-- Performing Test HAVE_WORKING_IF_H
-- Performing Test HAVE_WORKING_IF_H - Success
-- Found UDev: /usr/lib64/libudev.so  
-- Check size of long
-- Check size of long - done
-- Performing Test HAVE_COHERENT_DMA
-- Performing Test HAVE_COHERENT_DMA - Success
-- Found Systemd: /usr/lib64/libsystemd.so  
-- Looking for valgrind/memcheck.h
-- Looking for valgrind/memcheck.h - found
-- Looking for valgrind/drd.h
-- Looking for valgrind/drd.h - found
-- Performing Test LIBC_HAS_LIBRT
-- Performing Test LIBC_HAS_LIBRT - Success
-- Performing Test HAVE_STATIC_ASSERT
-- Performing Test HAVE_STATIC_ASSERT - Success
-- Performing Test HAVE_C_WSTRICT_PROTOTYPES
-- Performing Test HAVE_C_WSTRICT_PROTOTYPES - Success
-- Performing Test HAVE_C_WOLD_STYLE_DEFINITION
-- Performing Test HAVE_C_WOLD_STYLE_DEFINITION - Success
-- Performing Test HAVE_C_WREDUNDANT_DECLS
-- Performing Test HAVE_C_WREDUNDANT_DECLS - Success
-- Performing Test HAVE_GLIBC_GETRANDOM
-- Performing Test HAVE_GLIBC_GETRANDOM - Success
-- Performing Test HAVE_GLIBC_FXSTAT
-- Performing Test HAVE_GLIBC_FXSTAT - Success
-- Missing Optional Items:
--  Compiler attribute symver NOT supported, can not use LTO
--  rst2man NOT found (using prebuilt man pages)
--  cython NOT found (disabling pyverbs)
-- Configuring done
-- Generating done
-- Build files have been written to: /home/mr_halfword/rdma-core-39.0/build
[417/417] Linking C shared module lib/libibacmp.so

After the build could see irdma related files:

[mr_halfword@haswell-alma rdma-core-39.0]$ find . -name '*irdma*'
./kernel-headers/rdma/irdma-abi.h
./providers/irdma
./providers/irdma/irdma.h
./build/include/rdma/irdma-abi.h
./build/include/kernel-abi/irdma-abi.h
./build/lib/libirdma-rdmav34.so
./build/providers/irdma
./build/providers/irdma/CMakeFiles/irdma-rdmav34.dir
./build/providers/irdma/irdma.driver
./build/etc/libibverbs.d/irdma.driver

6. Try updating to a 5.16 mainline Kernel to get a pre-built irdma driver

Attempted to follow the steps in How to upgrade Linux Kernel on Rocky Linux/AlmaLinux/CentOS 8

There are no outstanding updates, to the previous upgrade from AlmaLinux 8.4 to 8.5:

[mr_halfword@haswell-alma ~]$ sudo dnf update
[sudo] password for mr_halfword: 
Last metadata expiration check: 3:39:30 ago on Sun 30 Jan 2022 14:21:44 GMT.
Dependencies resolved.
Nothing to do.
Complete!

Install Install ELRepo repository:

[mr_halfword@haswell-alma ~]$ sudo dnf install https://www.elrepo.org/elrepo-release-8.el8.elrepo.noarch.rpm
Last metadata expiration check: 3:41:22 ago on Sun 30 Jan 2022 14:21:44 GMT.
elrepo-release-8.el8.elrepo.noarch.rpm           17 kB/s |  13 kB     00:00    
Dependencies resolved.
================================================================================
 Package             Arch        Version                Repository         Size
================================================================================
Installing:
 elrepo-release      noarch      8.2-1.el8.elrepo       @commandline       13 k

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

Total size: 13 k
Installed size: 5.0 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       : elrepo-release-8.2-1.el8.elrepo.noarch                 1/1 
  Verifying        : elrepo-release-8.2-1.el8.elrepo.noarch                 1/1 

Installed:
  elrepo-release-8.2-1.el8.elrepo.noarch                                        

Complete!

Initial attempt to install the mainline Kernel failed with conlicts on the kernel-headers:

[mr_halfword@haswell-alma ~]$ sudo dnf --enablerepo=elrepo-kernel install kernel-ml kernel-ml-devel kernel-ml-headers
ELRepo.org Community Enterprise Linux Repositor 365 kB/s | 247 kB     00:00    
ELRepo.org Community Enterprise Linux Kernel Re 2.6 MB/s | 2.0 MB     00:00    
Error: 
 Problem: problem with installed package kernel-headers-4.18.0-348.12.2.el8_5.x86_64
  - package kernel-ml-headers-5.16.4-1.el8.elrepo.x86_64 conflicts with kernel-headers < 5.16.4-1.el8.elrepo provided by kernel-headers-4.18.0-348.12.2.el8_5.x86_64
  - package kernel-ml-headers-5.16.4-1.el8.elrepo.x86_64 conflicts with kernel-headers < 5.16.4-1.el8.elrepo provided by kernel-headers-4.18.0-348.2.1.el8_5.x86_64
  - package kernel-ml-headers-5.16.4-1.el8.elrepo.x86_64 conflicts with kernel-headers < 5.16.4-1.el8.elrepo provided by kernel-headers-4.18.0-348.7.1.el8_5.x86_64
  - package kernel-ml-headers-5.16.4-1.el8.elrepo.x86_64 conflicts with kernel-headers < 5.16.4-1.el8.elrepo provided by kernel-headers-4.18.0-348.el8.x86_64
  - cannot install the best candidate for the job
(try to add '--allowerasing' to command line to replace conflicting packages or '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages)

Re-run but adding the -allowerasing option as suggested. That erases the kernel-headers-4.18.0-348.el8.x86_64 package but should be able to put them back if required:

[mr_halfword@haswell-alma ~]$ sudo dnf --allowerasing --enablerepo=elrepo-kernel install kernel-ml kernel-ml-devel kernel-ml-headers
[sudo] password for mr_halfword: 
Last metadata expiration check: 0:07:15 ago on Sun 30 Jan 2022 18:04:04 GMT.
Dependencies resolved.
================================================================================
 Package              Arch      Version                  Repository        Size
================================================================================
Installing:
 kernel-ml            x86_64    5.16.4-1.el8.elrepo      elrepo-kernel     78 k
 kernel-ml-devel      x86_64    5.16.4-1.el8.elrepo      elrepo-kernel     14 M
 kernel-ml-headers    x86_64    5.16.4-1.el8.elrepo      elrepo-kernel    1.5 M
Installing dependencies:
 kernel-ml-core       x86_64    5.16.4-1.el8.elrepo      elrepo-kernel     32 M
 kernel-ml-modules    x86_64    5.16.4-1.el8.elrepo      elrepo-kernel     27 M
Removing dependent packages:
 kernel-headers       x86_64    4.18.0-348.12.2.el8_5    @baseos          5.1 M

Transaction Summary
================================================================================
Install  5 Packages
Remove   1 Package

Total download size: 75 M
Is this ok [y/N]: y
Downloading Packages:
(1/5): kernel-ml-5.16.4-1.el8.elrepo.x86_64.rpm 554 kB/s |  78 kB     00:00    
(2/5): kernel-ml-headers-5.16.4-1.el8.elrepo.x8 2.3 MB/s | 1.5 MB     00:00    
(3/5): kernel-ml-devel-5.16.4-1.el8.elrepo.x86_ 2.3 MB/s |  14 MB     00:05    
(4/5): kernel-ml-core-5.16.4-1.el8.elrepo.x86_6 3.1 MB/s |  32 MB     00:10    
(5/5): kernel-ml-modules-5.16.4-1.el8.elrepo.x8 2.6 MB/s |  27 MB     00:10    
--------------------------------------------------------------------------------
Total                                           6.5 MB/s |  75 MB     00:11     
ELRepo.org Community Enterprise Linux Kernel Re 1.6 MB/s | 1.7 kB     00:00    
Importing GPG key 0xBAADAE52:
 Userid     : "elrepo.org (RPM Signing Key for elrepo.org) <[email protected]>"
 Fingerprint: 96C0 104F 6315 4731 1E0B B1AE 309B C305 BAAD AE52
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-elrepo.org
Is this ok [y/N]: y
Key imported successfully
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : kernel-ml-core-5.16.4-1.el8.elrepo.x86_64              1/6 
  Running scriptlet: kernel-ml-core-5.16.4-1.el8.elrepo.x86_64              1/6 
/usr/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : kernel-ml-modules-5.16.4-1.el8.elrepo.x86_64           2/6 
  Running scriptlet: kernel-ml-modules-5.16.4-1.el8.elrepo.x86_64           2/6 
  Installing       : kernel-ml-5.16.4-1.el8.elrepo.x86_64                   3/6 
  Installing       : kernel-ml-headers-5.16.4-1.el8.elrepo.x86_64           4/6 
  Installing       : kernel-ml-devel-5.16.4-1.el8.elrepo.x86_64             5/6 
  Running scriptlet: kernel-ml-devel-5.16.4-1.el8.elrepo.x86_64             5/6 
  Erasing          : kernel-headers-4.18.0-348.12.2.el8_5.x86_64            6/6 
  Running scriptlet: kernel-ml-core-5.16.4-1.el8.elrepo.x86_64              6/6 
ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Running scriptlet: kernel-headers-4.18.0-348.12.2.el8_5.x86_64            6/6 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : kernel-ml-5.16.4-1.el8.elrepo.x86_64                   1/6 
  Verifying        : kernel-ml-core-5.16.4-1.el8.elrepo.x86_64              2/6 
  Verifying        : kernel-ml-devel-5.16.4-1.el8.elrepo.x86_64             3/6 
  Verifying        : kernel-ml-headers-5.16.4-1.el8.elrepo.x86_64           4/6 
  Verifying        : kernel-ml-modules-5.16.4-1.el8.elrepo.x86_64           5/6 
  Verifying        : kernel-headers-4.18.0-348.12.2.el8_5.x86_64            6/6 

Installed:
  kernel-ml-5.16.4-1.el8.elrepo.x86_64                                          
  kernel-ml-core-5.16.4-1.el8.elrepo.x86_64                                     
  kernel-ml-devel-5.16.4-1.el8.elrepo.x86_64                                    
  kernel-ml-headers-5.16.4-1.el8.elrepo.x86_64                                  
  kernel-ml-modules-5.16.4-1.el8.elrepo.x86_64                                  
Removed:
  kernel-headers-4.18.0-348.12.2.el8_5.x86_64                                   

Complete!

The Fingerprint for the elrepo.org matched that reported in the webpage for the instructions being followed.

6.1 Got a irdma module, but all mainline Kernel modules are unsigned

After a reboot the Kernel version has been updated and the AlmaLinux release is still the same:

[mr_halfword@haswell-alma ~]$ uname -a
Linux haswell-alma 5.16.4-1.el8.elrepo.x86_64 #1 SMP PREEMPT Fri Jan 28 08:31:20 EST 2022 x86_64 x86_64 x86_64 GNU/Linux
[mr_halfword@haswell-alma ~]$ cat /etc/redhat-release 
AlmaLinux release 8.5 (Arctic Sphynx)

There is irdma Kernel module, but realised all modules in the mainline Kernel are unsigned:

[mr_halfword@haswell-alma ~]$ modinfo irdma
filename:       /lib/modules/5.16.4-1.el8.elrepo.x86_64/kernel/drivers/infiniband/hw/irdma/irdma.ko.xz
license:        Dual BSD/GPL
description:    Intel(R) Ethernet Protocol Driver for RDMA
author:         Intel Corporation, <[email protected]>
alias:          i40iw
srcversion:     7537F8708BDA400F295F268
alias:          auxiliary:ice.roce
alias:          auxiliary:ice.iwarp
alias:          auxiliary:i40e.iwarp
depends:        ib_core,ice,i40e,ib_uverbs
retpoline:      Y
intree:         Y
name:           irdma
vermagic:       5.16.4-1.el8.elrepo.x86_64 SMP preempt mod_unload modversions 

Also, the mainline Kernel resolved the issue in 3 and the mlx4_core Kernel module has been compiled with support the Mellanox ConnectX-2.

7. Installing rdma-core v35.0 patched by irdma

7.1. Erase rdma-core installed by AlmaLinux

The README_irdma.txt said to use the following command to erase rdma-core, but based upon the large list of packages to be removed didn't perform the action:

[mr_halfword@haswell-alma rdma-core-35.0]$ sudo yum remove rdma-core
Dependencies resolved.
================================================================================
 Package          Arch   Version                               Repository  Size
================================================================================
Removing:
 rdma-core        x86_64 35.0-1.el8                            @baseos    105 k
Removing dependent packages:
 buildah          x86_64 1.22.3-2.module_el8.5.0+2586+018f24d7 @appstream  28 M
 cockpit-podman   noarch 33-1.module_el8.5.0+2586+018f24d7     @appstream 438 k
 containers-common
                  noarch 2:1-2.module_el8.5.0+2586+018f24d7    @appstream 236 k
 firewalld        noarch 0.9.3-7.el8                           @baseos    2.0 M
 gnome-boxes      x86_64 3.36.5-8.el8                          @AppStream 6.3 M
 iptables         x86_64 1.8.4-20.el8                          @baseos    1.9 M
 iptstate         x86_64 2.2.6-6.el8                           @anaconda  102 k
 libibverbs-utils x86_64 35.0-1.el8                            @baseos    212 k
 libvirt-daemon-driver-storage-iscsi-direct
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream  49 k
 nmap-ncat        x86_64 2:7.70-6.el8                          @appstream 480 k
 podman           x86_64 3.3.1-9.module_el8.5.0+2586+018f24d7  @appstream  48 M
 tcpdump          x86_64 14:4.9.3-2.el8                        @appstream 1.1 M
Removing unused dependencies:
 boost-atomic     x86_64 1.66.0-10.el8                         @AppStream 8.6 k
 boost-chrono     x86_64 1.66.0-10.el8                         @AppStream  38 k
 boost-date-time  x86_64 1.66.0-10.el8                         @AppStream  78 k
 boost-iostreams  x86_64 1.66.0-10.el8                         @AppStream 130 k
 boost-program-options
                  x86_64 1.66.0-10.el8                         @AppStream 523 k
 boost-random     x86_64 1.66.0-10.el8                         @AppStream  38 k
 boost-regex      x86_64 1.66.0-10.el8                         @AppStream 1.1 M
 boost-system     x86_64 1.66.0-10.el8                         @AppStream  22 k
 boost-thread     x86_64 1.66.0-10.el8                         @AppStream 179 k
 celt051          x86_64 0.5.1.3-15.el8                        @AppStream 130 k
 conmon           x86_64 2:2.0.29-1.module_el8.5.0+2586+018f24d7
                                                               @appstream 164 k
 container-selinux
                  noarch 2:2.167.0-1.module_el8.5.0+2586+018f24d7
                                                               @appstream  48 k
 criu             x86_64 3.15-3.module_el8.5.0+2586+018f24d7   @appstream 1.4 M
 cyrus-sasl       x86_64 2.1.27-5.el8                          @anaconda  150 k
 edk2-ovmf        noarch 20210527gite1999b264f1f-3.el8         @appstream  12 M
 firewalld-filesystem
                  noarch 0.9.3-7.el8                           @baseos    239  
 freerdp-libs     x86_64 2:2.2.0-7.el8_5                       @appstream 2.5 M
 fuse-overlayfs   x86_64 1.7.1-1.module_el8.5.0+2586+018f24d7  @appstream 145 k
 fuse3            x86_64 3.2.1-12.el8                          @anaconda   90 k
 fuse3-libs       x86_64 3.2.1-12.el8                          @anaconda  279 k
 glusterfs        x86_64 6.0-56.4.el8                          @baseos    2.7 M
 glusterfs-api    x86_64 6.0-56.4.el8                          @appstream 221 k
 glusterfs-cli    x86_64 6.0-56.4.el8                          @appstream 508 k
 glusterfs-client-xlators
                  x86_64 6.0-56.4.el8                          @baseos    4.1 M
 glusterfs-libs   x86_64 6.0-56.4.el8                          @baseos    1.7 M
 gssproxy         x86_64 0.8.0-19.el8                          @anaconda  262 k
 gtk-vnc2         x86_64 0.9.0-2.el8                           @AppStream 220 k
 gvnc             x86_64 0.9.0-2.el8                           @AppStream 251 k
 iproute-tc       x86_64 5.12.0-4.el8                          @baseos    869 k
 ipset            x86_64 7.1-1.el8                             @anaconda   63 k
 ipset-libs       x86_64 7.1-1.el8                             @anaconda  217 k
 iptables-ebtables
                  x86_64 1.8.4-20.el8                          @baseos     14 k
 iptables-libs    x86_64 1.8.4-20.el8                          @baseos    198 k
 ipxe-roms-qemu   noarch 20181214-8.git133f4c47.el8            @AppStream 2.6 M
 keyutils         x86_64 1.5.10-9.el8                          @baseos    118 k
 libcacard        x86_64 3:2.7.0-2.el8_1                       @AppStream 116 k
 libibumad        x86_64 35.0-1.el8                            @baseos     40 k
 libibverbs       x86_64 35.0-1.el8                            @baseos    861 k
 libiscsi         x86_64 1.18.0-8.module_el8.5.0+2608+72063365 @appstream 225 k
 libnet           x86_64 1.1.6-15.el8                          @AppStream 170 k
 libnetfilter_conntrack
                  x86_64 1.0.6-5.el8                           @anaconda  161 k
 libnfnetlink     x86_64 1.0.1-13.el8                          @anaconda   51 k
 libnftnl         x86_64 1.1.5-4.el8                           @anaconda  374 k
 libpcap          x86_64 14:1.9.1-5.el8                        @anaconda  376 k
 libpmem          x86_64 1.6.1-1.el8                           @AppStream 274 k
 librados2        x86_64 1:12.2.7-9.el8                        @AppStream  12 M
 librbd1          x86_64 1:12.2.7-9.el8                        @AppStream 4.4 M
 librdmacm        x86_64 35.0-1.el8                            @baseos    140 k
 libslirp         x86_64 4.4.0-1.module_el8.5.0+2586+018f24d7  @appstream 134 k
 libverto-libevent
                  x86_64 0.3.0-5.el8                           @anaconda   12 k
 libvirt-daemon   x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream 1.3 M
 libvirt-daemon-config-network
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream 508  
 libvirt-daemon-driver-interface
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream 591 k
 libvirt-daemon-driver-network
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream 666 k
 libvirt-daemon-driver-nodedev
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream 588 k
 libvirt-daemon-driver-nwfilter
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream 649 k
 libvirt-daemon-driver-qemu
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream 2.3 M
 libvirt-daemon-driver-secret
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream 560 k
 libvirt-daemon-driver-storage
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream   0  
 libvirt-daemon-driver-storage-core
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream 772 k
 libvirt-daemon-driver-storage-disk
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream  49 k
 libvirt-daemon-driver-storage-gluster
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream  86 k
 libvirt-daemon-driver-storage-iscsi
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream  41 k
 libvirt-daemon-driver-storage-logical
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream  53 k
 libvirt-daemon-driver-storage-mpath
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream  37 k
 libvirt-daemon-driver-storage-rbd
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream  65 k
 libvirt-daemon-driver-storage-scsi
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream  41 k
 libvirt-daemon-kvm
                  x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream   0  
 libvirt-gconfig  x86_64 3.0.0-1.el8                           @AppStream 379 k
 libvirt-glib     x86_64 3.0.0-1.el8                           @AppStream 295 k
 libvirt-gobject  x86_64 3.0.0-1.el8                           @AppStream 229 k
 libvirt-libs     x86_64 6.0.0-37.module_el8.5.0+2608+72063365 @appstream  22 M
 libwinpr         x86_64 2:2.2.0-7.el8_5                       @appstream 1.1 M
 mtools           x86_64 4.0.18-14.el8                         @anaconda  365 k
 netcf-libs       x86_64 0.2.8-12.module_el8.5.0+2608+72063365 @appstream 204 k
 nfs-utils        x86_64 1:2.3.3-46.el8                        @baseos    1.5 M
 nftables         x86_64 1:0.9.3-21.el8                        @baseos    825 k
 numad            x86_64 0.5-26.20150602git.el8                @anaconda   58 k
 openssh-askpass  x86_64 8.0p1-10.el8                          @appstream  16 k
 podman-catatonit x86_64 3.3.1-9.module_el8.5.0+2586+018f24d7  @appstream 760 k
 python3-firewall noarch 0.9.3-7.el8                           @baseos    2.0 M
 python3-nftables x86_64 1:0.9.3-21.el8                        @baseos     28 k
 qemu-img         x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                               @appstream 4.9 M
 qemu-kvm         x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                               @appstream   0  
 qemu-kvm-block-curl
                  x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                               @appstream  33 k
 qemu-kvm-block-gluster
                  x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                               @appstream  37 k
 qemu-kvm-block-iscsi
                  x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                               @appstream  47 k
 qemu-kvm-block-rbd
                  x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                               @appstream  33 k
 qemu-kvm-block-ssh
                  x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                               @appstream  39 k
 qemu-kvm-common  x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                               @appstream 5.3 M
 qemu-kvm-core    x86_64 15:4.2.0-59.module_el8.5.0+2608+72063365.1
                                                               @appstream  16 M
 radvd            x86_64 2.17-15.el8                           @AppStream 188 k
 rpcbind          x86_64 1.2.5-8.el8                           @anaconda  108 k
 runc             x86_64 1.0.2-1.module_el8.5.0+2586+018f24d7  @appstream  11 M
 seabios-bin      noarch 1.13.0-2.module_el8.5.0+2608+72063365 @appstream 384 k
 seavgabios-bin   noarch 1.13.0-2.module_el8.5.0+2608+72063365 @appstream 210 k
 sgabios-bin      noarch 1:0.20170427git-3.module_el8.5.0+2608+72063365
                                                               @appstream 4.0 k
 slirp4netns      x86_64 1.1.8-1.module_el8.5.0+2586+018f24d7  @appstream  98 k
 spice-glib       x86_64 0.38-6.el8                            @AppStream 1.3 M
 spice-gtk3       x86_64 0.38-6.el8                            @AppStream 291 k
 spice-server     x86_64 0.14.3-4.el8                          @AppStream 1.2 M
 systemd-container
                  x86_64 239-51.el8_5.3                        @baseos    1.6 M
 usbredir         x86_64 0.8.0-1.el8                           @AppStream 103 k
 yajl             x86_64 2.1.0-10.el8                          @AppStream  85 k

Transaction Summary
================================================================================
Remove  117 Packages

Freed space: 221 M
Is this ok [y/N]: n
Operation aborted.

Therefore, performed the following set of rpm command which ignore the dependent packages:

[mr_halfword@haswell-alma rdma-core-35.0]$ sudo rpm -e --nodeps ibacm iwpmd libibumad libibverbs librdmacm srp_daemon infiniband-diags
error: package ibacm is not installed
error: package iwpmd is not installed
error: package srp_daemon is not installed
error: package infiniband-diags is not installed
[mr_halfword@haswell-alma rdma-core-35.0]$ sudo rpm -e --nodeps rdma-core
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored
[mr_halfword@haswell-alma rdma-core-35.0]$ sudo rpm -e --nodeps libibverbs-utils
[sudo] password for mr_halfword: 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

7.2 Rebuilt the patched rmda-core v35.0, but with packages this time

Apply patch libirdma-35.0.patch to rdma-core:

[mr_halfword@haswell-alma ~]$ tar -xzf rdma-core-35.0.tar.gz
[mr_halfword@haswell-alma ~]$ cd rdma-core-35.0
[mr_halfword@haswell-alma rdma-core-35.0]$ patch -p2 < ~/E810-2CQDA2/irdma-1.7.72/libirdma-35.0.patch 
patching file CMakeLists.txt
patching file debian/control
patching file debian/copyright
patching file iwpmd/iwarp_pm_common.c
patching file iwpmd/iwarp_pm_helper.c
patching file iwpmd/iwarp_pm_server.c
patching file kernel-boot/rdma-description.rules
patching file kernel-boot/rdma-hw-modules.rules
patching file kernel-headers/CMakeLists.txt
patching file kernel-headers/rdma/i40iw-abi.h
patching file kernel-headers/rdma/ib_user_ioctl_verbs.h
patching file kernel-headers/rdma/irdma-abi.h
patching file libibverbs/verbs.h
patching file MAINTAINERS
patching file providers/i40iw/CMakeLists.txt
patching file providers/i40iw/i40e_devids.h
patching file providers/i40iw/i40iw-abi.h
patching file providers/i40iw/i40iw_d.h
patching file providers/i40iw/i40iw_osdep.h
patching file providers/i40iw/i40iw_register.h
patching file providers/i40iw/i40iw_status.h
patching file providers/i40iw/i40iw_uk.c
patching file providers/i40iw/i40iw_umain.c
patching file providers/i40iw/i40iw_umain.h
patching file providers/i40iw/i40iw_user.h
patching file providers/i40iw/i40iw_uverbs.c
patching file providers/irdma/abi.h
patching file providers/irdma/CMakeLists.txt
patching file providers/irdma/defs.h
patching file providers/irdma/i40e_devids.h
patching file providers/irdma/i40iw_hw.h
patching file providers/irdma/ice_devids.h
patching file providers/irdma/irdma.h
patching file providers/irdma/osdep.h
patching file providers/irdma/status.h
patching file providers/irdma/uk.c
patching file providers/irdma/umain.c
patching file providers/irdma/umain.h
patching file providers/irdma/user.h
patching file providers/irdma/uverbs.c
patching file redhat/rdma-core.spec
patching file suse/rdma-core.spec

Make sure directories rdma-core/redhat and contents are under group 'root':

[mr_halfword@haswell-alma rdma-core-35.0]$ cd ..
[mr_halfword@haswell-alma ~]$ sudo chgrp -R root rdma-core-35.0/redhat

Zip with proper name for building (note "tgz" extension instead of "tar.gz"):

[mr_halfword@haswell-alma ~]$ tar -zcf rdma-core-35.0.tgz rdma-core-35.0

Initial attempt to build rdma-core, which failed due to missing dependencies:

[mr_halfword@haswell-alma ~]$ mkdir -p ~/rpmbuild/SOURCES
[mr_halfword@haswell-alma ~]$ mkdir -p ~/rpmbuild/SPECS
[mr_halfword@haswell-alma ~]$ cp rdma-core-35.0.tgz ~/rpmbuild/SOURCES/
[mr_halfword@haswell-alma ~]$ cd ~/rpmbuild/SOURCES
[mr_halfword@haswell-alma SOURCES]$ tar -xzf rdma-core-35.0.tgz
[mr_halfword@haswell-alma SOURCES]$ cp ~/rpmbuild/SOURCES/rdma-core-35.0/redhat/rdma-core.spec ~/rpmbuild/SPECS/
[mr_halfword@haswell-alma SOURCES]$ cd ~/rpmbuild/SPECS/
[mr_halfword@haswell-alma SPECS]$ rpmbuild -ba rdma-core.spec
bash: rpmbuild: command not found...
Install package 'rpm-build' to provide command 'rpmbuild'? [N/y] n

Install rpm-build:

[mr_halfword@haswell-alma SPECS]$ sudo yum install rpm-build
Last metadata expiration check: 0:52:36 ago on Sun 30 Jan 2022 20:11:45 GMT.
Dependencies resolved.
================================================================================
 Package                   Arch        Version             Repository      Size
================================================================================
Installing:
 rpm-build                 x86_64      4.14.3-19.el8       appstream      172 k
Installing dependencies:
 annobin                   x86_64      9.72-1.el8_5.2      appstream      110 k
 dwz                       x86_64      0.12-10.el8         appstream      108 k
 efi-srpm-macros           noarch      3-3.el8             appstream       21 k
 elfutils                  x86_64      0.185-1.el8         baseos         539 k
 gc                        x86_64      7.6.4-3.el8         appstream      109 k
 gdb-headless              x86_64      8.2-16.el8          appstream      3.7 M
 ghc-srpm-macros           noarch      1.4.2-7.el8         appstream      9.2 k
 go-srpm-macros            noarch      2-17.el8            appstream       12 k
 guile                     x86_64      5:2.0.14-7.el8      appstream      3.5 M
 libatomic_ops             x86_64      7.6.2-3.el8         appstream       38 k
 libbabeltrace             x86_64      1.5.4-3.el8         baseos         200 k
 libipt                    x86_64      1.6.1-8.el8         appstream       50 k
 ocaml-srpm-macros         noarch      5-4.el8             appstream      9.2 k
 openblas-srpm-macros      noarch      2-2.el8             appstream      7.8 k
 perl-srpm-macros          noarch      1-25.el8            appstream       11 k
 python-rpm-macros         noarch      3-41.el8            appstream       14 k
 python-srpm-macros        noarch      3-41.el8            appstream       13 k
 python3-rpm-macros        noarch      3-41.el8            appstream       13 k
 qt5-srpm-macros           noarch      5.15.2-1.el8        appstream      9.5 k
 redhat-rpm-config         noarch      125-1.el8.alma      appstream       86 k
 rust-srpm-macros          noarch      5-2.el8             appstream      9.1 k
 zstd                      x86_64      1.4.4-1.el8         appstream      395 k

Transaction Summary
================================================================================
Install  23 Packages

Total download size: 9.1 M
Installed size: 29 M
Is this ok [y/N]: y
Downloading Packages:
(1/23): libbabeltrace-1.5.4-3.el8.x86_64.rpm    632 kB/s | 200 kB     00:00    
(2/23): elfutils-0.185-1.el8.x86_64.rpm         1.1 MB/s | 539 kB     00:00    
(3/23): annobin-9.72-1.el8_5.2.x86_64.rpm       126 kB/s | 110 kB     00:00    
(4/23): dwz-0.12-10.el8.x86_64.rpm              137 kB/s | 108 kB     00:00    
(5/23): efi-srpm-macros-3-3.el8.noarch.rpm       33 kB/s |  21 kB     00:00    
(6/23): gc-7.6.4-3.el8.x86_64.rpm               287 kB/s | 109 kB     00:00    
(7/23): ghc-srpm-macros-1.4.2-7.el8.noarch.rpm   18 kB/s | 9.2 kB     00:00    
(8/23): go-srpm-macros-2-17.el8.noarch.rpm       32 kB/s |  12 kB     00:00    
(9/23): libatomic_ops-7.6.2-3.el8.x86_64.rpm     78 kB/s |  38 kB     00:00    
(10/23): gdb-headless-8.2-16.el8.x86_64.rpm     2.2 MB/s | 3.7 MB     00:01    
(11/23): libipt-1.6.1-8.el8.x86_64.rpm           70 kB/s |  50 kB     00:00    
(12/23): ocaml-srpm-macros-5-4.el8.noarch.rpm   144 kB/s | 9.2 kB     00:00    
(13/23): openblas-srpm-macros-2-2.el8.noarch.rp 114 kB/s | 7.8 kB     00:00    
(14/23): guile-2.0.14-7.el8.x86_64.rpm          2.5 MB/s | 3.5 MB     00:01    
(15/23): perl-srpm-macros-1-25.el8.noarch.rpm    70 kB/s |  11 kB     00:00    
(16/23): python-rpm-macros-3-41.el8.noarch.rpm   43 kB/s |  14 kB     00:00    
(17/23): python-srpm-macros-3-41.el8.noarch.rpm  72 kB/s |  13 kB     00:00    
(18/23): qt5-srpm-macros-5.15.2-1.el8.noarch.rp  26 kB/s | 9.5 kB     00:00    
(19/23): python3-rpm-macros-3-41.el8.noarch.rpm  36 kB/s |  13 kB     00:00    
(20/23): redhat-rpm-config-125-1.el8.alma.noarc 229 kB/s |  86 kB     00:00    
(21/23): rust-srpm-macros-5-2.el8.noarch.rpm    179 kB/s | 9.1 kB     00:00    
(22/23): rpm-build-4.14.3-19.el8.x86_64.rpm     327 kB/s | 172 kB     00:00    
(23/23): zstd-1.4.4-1.el8.x86_64.rpm            373 kB/s | 395 kB     00:01    
--------------------------------------------------------------------------------
Total                                           1.6 MB/s | 9.1 MB     00:05     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : python-srpm-macros-3-41.el8.noarch                    1/23 
  Installing       : python-rpm-macros-3-41.el8.noarch                     2/23 
  Installing       : python3-rpm-macros-3-41.el8.noarch                    3/23 
  Installing       : zstd-1.4.4-1.el8.x86_64                               4/23 
  Installing       : rust-srpm-macros-5-2.el8.noarch                       5/23 
  Installing       : qt5-srpm-macros-5.15.2-1.el8.noarch                   6/23 
  Installing       : perl-srpm-macros-1-25.el8.noarch                      7/23 
  Installing       : openblas-srpm-macros-2-2.el8.noarch                   8/23 
  Installing       : ocaml-srpm-macros-5-4.el8.noarch                      9/23 
  Installing       : libipt-1.6.1-8.el8.x86_64                            10/23 
  Installing       : libatomic_ops-7.6.2-3.el8.x86_64                     11/23 
  Installing       : gc-7.6.4-3.el8.x86_64                                12/23 
  Installing       : guile-5:2.0.14-7.el8.x86_64                          13/23 
  Running scriptlet: guile-5:2.0.14-7.el8.x86_64                          13/23 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : go-srpm-macros-2-17.el8.noarch                       14/23 
  Installing       : ghc-srpm-macros-1.4.2-7.el8.noarch                   15/23 
  Installing       : efi-srpm-macros-3-3.el8.noarch                       16/23 
  Installing       : dwz-0.12-10.el8.x86_64                               17/23 
  Installing       : annobin-9.72-1.el8_5.2.x86_64                        18/23 
  Installing       : redhat-rpm-config-125-1.el8.alma.noarch              19/23 
  Installing       : libbabeltrace-1.5.4-3.el8.x86_64                     20/23 
  Running scriptlet: libbabeltrace-1.5.4-3.el8.x86_64                     20/23 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : gdb-headless-8.2-16.el8.x86_64                       21/23 
  Installing       : elfutils-0.185-1.el8.x86_64                          22/23 
  Installing       : rpm-build-4.14.3-19.el8.x86_64                       23/23 
  Running scriptlet: guile-5:2.0.14-7.el8.x86_64                          23/23 
  Running scriptlet: rpm-build-4.14.3-19.el8.x86_64                       23/23 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : elfutils-0.185-1.el8.x86_64                           1/23 
  Verifying        : libbabeltrace-1.5.4-3.el8.x86_64                      2/23 
  Verifying        : annobin-9.72-1.el8_5.2.x86_64                         3/23 
  Verifying        : dwz-0.12-10.el8.x86_64                                4/23 
  Verifying        : efi-srpm-macros-3-3.el8.noarch                        5/23 
  Verifying        : gc-7.6.4-3.el8.x86_64                                 6/23 
  Verifying        : gdb-headless-8.2-16.el8.x86_64                        7/23 
  Verifying        : ghc-srpm-macros-1.4.2-7.el8.noarch                    8/23 
  Verifying        : go-srpm-macros-2-17.el8.noarch                        9/23 
  Verifying        : guile-5:2.0.14-7.el8.x86_64                          10/23 
  Verifying        : libatomic_ops-7.6.2-3.el8.x86_64                     11/23 
  Verifying        : libipt-1.6.1-8.el8.x86_64                            12/23 
  Verifying        : ocaml-srpm-macros-5-4.el8.noarch                     13/23 
  Verifying        : openblas-srpm-macros-2-2.el8.noarch                  14/23 
  Verifying        : perl-srpm-macros-1-25.el8.noarch                     15/23 
  Verifying        : python-rpm-macros-3-41.el8.noarch                    16/23 
  Verifying        : python-srpm-macros-3-41.el8.noarch                   17/23 
  Verifying        : python3-rpm-macros-3-41.el8.noarch                   18/23 
  Verifying        : qt5-srpm-macros-5.15.2-1.el8.noarch                  19/23 
  Verifying        : redhat-rpm-config-125-1.el8.alma.noarch              20/23 
  Verifying        : rpm-build-4.14.3-19.el8.x86_64                       21/23 
  Verifying        : rust-srpm-macros-5-2.el8.noarch                      22/23 
  Verifying        : zstd-1.4.4-1.el8.x86_64                              23/23 

Installed:
  annobin-9.72-1.el8_5.2.x86_64        dwz-0.12-10.el8.x86_64                  
  efi-srpm-macros-3-3.el8.noarch       elfutils-0.185-1.el8.x86_64             
  gc-7.6.4-3.el8.x86_64                gdb-headless-8.2-16.el8.x86_64          
  ghc-srpm-macros-1.4.2-7.el8.noarch   go-srpm-macros-2-17.el8.noarch          
  guile-5:2.0.14-7.el8.x86_64          libatomic_ops-7.6.2-3.el8.x86_64        
  libbabeltrace-1.5.4-3.el8.x86_64     libipt-1.6.1-8.el8.x86_64               
  ocaml-srpm-macros-5-4.el8.noarch     openblas-srpm-macros-2-2.el8.noarch     
  perl-srpm-macros-1-25.el8.noarch     python-rpm-macros-3-41.el8.noarch       
  python-srpm-macros-3-41.el8.noarch   python3-rpm-macros-3-41.el8.noarch      
  qt5-srpm-macros-5.15.2-1.el8.noarch  redhat-rpm-config-125-1.el8.alma.noarch 
  rpm-build-4.14.3-19.el8.x86_64       rust-srpm-macros-5-2.el8.noarch         
  zstd-1.4.4-1.el8.x86_64             

Complete!

And got further missing dependencies:

[mr_halfword@haswell-alma SPECS]$ rpmbuild -ba rdma-core.spec
error: Failed build dependencies:
	/usr/bin/rst2man is needed by rdma-core-35.0-1.el8.x86_64
	perl-generators is needed by rdma-core-35.0-1.el8.x86_64
	python3-Cython is needed by rdma-core-35.0-1.el8.x86_64
	python3-devel is needed by rdma-core-35.0-1.el8.x86_64
	python3-docutils is needed by rdma-core-35.0-1.el8.x86_64

Installed further dependencies:

[mr_halfword@haswell-alma build]$ sudo yum install python3-docutils
[sudo] password for mr_halfword: 
Last metadata expiration check: 0:56:35 ago on Sun 30 Jan 2022 20:11:45 GMT.
Dependencies resolved.
================================================================================
 Package          Arch   Version                                Repo       Size
================================================================================
Installing:
 python3-docutils noarch 0.14-12.module_el8.5.0+2569+5c5719bc   appstream 1.6 M

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

Total download size: 1.6 M
Installed size: 5.9 M
Is this ok [y/N]: y
Downloading Packages:
python3-docutils-0.14-12.module_el8.5.0+2569+5c 5.3 MB/s | 1.6 MB     00:00    
--------------------------------------------------------------------------------
Total                                           2.3 MB/s | 1.6 MB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : python3-docutils-0.14-12.module_el8.5.0+2569+5c5719b   1/1 
  Running scriptlet: python3-docutils-0.14-12.module_el8.5.0+2569+5c5719b   1/1 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : python3-docutils-0.14-12.module_el8.5.0+2569+5c5719b   1/1 

Installed:
  python3-docutils-0.14-12.module_el8.5.0+2569+5c5719bc.noarch                  

Complete!
[mr_halfword@haswell-alma build]$ sudo yum install perl-generators python3-devel
Last metadata expiration check: 0:58:18 ago on Sun 30 Jan 2022 20:11:45 GMT.
Dependencies resolved.
================================================================================
 Package                Arch   Version                          Repo       Size
================================================================================
Installing:
 perl-generators        noarch 1.10-9.el8                       appstream  18 k
 python36-devel         x86_64 3.6.8-38.module_el8.5.0+2569+5c5719bc
                                                                appstream  15 k
Installing dependencies:
 perl-Fedora-VSP        noarch 0.001-9.el8                      appstream  24 k
 platform-python-devel  x86_64 3.6.8-41.el8.alma                appstream 248 k
 python3-rpm-generators noarch 5-7.el8                          appstream  24 k

Transaction Summary
================================================================================
Install  5 Packages

Total download size: 330 k
Installed size: 828 k
Is this ok [y/N]: y
Downloading Packages:
(1/5): perl-Fedora-VSP-0.001-9.el8.noarch.rpm   335 kB/s |  24 kB     00:00    
(2/5): perl-generators-1.10-9.el8.noarch.rpm    249 kB/s |  18 kB     00:00    
(3/5): python3-rpm-generators-5-7.el8.noarch.rp 1.0 MB/s |  24 kB     00:00    
(4/5): python36-devel-3.6.8-38.module_el8.5.0+2 517 kB/s |  15 kB     00:00    
(5/5): platform-python-devel-3.6.8-41.el8.alma. 2.0 MB/s | 248 kB     00:00    
--------------------------------------------------------------------------------
Total                                           580 kB/s | 330 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : python3-rpm-generators-5-7.el8.noarch                  1/5 
  Installing       : platform-python-devel-3.6.8-41.el8.alma.x86_64         2/5 
  Installing       : perl-Fedora-VSP-0.001-9.el8.noarch                     3/5 
  Installing       : perl-generators-1.10-9.el8.noarch                      4/5 
  Installing       : python36-devel-3.6.8-38.module_el8.5.0+2569+5c5719bc   5/5 
  Running scriptlet: python36-devel-3.6.8-38.module_el8.5.0+2569+5c5719bc   5/5 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : perl-Fedora-VSP-0.001-9.el8.noarch                     1/5 
  Verifying        : perl-generators-1.10-9.el8.noarch                      2/5 
  Verifying        : platform-python-devel-3.6.8-41.el8.alma.x86_64         3/5 
  Verifying        : python3-rpm-generators-5-7.el8.noarch                  4/5 
  Verifying        : python36-devel-3.6.8-38.module_el8.5.0+2569+5c5719bc   5/5 

Installed:
  perl-Fedora-VSP-0.001-9.el8.noarch                                            
  perl-generators-1.10-9.el8.noarch                                             
  platform-python-devel-3.6.8-41.el8.alma.x86_64                                
  python3-rpm-generators-5-7.el8.noarch                                         
  python36-devel-3.6.8-38.module_el8.5.0+2569+5c5719bc.x86_64                   

Complete!
[mr_halfword@haswell-alma build]$ sudo yum --enablerepo=powertools install python3-Cython
Last metadata expiration check: 1:00:24 ago on Sun 30 Jan 2022 20:11:45 GMT.
Dependencies resolved.
================================================================================
 Package              Architecture Version               Repository        Size
================================================================================
Installing:
 python3-Cython       x86_64       0.28.1-3.el8          powertools       3.3 M

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

Total download size: 3.3 M
Installed size: 13 M
Is this ok [y/N]: y
Downloading Packages:
python3-Cython-0.28.1-3.el8.x86_64.rpm          6.5 MB/s | 3.3 MB     00:00    
--------------------------------------------------------------------------------
Total                                           2.7 MB/s | 3.3 MB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : python3-Cython-0.28.1-3.el8.x86_64                     1/1 
  Running scriptlet: python3-Cython-0.28.1-3.el8.x86_64                     1/1 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : python3-Cython-0.28.1-3.el8.x86_64                     1/1 

Installed:
  python3-Cython-0.28.1-3.el8.x86_64                                            

Complete!

Built using the following (the console output was so long the initial part was lost so didn't attempt to save the output:

[mr_halfword@haswell-alma SPECS]$ rpmbuild -ba rdma-core.spec

7.3. Install the packages built from the patched rdma-core

Install the RPMs built from source:

[mr_halfword@haswell-alma x86_64]$ sudo yum install *35.0*.rpm
[sudo] password for mr_halfword: 
Last metadata expiration check: 1:04:14 ago on Sun 30 Jan 2022 20:11:45 GMT.
Package libibumad-35.0-1.el8.x86_64 is already installed.
Package libibverbs-35.0-1.el8.x86_64 is already installed.
Package librdmacm-35.0-1.el8.x86_64 is already installed.
Dependencies resolved.
================================================================================
 Package                       Arch      Version          Repository       Size
================================================================================
Installing:
 ibacm                         x86_64    35.0-1.el8       @commandline     86 k
 ibacm-debuginfo               x86_64    35.0-1.el8       @commandline    190 k
 infiniband-diags              x86_64    35.0-1.el8       @commandline    316 k
 infiniband-diags-compat       x86_64    35.0-1.el8       @commandline     29 k
 infiniband-diags-debuginfo    x86_64    35.0-1.el8       @commandline    596 k
 iwpmd                         x86_64    35.0-1.el8       @commandline     27 k
 iwpmd-debuginfo               x86_64    35.0-1.el8       @commandline     51 k
 libibumad-debuginfo           x86_64    35.0-1.el8       @commandline     40 k
 libibverbs-debuginfo          x86_64    35.0-1.el8       @commandline    1.5 M
 libibverbs-utils              x86_64    35.0-1.el8       @commandline     66 k
 libibverbs-utils-debuginfo    x86_64    35.0-1.el8       @commandline    156 k
 librdmacm-debuginfo           x86_64    35.0-1.el8       @commandline    186 k
 librdmacm-utils               x86_64    35.0-1.el8       @commandline     91 k
 librdmacm-utils-debuginfo     x86_64    35.0-1.el8       @commandline    195 k
 python3-pyverbs               x86_64    35.0-1.el8       @commandline    1.1 M
 python3-pyverbs-debuginfo     x86_64    35.0-1.el8       @commandline    2.5 M
 rdma-core                     x86_64    35.0-1.el8       @commandline     54 k
 rdma-core-debuginfo           x86_64    35.0-1.el8       @commandline    120 k
 rdma-core-debugsource         x86_64    35.0-1.el8       @commandline    1.7 M
 rdma-core-devel               x86_64    35.0-1.el8       @commandline    334 k
 srp_daemon                    x86_64    35.0-1.el8       @commandline     41 k
 srp_daemon-debuginfo          x86_64    35.0-1.el8       @commandline     79 k

Transaction Summary
================================================================================
Install  22 Packages

Total size: 9.3 M
Installed size: 52 M
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       : rdma-core-debugsource-35.0-1.el8.x86_64               1/22 
  Installing       : rdma-core-debuginfo-35.0-1.el8.x86_64                 2/22 
  Installing       : infiniband-diags-35.0-1.el8.x86_64                    3/22 
  Running scriptlet: infiniband-diags-35.0-1.el8.x86_64                    3/22 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : ibacm-35.0-1.el8.x86_64                               4/22 
  Running scriptlet: ibacm-35.0-1.el8.x86_64                               4/22 
  Installing       : rdma-core-devel-35.0-1.el8.x86_64                     5/22 
  Installing       : infiniband-diags-compat-35.0-1.el8.x86_64             6/22 
  Installing       : ibacm-debuginfo-35.0-1.el8.x86_64                     7/22 
  Installing       : infiniband-diags-debuginfo-35.0-1.el8.x86_64          8/22 
  Installing       : iwpmd-debuginfo-35.0-1.el8.x86_64                     9/22 
  Installing       : libibumad-debuginfo-35.0-1.el8.x86_64                10/22 
  Installing       : libibverbs-debuginfo-35.0-1.el8.x86_64               11/22 
  Installing       : libibverbs-utils-debuginfo-35.0-1.el8.x86_64         12/22 
  Installing       : librdmacm-debuginfo-35.0-1.el8.x86_64                13/22 
  Installing       : librdmacm-utils-debuginfo-35.0-1.el8.x86_64          14/22 
  Installing       : python3-pyverbs-debuginfo-35.0-1.el8.x86_64          15/22 
  Installing       : srp_daemon-debuginfo-35.0-1.el8.x86_64               16/22 
  Installing       : srp_daemon-35.0-1.el8.x86_64                         17/22 
  Running scriptlet: srp_daemon-35.0-1.el8.x86_64                         17/22 
  Installing       : rdma-core-35.0-1.el8.x86_64                          18/22 
  Running scriptlet: rdma-core-35.0-1.el8.x86_64                          18/22 
  Installing       : python3-pyverbs-35.0-1.el8.x86_64                    19/22 
  Installing       : librdmacm-utils-35.0-1.el8.x86_64                    20/22 
  Installing       : libibverbs-utils-35.0-1.el8.x86_64                   21/22 
  Installing       : iwpmd-35.0-1.el8.x86_64                              22/22 
  Running scriptlet: iwpmd-35.0-1.el8.x86_64                              22/22 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : ibacm-35.0-1.el8.x86_64                               1/22 
  Verifying        : ibacm-debuginfo-35.0-1.el8.x86_64                     2/22 
  Verifying        : infiniband-diags-35.0-1.el8.x86_64                    3/22 
  Verifying        : infiniband-diags-compat-35.0-1.el8.x86_64             4/22 
  Verifying        : infiniband-diags-debuginfo-35.0-1.el8.x86_64          5/22 
  Verifying        : iwpmd-35.0-1.el8.x86_64                               6/22 
  Verifying        : iwpmd-debuginfo-35.0-1.el8.x86_64                     7/22 
  Verifying        : libibumad-debuginfo-35.0-1.el8.x86_64                 8/22 
  Verifying        : libibverbs-debuginfo-35.0-1.el8.x86_64                9/22 
  Verifying        : libibverbs-utils-35.0-1.el8.x86_64                   10/22 
  Verifying        : libibverbs-utils-debuginfo-35.0-1.el8.x86_64         11/22 
  Verifying        : librdmacm-debuginfo-35.0-1.el8.x86_64                12/22 
  Verifying        : librdmacm-utils-35.0-1.el8.x86_64                    13/22 
  Verifying        : librdmacm-utils-debuginfo-35.0-1.el8.x86_64          14/22 
  Verifying        : python3-pyverbs-35.0-1.el8.x86_64                    15/22 
  Verifying        : python3-pyverbs-debuginfo-35.0-1.el8.x86_64          16/22 
  Verifying        : rdma-core-35.0-1.el8.x86_64                          17/22 
  Verifying        : rdma-core-debuginfo-35.0-1.el8.x86_64                18/22 
  Verifying        : rdma-core-debugsource-35.0-1.el8.x86_64              19/22 
  Verifying        : rdma-core-devel-35.0-1.el8.x86_64                    20/22 
  Verifying        : srp_daemon-35.0-1.el8.x86_64                         21/22 
  Verifying        : srp_daemon-debuginfo-35.0-1.el8.x86_64               22/22 

Installed:
  ibacm-35.0-1.el8.x86_64                                                       
  ibacm-debuginfo-35.0-1.el8.x86_64                                             
  infiniband-diags-35.0-1.el8.x86_64                                            
  infiniband-diags-compat-35.0-1.el8.x86_64                                     
  infiniband-diags-debuginfo-35.0-1.el8.x86_64                                  
  iwpmd-35.0-1.el8.x86_64                                                       
  iwpmd-debuginfo-35.0-1.el8.x86_64                                             
  libibumad-debuginfo-35.0-1.el8.x86_64                                         
  libibverbs-debuginfo-35.0-1.el8.x86_64                                        
  libibverbs-utils-35.0-1.el8.x86_64                                            
  libibverbs-utils-debuginfo-35.0-1.el8.x86_64                                  
  librdmacm-debuginfo-35.0-1.el8.x86_64                                         
  librdmacm-utils-35.0-1.el8.x86_64                                             
  librdmacm-utils-debuginfo-35.0-1.el8.x86_64                                   
  python3-pyverbs-35.0-1.el8.x86_64                                             
  python3-pyverbs-debuginfo-35.0-1.el8.x86_64                                   
  rdma-core-35.0-1.el8.x86_64                                                   
  rdma-core-debuginfo-35.0-1.el8.x86_64                                         
  rdma-core-debugsource-35.0-1.el8.x86_64                                       
  rdma-core-devel-35.0-1.el8.x86_64                                             
  srp_daemon-35.0-1.el8.x86_64                                                  
  srp_daemon-debuginfo-35.0-1.el8.x86_64                                        

Complete!

Note that the following were already reported as installed:

  • libibumad-35.0-1.el8.x86_64
  • libibverbs-35.0-1.el8.x86_64
  • librdmacm-35.0-1.el8.x86_64

Where the above packages are from the baseos, at the same apparent version as those built from the patched rdma-core v35.0

Therefore removed the version from the baseos:

[mr_halfword@haswell-alma x86_64]$ sudo rpm -e --nodeps libibumad libibverbs librdmacm
[sudo] password for mr_halfword: 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

And then installed the patched versions:

[mr_halfword@haswell-alma x86_64]$ sudo yum install *35.0*.rpm
Last metadata expiration check: 1:13:56 ago on Sun 30 Jan 2022 20:11:45 GMT.
Package ibacm-35.0-1.el8.x86_64 is already installed.
Package ibacm-debuginfo-35.0-1.el8.x86_64 is already installed.
Package infiniband-diags-35.0-1.el8.x86_64 is already installed.
Package infiniband-diags-compat-35.0-1.el8.x86_64 is already installed.
Package infiniband-diags-debuginfo-35.0-1.el8.x86_64 is already installed.
Package iwpmd-35.0-1.el8.x86_64 is already installed.
Package iwpmd-debuginfo-35.0-1.el8.x86_64 is already installed.
Package libibumad-debuginfo-35.0-1.el8.x86_64 is already installed.
Package libibverbs-debuginfo-35.0-1.el8.x86_64 is already installed.
Package libibverbs-utils-35.0-1.el8.x86_64 is already installed.
Package libibverbs-utils-debuginfo-35.0-1.el8.x86_64 is already installed.
Package librdmacm-debuginfo-35.0-1.el8.x86_64 is already installed.
Package librdmacm-utils-35.0-1.el8.x86_64 is already installed.
Package librdmacm-utils-debuginfo-35.0-1.el8.x86_64 is already installed.
Package python3-pyverbs-35.0-1.el8.x86_64 is already installed.
Package python3-pyverbs-debuginfo-35.0-1.el8.x86_64 is already installed.
Package rdma-core-35.0-1.el8.x86_64 is already installed.
Package rdma-core-debuginfo-35.0-1.el8.x86_64 is already installed.
Package rdma-core-debugsource-35.0-1.el8.x86_64 is already installed.
Package rdma-core-devel-35.0-1.el8.x86_64 is already installed.
Package srp_daemon-35.0-1.el8.x86_64 is already installed.
Package srp_daemon-debuginfo-35.0-1.el8.x86_64 is already installed.
Dependencies resolved.
================================================================================
 Package           Architecture  Version              Repository           Size
================================================================================
Installing:
 libibumad         x86_64        35.0-1.el8           @commandline         24 k
 libibverbs        x86_64        35.0-1.el8           @commandline        350 k
 librdmacm         x86_64        35.0-1.el8           @commandline         69 k

Transaction Summary
================================================================================
Install  3 Packages

Total size: 443 k
Installed size: 1.1 M
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       : libibverbs-35.0-1.el8.x86_64                           1/3 
  Running scriptlet: libibverbs-35.0-1.el8.x86_64                           1/3 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : librdmacm-35.0-1.el8.x86_64                            2/3 
  Running scriptlet: librdmacm-35.0-1.el8.x86_64                            2/3 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libibumad-35.0-1.el8.x86_64                            3/3 
  Running scriptlet: libibumad-35.0-1.el8.x86_64                            3/3 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : libibumad-35.0-1.el8.x86_64                            1/3 
  Verifying        : libibverbs-35.0-1.el8.x86_64                           2/3 
  Verifying        : librdmacm-35.0-1.el8.x86_64                            3/3 

Installed:
  libibumad-35.0-1.el8.x86_64            libibverbs-35.0-1.el8.x86_64           
  librdmacm-35.0-1.el8.x86_64           

Complete!

8. Differences in rdma-core v35.0 between upstream and the AlmaLinux packaged version

The instructions in the README_irdma.txt say to take the upstream https://github.com/linux-rdma/rdma-core/releases/download/v35.0/rdma-core-35.0.tar.gz and apply the patch to that.

With the patched version of the upstream rdma-core v35.0 noticed some differences compared to the AlmaLinux 8.5 packaged version:

  1. The ibdev2netdev utility was in the AlmaLinux packaged version, but not in the upstream version.
  2. The upstream /usr/lib/udev/rules.d/60-rdma-persistent-naming.rules uses NAME_FALLBACK, whereas the AlmaLinux packaged version uses NAME_KERNEL.

Comparing the upstream rdma-core-35.0.tar.gz redhat\rdma-core.spec against the the rdma-core.spec in AlmaLinux http://vault.centos.org/8-stream/BaseOS/Source/SPackages/rdma-core-35.0-1.el8.src.rpm source package shows:

  1. The AlmaLinux source package includes the ibdev2netdev script.
  2. The AlmaLinux source package includes rxe_cfg. Comment in rdma-core.spec is:
# Upstream had removed rxe_cfg from upstream git repo. RHEL-8.X has
# to keep it for backward compatibility. 'rxe_cfg' and 'rxe_cfg.8.gz'
# are extracted from libibverbs-26.0-8.el8 .
  1. The AlmaLinux source package has a 0001-ibacm-acm.c-load-plugin-while-it-is-soft-link.patch for Intel Omni-Path (OPA). Comment in patch says it is a RHEL specific workaround commit.

  2. The AlmaLinux source package has a 0001-Only-load-i40iw-for-i40e-device-with-specific-PCI-ID.patch. Comment in patch:

    This a redhat specific hack to handle i40iw huge memory consuming issue.

    rdma-core upstream maintainer believes this issue should be handled in kernel space with i40e/i40iw driver. Unfortunately, Intel does not care about this request.

  3. The AlmaLinux source package has a udev-keep-NAME_KERNEL-as-default-interface-naming-co.patch. Comment in patch says "keep NAME_KERNEL as default interface naming convention".

  4. The upstream provides infiniband-diags-compat, the AlmaLinux source package doesn't.

  5. The AlmaLinux libibverbs package description includes libbxnt_re: Broadcom NetXtreme-E RoCE HCA in the list of ibvberbs user space drivers, but the upstream doesn't. Looks like the upstream actually provides libbxnt_re support, just not included in the package description.

  6. The AlmaLinux libibverbs package has removed support for the following user space drivers:

    • libipathverbs: QLogic InfiniPath HCA
    • libmthca: Mellanox InfiniBand HCA
    • libocrdma: Emulex OneConnect RDMA/RoCE Device

    Where the changelogs says the above are old hardware which is no longer supported.

  7. Some differences to required packages, presumably due to other RHEL package differences.

9. Real time Kernel options

AlmaLinux 8.5 uses non-realtime Kernel 4.18.0-348.12.2.el8_5.x86_64. Looking at the AlmaLinux 8.5 repos can't see one which provides a kernel-rt package.

Looking at other options:

  1. Patches for mainline Kernel versions : PREEMPT_RT patch versions says:
    • 4.18-rt (i.e. version of Kernel ALmaLinux 8.5 is using) is no longer maintained
    • 4.19-rt is actively maintained
  2. Red Hat : Installing RHEL 8 for Real Time says RT group packages are available from the subscription-manager.
  3. Rocky Linux : Kernel-rt Download for Linux (rpm) shows real-time packages are available for Rocky Linux 8. kernel-rt-4.18.0-348.12.2.rt7.143.el8_5.x86_64.rpm and kernel-rt-core-4.18.0-348.12.2.rt7.143.el8_5.x86_64.rpm are listed, which look to be based upon the non-realtime Kernel version used by AlmaLinux 8.5.

9.1. Failed attempt to use RHEL subscription-manager under AlmaLinux 8.5

Installed subscription-manager:

[mr_halfword@haswell-alma ~]$ sudo yum install subscription-manager
[sudo] password for mr_halfword: 
Last metadata expiration check: 1:08:47 ago on Sun 27 Feb 2022 13:57:36 GMT.
Dependencies resolved.
================================================================================
 Package                                Arch   Version             Repo    Size
================================================================================
Installing:
 subscription-manager                   x86_64 1.28.21-3.el8.alma  baseos 1.1 M
Installing dependencies:
 dnf-plugin-subscription-manager        x86_64 1.28.21-3.el8.alma  baseos 299 k
 python3-cloud-what                     x86_64 1.28.21-3.el8.alma  baseos 298 k
 python3-ethtool                        x86_64 0.14-3.el8          baseos  45 k
 python3-iniparse                       noarch 0.4-31.el8          baseos  49 k
 python3-inotify                        noarch 0.9.6-13.el8        baseos  57 k
 python3-subscription-manager-rhsm      x86_64 1.28.21-3.el8.alma  baseos 376 k
 subscription-manager-rhsm-certificates x86_64 1.28.21-3.el8.alma  baseos 268 k

Transaction Summary
================================================================================
Install  8 Packages

Total download size: 2.5 M
Installed size: 5.3 M
Is this ok [y/N]: y
Downloading Packages:
(1/8): python3-ethtool-0.14-3.el8.x86_64.rpm    201 kB/s |  45 kB     00:00    
(2/8): dnf-plugin-subscription-manager-1.28.21- 1.2 MB/s | 299 kB     00:00    
(3/8): python3-cloud-what-1.28.21-3.el8.alma.x8 1.1 MB/s | 298 kB     00:00    
(4/8): python3-iniparse-0.4-31.el8.noarch.rpm   891 kB/s |  49 kB     00:00    
(5/8): python3-inotify-0.9.6-13.el8.noarch.rpm  743 kB/s |  57 kB     00:00    
(6/8): python3-subscription-manager-rhsm-1.28.2 3.1 MB/s | 376 kB     00:00    
(7/8): subscription-manager-rhsm-certificates-1 1.4 MB/s | 268 kB     00:00    
(8/8): subscription-manager-1.28.21-3.el8.alma. 3.8 MB/s | 1.1 MB     00:00    
--------------------------------------------------------------------------------
Total                                           2.5 MB/s | 2.5 MB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : python3-iniparse-0.4-31.el8.noarch                     1/8 
  Installing       : python3-cloud-what-1.28.21-3.el8.alma.x86_64           2/8 
  Installing       : subscription-manager-rhsm-certificates-1.28.21-3.el8   3/8 
  Installing       : python3-subscription-manager-rhsm-1.28.21-3.el8.alma   4/8 
  Installing       : python3-inotify-0.9.6-13.el8.noarch                    5/8 
  Installing       : python3-ethtool-0.14-3.el8.x86_64                      6/8 
  Installing       : dnf-plugin-subscription-manager-1.28.21-3.el8.alma.x   7/8 
  Running scriptlet: subscription-manager-1.28.21-3.el8.alma.x86_64         8/8 
  Installing       : subscription-manager-1.28.21-3.el8.alma.x86_64         8/8 
  Running scriptlet: subscription-manager-1.28.21-3.el8.alma.x86_64         8/8 
chmod: cannot access '/etc/pki/entitlement/*.pem': No such file or directory

/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : dnf-plugin-subscription-manager-1.28.21-3.el8.alma.x   1/8 
  Verifying        : python3-cloud-what-1.28.21-3.el8.alma.x86_64           2/8 
  Verifying        : python3-ethtool-0.14-3.el8.x86_64                      3/8 
  Verifying        : python3-iniparse-0.4-31.el8.noarch                     4/8 
  Verifying        : python3-inotify-0.9.6-13.el8.noarch                    5/8 
  Verifying        : python3-subscription-manager-rhsm-1.28.21-3.el8.alma   6/8 
  Verifying        : subscription-manager-1.28.21-3.el8.alma.x86_64         7/8 
  Verifying        : subscription-manager-rhsm-certificates-1.28.21-3.el8   8/8 

Installed:
  dnf-plugin-subscription-manager-1.28.21-3.el8.alma.x86_64                     
  python3-cloud-what-1.28.21-3.el8.alma.x86_64                                  
  python3-ethtool-0.14-3.el8.x86_64                                             
  python3-iniparse-0.4-31.el8.noarch                                            
  python3-inotify-0.9.6-13.el8.noarch                                           
  python3-subscription-manager-rhsm-1.28.21-3.el8.alma.x86_64                   
  subscription-manager-1.28.21-3.el8.alma.x86_64                                
  subscription-manager-rhsm-certificates-1.28.21-3.el8.alma.x86_64              

Complete!

Attempting to use subscription-manager to enable the RHEL RT repositories failed with:

[mr_halfword@haswell-alma ~]$ sudo subscription-manager repos --enable rhel-8-for-x86_64-rt-rpms
This system has no repositories available through subscriptions.

WARNING

The yum/dnf plugins: /etc/dnf/plugins/subscription-manager.conf were automatically enabled for the benefit of Subscription Management. If not desired, use "subscription-manager config --rhsm.auto_enable_yum_plugins=0" to block this behavior.

And the group installed failed as not registered for subscription:

[mr_halfword@haswell-alma ~]$ sudo yum groupinstall RT
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.

Last metadata expiration check: 1:11:47 ago on Sun 27 Feb 2022 13:57:36 GMT.
Module or Group 'RT' is not available.
Error: Nothing to do.

9.1.1. Remove subscription-manager

Having installed the subscription-manager, but being unable to subscribe, every yum operation was reporting subscription-manager messages:

[mr_halfword@haswell-alma switch_test]$ yum provides "*/pcap.h"
Not root, Subscription Management repositories not updated

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

AlmaLinux 8 - Extras                             24 kB/s |  12 kB     00:00    
pjproject-devel-2.9-2.el8.x86_64 : Development files to use pjproject
Repo        : epel
Matched from:
Filename    : /usr/include/pjlib-util/pcap.h

Therefore, un-installed:

[mr_halfword@haswell-alma switch_test]$ sudo yum remove subscription-manager
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.

Dependencies resolved.
================================================================================
 Package                                Arch   Version            Repo     Size
================================================================================
Removing:
 subscription-manager                   x86_64 1.28.21-3.el8.alma @baseos 4.3 M
Removing unused dependencies:
 dnf-plugin-subscription-manager        x86_64 1.28.21-3.el8.alma @baseos  87 k
 python3-cloud-what                     x86_64 1.28.21-3.el8.alma @baseos  70 k
 python3-ethtool                        x86_64 0.14-3.el8         @baseos  92 k
 python3-iniparse                       noarch 0.4-31.el8         @baseos 106 k
 python3-inotify                        noarch 0.9.6-13.el8       @baseos 243 k
 python3-subscription-manager-rhsm      x86_64 1.28.21-3.el8.alma @baseos 411 k
 subscription-manager-rhsm-certificates x86_64 1.28.21-3.el8.alma @baseos   0  

Transaction Summary
================================================================================
Remove  8 Packages

Freed space: 5.3 M
Is this ok [y/N]: y
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Running scriptlet: subscription-manager-1.28.21-3.el8.alma.x86_64         1/1 
  Running scriptlet: subscription-manager-1.28.21-3.el8.alma.x86_64         1/8 
  Erasing          : subscription-manager-1.28.21-3.el8.alma.x86_64         1/8 
warning: /etc/dnf/plugins/subscription-manager.conf saved as /etc/dnf/plugins/subscription-manager.conf.rpmsave

  Running scriptlet: subscription-manager-1.28.21-3.el8.alma.x86_64         1/8 
  Erasing          : python3-subscription-manager-rhsm-1.28.21-3.el8.alma   2/8 
  Erasing          : python3-cloud-what-1.28.21-3.el8.alma.x86_64           3/8 
  Erasing          : python3-iniparse-0.4-31.el8.noarch                     4/8 
  Erasing          : subscription-manager-rhsm-certificates-1.28.21-3.el8   5/8 
  Erasing          : python3-inotify-0.9.6-13.el8.noarch                    6/8 
  Erasing          : dnf-plugin-subscription-manager-1.28.21-3.el8.alma.x   7/8 
  Erasing          : python3-ethtool-0.14-3.el8.x86_64                      8/8 
  Running scriptlet: python3-ethtool-0.14-3.el8.x86_64                      8/8 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : dnf-plugin-subscription-manager-1.28.21-3.el8.alma.x   1/8 
  Verifying        : python3-cloud-what-1.28.21-3.el8.alma.x86_64           2/8 
  Verifying        : python3-ethtool-0.14-3.el8.x86_64                      3/8 
  Verifying        : python3-iniparse-0.4-31.el8.noarch                     4/8 
  Verifying        : python3-inotify-0.9.6-13.el8.noarch                    5/8 
  Verifying        : python3-subscription-manager-rhsm-1.28.21-3.el8.alma   6/8 
  Verifying        : subscription-manager-1.28.21-3.el8.alma.x86_64         7/8 
  Verifying        : subscription-manager-rhsm-certificates-1.28.21-3.el8   8/8 

Removed:
  dnf-plugin-subscription-manager-1.28.21-3.el8.alma.x86_64                     
  python3-cloud-what-1.28.21-3.el8.alma.x86_64                                  
  python3-ethtool-0.14-3.el8.x86_64                                             
  python3-iniparse-0.4-31.el8.noarch                                            
  python3-inotify-0.9.6-13.el8.noarch                                           
  python3-subscription-manager-rhsm-1.28.21-3.el8.alma.x86_64                   
  subscription-manager-1.28.21-3.el8.alma.x86_64                                
  subscription-manager-rhsm-certificates-1.28.21-3.el8.alma.x86_64              

Complete!

9.2 AlmaLinux 8.6 provides kernel-rt

After the initial upgrade to AlmaLinux 8.6 a non-realtime Kernel was used:

[mr_halfword@haswell-alma ~]$ uname -a
Linux haswell-alma 4.18.0-372.9.1.el8.x86_64 #1 SMP Tue May 10 08:57:35 EDT 2022 x86_64 x86_64 x86_64 GNU/Linux

Real Time repos are availble, disabled by default:

[mr_halfword@haswell-alma ~]$ yum repolist --all
repo id                        repo name                                status
<<snip>>
rt                             AlmaLinux 8 - Real Time                  disabled
rt-debuginfo                   AlmaLinux 8 - Real Time Debuginfo        disabled
rt-source                      AlmaLinux 8 - Real Time Sources          disabled

Installed kernel-rt with:

[mr_halfword@haswell-alma ~]$ sudo yum install --enablerepo='rt*' kernel-rt
[sudo] password for mr_halfword: 
AlmaLinux 8 - Real Time                         1.3 MB/s | 867 kB     00:00    
AlmaLinux 8 - Real Time Sources                 5.5 kB/s | 3.2 kB     00:00    
AlmaLinux 8 - Real Time Debuginfo               459 kB/s | 325 kB     00:00    
Dependencies resolved.
================================================================================
 Package                   Arch     Version                      Repo      Size
================================================================================
Installing:
 kernel-rt                 x86_64   4.18.0-372.9.1.rt7.166.el8   rt       8.1 M
Installing dependencies:
 kernel-rt-core            x86_64   4.18.0-372.9.1.rt7.166.el8   rt        39 M
 kernel-rt-modules         x86_64   4.18.0-372.9.1.rt7.166.el8   rt        32 M
 python3-ethtool           x86_64   0.14-5.el8                   baseos    44 k
 rt-setup                  x86_64   2.1-3.el8                    rt        25 k
 tuna                      noarch   0.17-1.el8                   baseos   148 k
 tuned-profiles-realtime   noarch   2.18.0-2.el8                 rt        38 k

Transaction Summary
================================================================================
Install  7 Packages

Total download size: 79 M
Installed size: 92 M
Is this ok [y/N]: y
Downloading Packages:
(1/7): python3-ethtool-0.14-5.el8.x86_64.rpm    219 kB/s |  44 kB     00:00    
(2/7): tuna-0.17-1.el8.noarch.rpm               711 kB/s | 148 kB     00:00    
(3/7): kernel-rt-4.18.0-372.9.1.rt7.166.el8.x86 2.5 MB/s | 8.1 MB     00:03    
(4/7): rt-setup-2.1-3.el8.x86_64.rpm            145 kB/s |  25 kB     00:00    
(5/7): tuned-profiles-realtime-2.18.0-2.el8.noa 225 kB/s |  38 kB     00:00    
(6/7): kernel-rt-core-4.18.0-372.9.1.rt7.166.el 3.8 MB/s |  39 MB     00:10    
(7/7): kernel-rt-modules-4.18.0-372.9.1.rt7.166 2.9 MB/s |  32 MB     00:10    
--------------------------------------------------------------------------------
Total                                           6.6 MB/s |  79 MB     00:11     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : kernel-rt-core-4.18.0-372.9.1.rt7.166.el8.x86_64       1/7 
  Running scriptlet: kernel-rt-core-4.18.0-372.9.1.rt7.166.el8.x86_64       1/7 
  Installing       : kernel-rt-modules-4.18.0-372.9.1.rt7.166.el8.x86_64    2/7 
  Running scriptlet: kernel-rt-modules-4.18.0-372.9.1.rt7.166.el8.x86_64    2/7 
  Installing       : python3-ethtool-0.14-5.el8.x86_64                      3/7 
  Installing       : tuna-0.17-1.el8.noarch                                 4/7 
  Installing       : tuned-profiles-realtime-2.18.0-2.el8.noarch            5/7 
  Installing       : rt-setup-2.1-3.el8.x86_64                              6/7 
  Running scriptlet: rt-setup-2.1-3.el8.x86_64                              6/7 
Created symlink /etc/systemd/system/multi-user.target.wants/rt-setup.service → /usr/lib/systemd/system/rt-setup.service.

  Installing       : kernel-rt-4.18.0-372.9.1.rt7.166.el8.x86_64            7/7 
  Running scriptlet: kernel-rt-core-4.18.0-372.9.1.rt7.166.el8.x86_64       7/7 
ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Running scriptlet: kernel-rt-4.18.0-372.9.1.rt7.166.el8.x86_64            7/7 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : python3-ethtool-0.14-5.el8.x86_64                      1/7 
  Verifying        : tuna-0.17-1.el8.noarch                                 2/7 
  Verifying        : kernel-rt-4.18.0-372.9.1.rt7.166.el8.x86_64            3/7 
  Verifying        : kernel-rt-core-4.18.0-372.9.1.rt7.166.el8.x86_64       4/7 
  Verifying        : kernel-rt-modules-4.18.0-372.9.1.rt7.166.el8.x86_64    5/7 
  Verifying        : rt-setup-2.1-3.el8.x86_64                              6/7 
  Verifying        : tuned-profiles-realtime-2.18.0-2.el8.noarch            7/7 

Installed:
  kernel-rt-4.18.0-372.9.1.rt7.166.el8.x86_64                                   
  kernel-rt-core-4.18.0-372.9.1.rt7.166.el8.x86_64                              
  kernel-rt-modules-4.18.0-372.9.1.rt7.166.el8.x86_64                           
  python3-ethtool-0.14-5.el8.x86_64                                             
  rt-setup-2.1-3.el8.x86_64                                                     
  tuna-0.17-1.el8.noarch                                                        
  tuned-profiles-realtime-2.18.0-2.el8.noarch                                   

Complete!

After the installation the Real Time kernel was selected as the default:

[mr_halfword@haswell-alma ~]$ sudo grubby --info=DEFAULT
index=1
kernel="/boot/vmlinuz-4.18.0-372.9.1.rt7.166.el8.x86_64"
args="ro crashkernel=auto resume=/dev/mapper/almalinux-swap rd.lvm.lv=almalinux/root rd.lvm.lv=almalinux/swap rhgb quiet $tuned_params"
root="/dev/mapper/almalinux-root"
initrd="/boot/initramfs-4.18.0-372.9.1.rt7.166.el8.x86_64.img $tuned_initrd"
title="AlmaLinux (4.18.0-372.9.1.rt7.166.el8.x86_64) 8.6 (Sky Tiger)"
id="9d2f49d60f7e49e0b06aaed533ddfcd8-4.18.0-372.9.1.rt7.166.el8.x86_64"

After a reboot the real-time Kernel was used:

[mr_halfword@haswell-alma ~]$ uname -a
Linux haswell-alma 4.18.0-372.9.1.rt7.166.el8.x86_64 #1 SMP PREEMPT_RT Tue May 10 11:14:02 EDT 2022 x86_64 x86_64 x86_64 GNU/Linux

9.3. Need to install kernel-devel to be able to install Mellanox MTF

After installing kernel-rt there was no mst_pci Kernel module to be able to use mst.

Attempting to install mft again to build the Kernel module but got:

[mr_halfword@haswell-alma mft-4.18.0-106-x86_64-rpm]$ sudo ./install.sh
-E- There are missing packages that are required for installation of MFT.
-I- You can install missing packages using: yum install kernel-devel-4.18.0-372.9.1.rt7.166.el8.x86_64

Using the package name suggested by the MFT installer failed:

[mr_halfword@haswell-alma mft-4.18.0-106-x86_64-rpm]$ sudo yum install --enablerepo='rt*' kernel-devel-4.18.0-372.9.1.rt7.166.el8.x86_64
AlmaLinux 8 - Real Time                         9.0 kB/s | 4.3 kB     00:00    
AlmaLinux 8 - Real Time Sources                 5.2 kB/s | 3.1 kB     00:00    
AlmaLinux 8 - Real Time Debuginfo               5.7 kB/s | 3.1 kB     00:00    
No match for argument: kernel-devel-4.18.0-372.9.1.rt7.166.el8.x86_64
Error: Unable to find a match: kernel-devel-4.18.0-372.9.1.rt7.166.el8.x86_64

Had to insert -rt into the package name:

[mr_halfword@haswell-alma mft-4.18.0-106-x86_64-rpm]$ sudo yum install --enablerepo='rt*' kernel-rt-devel-4.18.0-372.9.1.rt7.166.el8.x86_64
Last metadata expiration check: 0:00:52 ago on Sat 02 Jul 2022 13:14:05 BST.
Dependencies resolved.
================================================================================
 Package              Arch        Version                         Repo     Size
================================================================================
Installing:
 kernel-rt-devel      x86_64      4.18.0-372.9.1.rt7.166.el8      rt       21 M

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

Total download size: 21 M
Installed size: 51 M
Is this ok [y/N]: yy
Is this ok [y/N]: y
Downloading Packages:
kernel-rt-devel-4.18.0-372.9.1.rt7.166.el8.x86_ 6.1 MB/s |  21 MB     00:03    
--------------------------------------------------------------------------------
Total                                           5.5 MB/s |  21 MB     00:03     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : kernel-rt-devel-4.18.0-372.9.1.rt7.166.el8.x86_64      1/1 
  Running scriptlet: kernel-rt-devel-4.18.0-372.9.1.rt7.166.el8.x86_64      1/1 
  Verifying        : kernel-rt-devel-4.18.0-372.9.1.rt7.166.el8.x86_64      1/1 

Installed:
  kernel-rt-devel-4.18.0-372.9.1.rt7.166.el8.x86_64                             

Complete!

Installed MFT successfully:

[mr_halfword@haswell-alma mft-4.18.0-106-x86_64-rpm]$ sudo ./install.sh
-I- Removing all installed mft packages: mft  kernel-mft
-I- Building the MFT kernel binary RPM...
-I- Installing the MFT RPMs...
Verifying...                          ################################# [100%]
Preparing...                          ################################# [100%]
Updating / installing...
   1:kernel-mft-4.18.0-4.18.0_372.9.1.################################# [100%]
Verifying...                          ################################# [100%]
Preparing...                          ################################# [100%]
Updating / installing...
   1:mft-4.18.0-106                   ################################# [100%]
-I- In order to start mst, please run "mst start".

And mst could be started:

[mr_halfword@haswell-alma mft-4.18.0-106-x86_64-rpm]$ sudo mst start --with_fpga
Starting MST (Mellanox Software Tools) driver set
Loading MST PCI module - Success
Loading MST PCI configuration module - Success
Create devices
Unloading MST PCI module (unused) - Success
[mr_halfword@haswell-alma mft-4.18.0-106-x86_64-rpm]$ sudo mst status
MST modules:
------------
    MST PCI module is not loaded
    MST PCI configuration module loaded

MST devices:
------------
/dev/mst/mt4117_pciconf0         - PCI configuration cycles access.
                                   domain:bus:dev.fn=0000:01:00.0 addr.reg=88 data.reg=92 cr_bar.gw_offset=-1
                                   Chip revision is: 00
[mr_halfword@haswell-alma mft-4.18.0-106-x86_64-rpm]$ sudo mget_temp -d /dev/mst/mt4117_pciconf0
102    

10. Appears only Mellanox supports IB_QPT_RAW_PACKET

Searching either a 4.18 Kernel or the latest mainline 5.16 shows references to IB_QPT_RAW_PACKET only appearing in the mlx4 and mlx5 drivers. Therefore, think only Mellanox supports the IB_QPT_RAW_PACKET.

11. Checking for verbs supported features in different HCAs

11.1. Looking for queue-pair types supported by different HCAs

The following was checking for which Queue-Pair types are supported by different HCAs from looking at the Queue-Pair create functions in the Linux kernel source looking for which Queue-Pair types are not rejected:

  1. The Amazon Elastic Fabric Adapter (EFA) function efa_qp_validate_attr function only supports IB_QPT_DRIVER or IB_QPT_UD
  2. The Intel irdma function irdma_validate_qp_attrs only supports:
  3. The Chelsio T4 iWARP HCA function c4iw_create_qp only supports IB_QPT_RC.
  4. QLogic QL4xxx RoCE HCA function qedr_check_qp_attrs supports IB_QPT_RC, IB_QPT_GSI, IB_QPT_XRC_INI or IB_QPT_XRC_TGT. Looks like supports RoCE and iWARP.
  5. The HiSilicon Hip06 SoC function check_qp_type supports:
    • IB_QPT_RC or IB_QPT_GSI unconditionally.
    • IB_QPT_UD if hr_dev->pci_dev->revision > PCI_REVISION_ID_HIP08. I.e. on certain revisions.
    • IB_QPT_XRC_INI or IB_QPT_XRC_TGT if (hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_XRC). I.e. only on specific HCAs.
  6. The Broadcom NetXtreme-E RoCE HCA function __from_ib_qp_type function supports IB_QPT_GSI, IB_QPT_RC or IB_QPT_UD.
  7. The Intel Omni-Path HFI appears to be a software layer which involves the Kernel in send/receive operations. E.g.
    • The hfi1_rc_rcv function in the Kernel processes an incoming RC packet.
    • The user space ibv_post_send ends up writing the request to the Kernel

11.2. Looking for opcodes supported for ibv_post_send()

For this looked at the HCA specific provider code in the rdma-core souce.

  1. The Intel irdma (X722 or E810) i40iw_upost_send function supports IBV_WR_SEND, IBV_WR_SEND_WITH_INV, IBV_WR_RDMA_WRITE or IBV_WR_RDMA_READ.
  2. The Broadcom NetXtreme-E RoCE bnxt_re bnxt_re_post_send supports:
    • IBV_WR_SEND or IBV_WR_SEND_WITH_IMM for a IBV_QPT_UD
    • IBV_WR_SEND_WITH_IMM, IBV_WR_SEND, IBV_WR_RDMA_WRITE_WITH_IMM, IBV_WR_RDMA_WRITE, IBV_WR_RDMA_READ, IBV_WR_ATOMIC_CMP_AND_SWP or IBV_WR_ATOMIC_FETCH_AND_ADD for the other supported Queue-Pair types of IB_QPT_GSI or IB_QPT_RC.
  3. The Chelsio T4 iWARP cxgb4 c4iw_post_send supports IBV_WR_SEND_WITH_INV, IBV_WR_SEND, IBV_WR_RDMA_WRITE_WITH_IMM, IBV_WR_RDMA_WRITE or IBV_WR_RDMA_READ. There is also a fast path for NVMe-oF target WRITE + SEND_WITH_INV wr chain.
  4. The QLogic QL4xxx RoCE qedr __qelr_post_send supports IBV_WR_SEND_WITH_IMM, IBV_WR_SEND, IBV_WR_SEND_WITH_INV, IBV_WR_RDMA_WRITE_WITH_IMM, IBV_WR_RDMA_WRITE, IBV_WR_RDMA_READ, IBV_WR_ATOMIC_CMP_AND_SWP or IBV_WR_ATOMIC_FETCH_AND_ADD. Support for atomic operations is machine specific.
  5. The HiSilicon Hip06 SoC hns has hardware version specfic functions:
    • hns_roce_u_v1_post_send supports IBV_WR_RDMA_READ, IBV_WR_RDMA_WRITE, IBV_WR_SEND, IBV_WR_SEND_WITH_IMM, IBV_WR_ATOMIC_CMP_AND_SWP or IBV_WR_ATOMIC_FETCH_AND_ADD. Think v1 hardware is IB_QPT_RC only.
    • check_rc_opcode for v2 hardware IB_QPT_RC supports IBV_WR_RDMA_READ, IBV_WR_RDMA_WRITE, IBV_WR_RDMA_WRITE_WITH_IMM, IBV_WR_SEND, IBV_WR_SEND_WITH_IMM, IBV_WR_ATOMIC_CMP_AND_SWP, IBV_WR_ATOMIC_FETCH_AND_ADD, IBV_WR_LOCAL_INV, IBV_WR_SEND_WITH_INV or IBV_WR_BIND_MW.
    • check_ud_opcode for v2 hardware IB_QPT_UD supports IBV_WR_SEND or IBV_WR_SEND_WITH_IMM.

11.3. Looking for send_ops_flags supported by different HCAs

For this looked at the HCA specific provider code in the rdma-core source to see what send_ops_flags in the ibv_qp_init_attr_ex are supported:

  1. The Amazon Elastic Fabric Adapter (EFA) function efa_check_qp_attr supports:
    • IBV_QP_EX_WITH_SEND or IBV_QP_EX_WITH_SEND_WITH_IMM for IBV_QPT_UD
    • IBV_QP_EX_WITH_SEND, IBV_QP_EX_WITH_SEND_WITH_IMM or IBV_QP_EX_WITH_RDMA_READ (device dependent) for IBV_QPT_DRIVER
  2. The software implementation of the RoCE protocol (rxe) function check_qp_init_attr
    • IBV_QP_EX_WITH_RDMA_WRITE, IBV_QP_EX_WITH_RDMA_WRITE_WITH_IMM, IBV_QP_EX_WITH_SEND, IBV_QP_EX_WITH_SEND_WITH_IMM, IBV_QP_EX_WITH_RDMA_READ, IBV_QP_EX_WITH_ATOMIC_CMP_AND_SWP, IBV_QP_EX_WITH_ATOMIC_FETCH_AND_ADD, IBV_QP_EX_WITH_LOCAL_INV , IBV_QP_EX_WITH_BIND_MW or IBV_QP_EX_WITH_SEND_WITH_INV for IBV_QPT_RC
    • IBV_QP_EX_WITH_RDMA_WRITE, IBV_QP_EX_WITH_RDMA_WRITE_WITH_IMM , IBV_QP_EX_WITH_SEND, IBV_QP_EX_WITH_SEND_WITH_IMM, IBV_QP_EX_WITH_BIND_MW or IBV_QP_EX_WITH_SEND_WITH_INV for IBV_QPT_UC
    • IBV_QP_EX_WITH_SEND or IBV_QP_EX_WITH_SEND_WITH_IMM for IBV_QPT_UD
  3. The Mellanox mlx5 function mlx5_qp_fill_wr_pfns allows:
    • IBV_QP_EX_WITH_SEND, IBV_QP_EX_WITH_SEND_WITH_INV, IBV_QP_EX_WITH_SEND_WITH_IMM, IBV_QP_EX_WITH_RDMA_WRITE, IBV_QP_EX_WITH_RDMA_WRITE_WITH_IMM, IBV_QP_EX_WITH_RDMA_READ, IBV_QP_EX_WITH_ATOMIC_CMP_AND_SWP, IBV_QP_EX_WITH_ATOMIC_FETCH_AND_ADD, IBV_QP_EX_WITH_LOCAL_INV or IBV_QP_EX_WITH_BIND_MW for IBV_QPT_RC, IBV_QPT_XRC_SEND and IBV_QPT_DRIVER
    • IBV_QP_EX_WITH_SEND, IBV_QP_EX_WITH_SEND_WITH_INV, IBV_QP_EX_WITH_SEND_WITH_IMM, IBV_QP_EX_WITH_RDMA_WRITE, IBV_QP_EX_WITH_RDMA_WRITE_WITH_IMM, IBV_QP_EX_WITH_LOCAL_INV or IBV_QP_EX_WITH_BIND_MW for IBV_QPT_UC
    • IBV_QP_EX_WITH_SEND or IBV_QP_EX_WITH_SEND_WITH_IMM with IBV_QPT_UD
    • IBV_QP_EX_WITH_SEND or IBV_QP_EX_WITH_TSO with IBV_QPT_RAW_PACKET
  4. The Mellanox mlx4 provider doesn't support IBV_QP_INIT_ATTR_SEND_OPS_FLAGS in the ibv_qp_init_attr_ex.comp_mask, and therefore doesn't support setting the send_ops_flags.
  5. The Intel irdma provider doesn't support ibv_create_qp_ex, and therefore doesn't support setting the send_ops_flags.

12. Flow Filtering and Steering

Scaling in the Linux Networking Stack is an overview from the Linux point of view.

ethtool -l will report the channel parameters (pre-set maximums and current hardware settings).

12.1 Mellanox ConnectX-2 VPI

A ConnectX-2 VPI doesn't support n-tuple filtering:

$ ethtool -k ens5 | grep tuple
ntuple-filters: off [fixed]

And as per the Scaling in the Linux Networking Stack linked above that means won't support Accelerated RFS Configuration

12.2 QLogic FastLinQ 41000/45000 Series Adapters

Deployment Guide n-tuple Flow Filtering and Steering FastLinQ 41000/45000 Series Adapters notes:

  1. Accelerated receive flow steering (ARFS) and ethtool n-tuple filtering cannot coexist.
  2. Matches can be either 1-tuple or 4-tuple, which are mutually exclusive (the matches must be either all 1-tuple or all 4-tuple). Which would prevent filtering on say source IP for transmit and destination IP for receive (with say one IP address per core).

12.3 Intel E810

The Intel® Network Adapter Driver for E810 Series Devices under Linux readme describes how to enable Accelerated Receive Flow Steering (aRFS)

See also Accelerated Receive Flow Steering (aRFS)

Product Brief Intel® Ethernet Network Adapter E810-2CQDA2 contains:

Tx/Rx Queues

  • 2048 Tx queues and 2048 Rx queues*
  • Dynamic allocation of queues to functions and VSIs

Interrupts

  • 2048 interrupts vectors*, allocated in a flexible manner to queues and other causes
  • Multiple interrupt moderation schemes
  • 20M interrupts/sec*

Where * means the value is per-port.

The ice_vsi_set_num_qs function in the mailine Kernel is setting the number of queues to the minimum of:

  • The number of online CPUs
  • The available queue-count
  • The available number of interrupt vectors

12.4 Intel X722

Searching CONFIG_RFS_ACCEL in the mainline 5.16 Kernel source shows CONFIG_RFS_ACCEL referenced in the ice driver for the E810, but not in the i40e driver for the X722. Therefore, think ARFS is not supported for the X722.

Linux Base Driver for the Intel(R) Ethernet Controller 700 Series also doesn't mention ARFS.

12.5 Mellanox ConnectX-5

Hopefully HowTo Configure aRFS on ConnectX-4 is also applicable to a ConnectX-5

13. Installing development packages

13.1. Enable powertools repo

By default the repo for the development packages isn't enabled:

[mr_halfword@haswell-alma switch_test]$ yum info libpcap-devel
Last metadata expiration check: 0:22:45 ago on Sat 12 Mar 2022 13:43:37 GMT.
Error: No matching Packages to list

And enabling all repos shows available in the powertools repos:

[mr_halfword@haswell-alma switch_test]$ yum --enablerepo=* info libpcap-devel
Last metadata expiration check: 0:05:51 ago on Sat 12 Mar 2022 14:17:18 GMT.
Available Packages
Name         : libpcap-devel
Epoch        : 14
Version      : 1.9.1
Release      : 5.el8
Architecture : i686
Size         : 143 k
Source       : libpcap-1.9.1-5.el8.src.rpm
Repository   : powertools
Summary      : Libraries and header files for the libpcap library
URL          : http://www.tcpdump.org
License      : BSD with advertising
Description  : Libpcap provides a portable framework for low-level network
             : monitoring.  Libpcap can provide network statistics collection,
             : security monitoring and network debugging.  Since almost every
             : system vendor provides a different interface for packet capture,
             : the libpcap authors created this system-independent API to ease
             : in porting and to alleviate the need for several
             : system-dependent packet capture modules in each application.
             : 
             : This package provides the libraries, include files, and other
             : resources needed for developing libpcap applications.

Name         : libpcap-devel
Epoch        : 14
Version      : 1.9.1
Release      : 5.el8
Architecture : x86_64
Size         : 143 k
Source       : libpcap-1.9.1-5.el8.src.rpm
Repository   : powertools
Summary      : Libraries and header files for the libpcap library
URL          : http://www.tcpdump.org
License      : BSD with advertising
Description  : Libpcap provides a portable framework for low-level network
             : monitoring.  Libpcap can provide network statistics collection,
             : security monitoring and network debugging.  Since almost every
             : system vendor provides a different interface for packet capture,
             : the libpcap authors created this system-independent API to ease
             : in porting and to alleviate the need for several
             : system-dependent packet capture modules in each application.
             : 
             : This package provides the libraries, include files, and other
             : resources needed for developing libpcap applications.

Enabled the powertools repo with:

[mr_halfword@haswell-alma switch_test]$ sudo yum config-manager --enable powertools

And can then install libpcap-devel:

[mr_halfword@haswell-alma switch_test]$ sudo yum install libpcap-devel
AlmaLinux 8 - PowerTools                        11 kB/s | 4.7 kB     00:00    
AlmaLinux 8 - PowerTools                       3.1 MB/s | 2.5 MB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64  61 kB/s |  35 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64 1.3 MB/s |  11 MB     00:08    
Extra Packages for Enterprise Linux Modular 8   69 kB/s |  34 kB     00:00    
Extra Packages for Enterprise Linux Modular 8  125 kB/s | 979 kB     00:07    
Scooter Software                               6.0 kB/s | 2.9 kB     00:00    
Dependencies resolved.
===============================================================================
 Package             Architecture Version               Repository        Size
===============================================================================
Installing:
 libpcap-devel       x86_64       14:1.9.1-5.el8        powertools       143 k

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

Total download size: 143 k
Installed size: 227 k
Is this ok [y/N]: y
Downloading Packages:
libpcap-devel-1.9.1-5.el8.x86_64.rpm           2.0 MB/s | 143 kB     00:00    
-------------------------------------------------------------------------------
Total                                          276 kB/s | 143 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                       1/1 
  Installing       : libpcap-devel-14:1.9.1-5.el8.x86_64                   1/1 
  Running scriptlet: libpcap-devel-14:1.9.1-5.el8.x86_64                   1/1 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : libpcap-devel-14:1.9.1-5.el8.x86_64                   1/1 

Installed:
  libpcap-devel-14:1.9.1-5.el8.x86_64                                          

Complete!

13.2. Add devel repo

Wanted to install openslp-devel to compile against libslp. However, openslp-devel is not available in any of the repos configured by AlmaLinux 8.5 in /etc/yum.repos.d.

To add the devel repo containing openslp-devel obtained the almalinux-devel.repo file:

[mr_halfword@haswell-alma release]$ cd /etc/yum.repos.d/
[mr_halfword@haswell-alma yum.repos.d]$ sudo wget https://repo.almalinux.org/almalinux/8/devel/almalinux-devel.repo
[sudo] password for mr_halfword: 
--2022-03-12 20:46:08--  https://repo.almalinux.org/almalinux/8/devel/almalinux-devel.repo
Resolving repo.almalinux.org (repo.almalinux.org)... 136.243.31.169
Connecting to repo.almalinux.org (repo.almalinux.org)|136.243.31.169|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 966 [application/octet-stream]
Saving to: ‘almalinux-devel.repo’

almalinux-devel.repo             100%[==========================================================>]     966  --.-KB/s    in 0s      

2022-03-12 20:46:08 (24.6 MB/s) - ‘almalinux-devel.repo’ saved [966/966]

Which has the openslp-devel package. Note the first attempt running yum info not as root failed with an error about repomd.xml, but a second attempt as root worked:

[mr_halfword@haswell-alma yum.repos.d]$ yum --enablerepo=devel info openslp-devel
determining the fastest mirror (10 hosts).. done.  [===                                           ] ---  B/s |   0  B     --:-- ETA
AlmaLinux 8 - devel                                                                                 2.1 kB/s | 7.2 kB     00:03    
Error: Failed to download metadata for repo 'devel': repomd.xml parser error: Parse error at line: 8 (Opening and ending tag mismatch: meta line 0 and head
)
[mr_halfword@haswell-alma yum.repos.d]$ sudo yum --enablerepo=devel info openslp-devel
determining the fastest mirror (10 hosts).. done.% [==============================================] 1.3 kB/s | 619  B     00:00 ETA
AlmaLinux 8 - devel                                                                                 1.5 MB/s | 5.4 MB     00:03    
Last metadata expiration check: 0:00:02 ago on Sat 12 Mar 2022 20:49:30 GMT.
Available Packages
Name         : openslp-devel
Version      : 2.0.0
Release      : 19.el8
Architecture : x86_64
Size         : 237 k
Source       : openslp-2.0.0-19.el8.src.rpm
Repository   : devel
Summary      : OpenSLP headers and libraries
URL          : http://sourceforge.net/projects/openslp/
License      : BSD
Description  : OpenSLP header files and libraries.

[mr_halfword@haswell-alma yum.repos.d]$ yum --enablerepo=devel info openslp-devel
determining the fastest mirror (2 hosts).. done.   [===                                           ] ---  B/s |   0  B     --:-- ETA
AlmaLinux 8 - devel                                                                                 2.7 MB/s | 5.4 MB     00:02    
Last metadata expiration check: 0:00:03 ago on Sat 12 Mar 2022 20:50:05 GMT.
Available Packages
Name         : openslp-devel
Version      : 2.0.0
Release      : 19.el8
Architecture : x86_64
Size         : 237 k
Source       : openslp-2.0.0-19.el8.src.rpm
Repository   : devel
Summary      : OpenSLP headers and libraries
URL          : http://sourceforge.net/projects/openslp/
License      : BSD
Description  : OpenSLP header files and libraries.

Enabled the repo:

[mr_halfword@haswell-alma yum.repos.d]$ sudo yum config-manager --enable devel

And could the install openslp-devel:

[mr_halfword@haswell-alma yum.repos.d]$ sudo yum install openslp-devel
AlmaLinux 8 - devel                                                                                 7.2 kB/s | 3.5 kB     00:00    
Dependencies resolved.
====================================================================================================================================
 Package                            Architecture                Version                            Repository                  Size
====================================================================================================================================
Installing:
 openslp-devel                      x86_64                      2.0.0-19.el8                       devel                      237 k

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

Total download size: 237 k
Installed size: 1.1 M
Is this ok [y/N]: y
Downloading Packages:
openslp-devel-2.0.0-19.el8.x86_64.rpm                                                               1.5 MB/s | 237 kB     00:00    
------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                               413 kB/s | 237 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                                                                            1/1 
  Installing       : openslp-devel-2.0.0-19.el8.x86_64                                                                          1/1 
  Running scriptlet: openslp-devel-2.0.0-19.el8.x86_64                                                                          1/1 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : openslp-devel-2.0.0-19.el8.x86_64                                                                          1/1 

Installed:
  openslp-devel-2.0.0-19.el8.x86_64                                                                                                 

Complete!

13.3. Other packages to support compiling ibv_message_passing

Need numactl-devel to get numa.h

mr_halfword@haswell-alma release]$ sudo yum install numactl-devel
Last metadata expiration check: 0:01:41 ago on Sat 12 Mar 2022 21:01:06 GMT.
Dependencies resolved.
====================================================================================================================================
 Package                           Architecture               Version                              Repository                  Size
====================================================================================================================================
Installing:
 numactl-devel                     x86_64                     2.0.12-13.el8                        baseos                      28 k

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

Total download size: 28 k
Installed size: 25 k
Is this ok [y/N]: y
Downloading Packages:
numactl-devel-2.0.12-13.el8.x86_64.rpm                                                              242 kB/s |  28 kB     00:00    
------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                                50 kB/s |  28 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                                                                            1/1 
  Installing       : numactl-devel-2.0.12-13.el8.x86_64                                                                         1/1 
  Running scriptlet: numactl-devel-2.0.12-13.el8.x86_64                                                                         1/1 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : numactl-devel-2.0.12-13.el8.x86_64                                                                         1/1 

Installed:
  numactl-devel-2.0.12-13.el8.x86_64                                                                                                

Complete!

Need glib2-devel to get glib.h and glib-unix.h:

[mr_halfword@haswell-alma ibv_message_passing]$ sudo yum install glib2-devel
[sudo] password for mr_halfword: 
Last metadata expiration check: 12:41:27 ago on Sat 12 Mar 2022 21:33:40 GMT.
Dependencies resolved.
================================================================================
 Package             Architecture   Version                Repository      Size
================================================================================
Installing:
 glib2-devel         x86_64         2.56.4-156.el8         baseos         423 k
Installing dependencies:
 pcre-cpp            x86_64         8.42-6.el8             baseos          46 k
 pcre-devel          x86_64         8.42-6.el8             baseos         550 k
 pcre-utf16          x86_64         8.42-6.el8             baseos         194 k
 pcre-utf32          x86_64         8.42-6.el8             baseos         185 k

Transaction Summary
================================================================================
Install  5 Packages

Total download size: 1.4 M
Installed size: 5.0 M
Is this ok [y/N]: y
Downloading Packages:
(1/5): pcre-cpp-8.42-6.el8.x86_64.rpm           476 kB/s |  46 kB     00:00    
(2/5): pcre-utf16-8.42-6.el8.x86_64.rpm         1.8 MB/s | 194 kB     00:00    
(3/5): glib2-devel-2.56.4-156.el8.x86_64.rpm    1.9 MB/s | 423 kB     00:00    
(4/5): pcre-devel-8.42-6.el8.x86_64.rpm         2.3 MB/s | 550 kB     00:00    
(5/5): pcre-utf32-8.42-6.el8.x86_64.rpm         3.3 MB/s | 185 kB     00:00    
--------------------------------------------------------------------------------
Total                                           1.8 MB/s | 1.4 MB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : pcre-utf32-8.42-6.el8.x86_64                           1/5 
  Installing       : pcre-utf16-8.42-6.el8.x86_64                           2/5 
  Installing       : pcre-cpp-8.42-6.el8.x86_64                             3/5 
  Installing       : pcre-devel-8.42-6.el8.x86_64                           4/5 
  Installing       : glib2-devel-2.56.4-156.el8.x86_64                      5/5 
  Running scriptlet: glib2-devel-2.56.4-156.el8.x86_64                      5/5 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : glib2-devel-2.56.4-156.el8.x86_64                      1/5 
  Verifying        : pcre-cpp-8.42-6.el8.x86_64                             2/5 
  Verifying        : pcre-devel-8.42-6.el8.x86_64                           3/5 
  Verifying        : pcre-utf16-8.42-6.el8.x86_64                           4/5 
  Verifying        : pcre-utf32-8.42-6.el8.x86_64                           5/5 

Installed:
  glib2-devel-2.56.4-156.el8.x86_64         pcre-cpp-8.42-6.el8.x86_64          
  pcre-devel-8.42-6.el8.x86_64              pcre-utf16-8.42-6.el8.x86_64        
  pcre-utf32-8.42-6.el8.x86_64             

Complete!

Need opensm-devel for ib_types.h:

[mr_halfword@haswell-alma ibv_message_passing]$ sudo yum install opensm-devel
[sudo] password for mr_halfword: 
Last metadata expiration check: 1:29:40 ago on Sun 13 Mar 2022 10:25:28 GMT.
Dependencies resolved.
================================================================================
 Package             Architecture  Version              Repository         Size
================================================================================
Installing:
 opensm-devel        x86_64        3.3.24-1.el8         powertools        197 k
Installing dependencies:
 opensm-libs         x86_64        3.3.24-1.el8         baseos             76 k

Transaction Summary
================================================================================
Install  2 Packages

Total download size: 273 k
Installed size: 1.4 M
Is this ok [y/N]: y
Downloading Packages:
(1/2): opensm-libs-3.3.24-1.el8.x86_64.rpm      941 kB/s |  76 kB     00:00    
(2/2): opensm-devel-3.3.24-1.el8.x86_64.rpm     1.8 MB/s | 197 kB     00:00    
--------------------------------------------------------------------------------
Total                                           289 kB/s | 273 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : opensm-libs-3.3.24-1.el8.x86_64                        1/2 
  Running scriptlet: opensm-libs-3.3.24-1.el8.x86_64                        1/2 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : opensm-devel-3.3.24-1.el8.x86_64                       2/2 
  Running scriptlet: opensm-devel-3.3.24-1.el8.x86_64                       2/2 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : opensm-libs-3.3.24-1.el8.x86_64                        1/2 
  Verifying        : opensm-devel-3.3.24-1.el8.x86_64                       2/2 

Installed:
  opensm-devel-3.3.24-1.el8.x86_64        opensm-libs-3.3.24-1.el8.x86_64       

Complete!

Need elfutils-devel for dwarf.h:

[mr_halfword@haswell-alma ibv_message_passing]$ sudo yum install elfutils-devel
Last metadata expiration check: 1:31:38 ago on Sun 13 Mar 2022 10:25:28 GMT.
Dependencies resolved.
================================================================================
 Package                             Arch      Version          Repo       Size
================================================================================
Installing:
 elfutils-devel                      x86_64    0.185-1.el8      baseos     85 k
Installing dependencies:
 libzstd-devel                       x86_64    1.4.4-1.el8      baseos     43 k
 xz-devel                            x86_64    5.2.4-3.el8      baseos     62 k
Installing weak dependencies:
 elfutils-debuginfod-client-devel    x86_64    0.185-1.el8      baseos     55 k

Transaction Summary
================================================================================
Install  4 Packages

Total download size: 246 k
Installed size: 531 k
Is this ok [y/N]: y
Downloading Packages:
(1/4): libzstd-devel-1.4.4-1.el8.x86_64.rpm     400 kB/s |  43 kB     00:00    
(2/4): elfutils-debuginfod-client-devel-0.185-1 476 kB/s |  55 kB     00:00    
(3/4): elfutils-devel-0.185-1.el8.x86_64.rpm    728 kB/s |  85 kB     00:00    
(4/4): xz-devel-5.2.4-3.el8.x86_64.rpm          1.4 MB/s |  62 kB     00:00    
--------------------------------------------------------------------------------
Total                                           416 kB/s | 246 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : xz-devel-5.2.4-3.el8.x86_64                            1/4 
  Installing       : libzstd-devel-1.4.4-1.el8.x86_64                       2/4 
  Installing       : elfutils-debuginfod-client-devel-0.185-1.el8.x86_64    3/4 
  Installing       : elfutils-devel-0.185-1.el8.x86_64                      4/4 
  Running scriptlet: elfutils-devel-0.185-1.el8.x86_64                      4/4 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : elfutils-debuginfod-client-devel-0.185-1.el8.x86_64    1/4 
  Verifying        : elfutils-devel-0.185-1.el8.x86_64                      2/4 
  Verifying        : libzstd-devel-1.4.4-1.el8.x86_64                       3/4 
  Verifying        : xz-devel-5.2.4-3.el8.x86_64                            4/4 

Installed:
  elfutils-debuginfod-client-devel-0.185-1.el8.x86_64                           
  elfutils-devel-0.185-1.el8.x86_64                                             
  libzstd-devel-1.4.4-1.el8.x86_64                                              
  xz-devel-5.2.4-3.el8.x86_64                                                   

Complete!

Need lksctp-tools-devel for sctp.h:

[mr_halfword@haswell-alma ibv_message_passing]$ sudo yum install lksctp-tools-devel
Last metadata expiration check: 1:33:27 ago on Sun 13 Mar 2022 10:25:28 GMT.
Dependencies resolved.
================================================================================
 Package                  Architecture Version               Repository    Size
================================================================================
Installing:
 lksctp-tools-devel       x86_64       1.0.18-3.el8          baseos        56 k

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

Total download size: 56 k
Installed size: 157 k
Is this ok [y/N]: y
Downloading Packages:
lksctp-tools-devel-1.0.18-3.el8.x86_64.rpm      594 kB/s |  56 kB     00:00    
--------------------------------------------------------------------------------
Total                                           100 kB/s |  56 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : lksctp-tools-devel-1.0.18-3.el8.x86_64                 1/1 
  Running scriptlet: lksctp-tools-devel-1.0.18-3.el8.x86_64                 1/1 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : lksctp-tools-devel-1.0.18-3.el8.x86_64                 1/1 

Installed:
  lksctp-tools-devel-1.0.18-3.el8.x86_64                                        

Complete!

Need libftdi-devel for ftdi.h:

[mr_halfword@haswell-alma ibv_message_passing]$ sudo yum install libftdi-devel
Last metadata expiration check: 1:34:41 ago on Sun 13 Mar 2022 10:25:28 GMT.
Dependencies resolved.
================================================================================
 Package                Architecture  Version               Repository     Size
================================================================================
Installing:
 libftdi-devel          x86_64        1.4-2.el8             epel           35 k
Installing dependencies:
 libconfuse             x86_64        3.3-1.el8             epel          195 k
 libftdi                x86_64        1.4-2.el8             epel           53 k
 libusbx-devel          x86_64        1.0.23-4.el8          baseos         29 k
 python3-libftdi        x86_64        1.4-2.el8             epel           72 k

Transaction Summary
================================================================================
Install  5 Packages

Total download size: 384 k
Installed size: 1.5 M
Is this ok [y/N]: y
Downloading Packages:
(1/5): libusbx-devel-1.0.23-4.el8.x86_64.rpm    423 kB/s |  29 kB     00:00    
(2/5): libftdi-1.4-2.el8.x86_64.rpm             254 kB/s |  53 kB     00:00    
(3/5): libconfuse-3.3-1.el8.x86_64.rpm          869 kB/s | 195 kB     00:00    
(4/5): python3-libftdi-1.4-2.el8.x86_64.rpm     545 kB/s |  72 kB     00:00    
(5/5): libftdi-devel-1.4-2.el8.x86_64.rpm        48 kB/s |  35 kB     00:00    
--------------------------------------------------------------------------------
Total                                           230 kB/s | 384 kB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : libftdi-1.4-2.el8.x86_64                               1/5 
  Installing       : python3-libftdi-1.4-2.el8.x86_64                       2/5 
  Installing       : libconfuse-3.3-1.el8.x86_64                            3/5 
  Installing       : libusbx-devel-1.0.23-4.el8.x86_64                      4/5 
  Installing       : libftdi-devel-1.4-2.el8.x86_64                         5/5 
  Running scriptlet: libftdi-devel-1.4-2.el8.x86_64                         5/5 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : libusbx-devel-1.0.23-4.el8.x86_64                      1/5 
  Verifying        : libconfuse-3.3-1.el8.x86_64                            2/5 
  Verifying        : libftdi-1.4-2.el8.x86_64                               3/5 
  Verifying        : libftdi-devel-1.4-2.el8.x86_64                         4/5 
  Verifying        : python3-libftdi-1.4-2.el8.x86_64                       5/5 

Installed:
  libconfuse-3.3-1.el8.x86_64            libftdi-1.4-2.el8.x86_64               
  libftdi-devel-1.4-2.el8.x86_64         libusbx-devel-1.0.23-4.el8.x86_64      
  python3-libftdi-1.4-2.el8.x86_64      

Complete!

Need net-snmp-devel for net-snmp-config.h:

[mr_halfword@haswell-alma ibv_message_passing]$ sudo yum install net-snmp-devel
[sudo] password for mr_halfword: 
Last metadata expiration check: 2:41:26 ago on Sun 13 Mar 2022 10:25:28 GMT.
Dependencies resolved.
================================================================================
 Package                 Arch   Version                         Repo       Size
================================================================================
Installing:
 net-snmp-devel          x86_64 1:5.8-22.el8                    appstream 273 k
Installing dependencies:
 keyutils-libs-devel     x86_64 1.5.10-9.el8                    baseos     47 k
 krb5-devel              x86_64 1.18.2-14.el8                   baseos    559 k
 libcom_err-devel        x86_64 1.45.6-2.el8                    baseos     37 k
 libkadm5                x86_64 1.18.2-14.el8                   baseos    186 k
 libselinux-devel        x86_64 2.9-5.el8                       baseos    199 k
 libsepol-devel          x86_64 2.9-3.el8                       baseos     86 k
 libverto-devel          x86_64 0.3.0-5.el8                     baseos     18 k
 lm_sensors-devel        x86_64 3.4.0-23.20180522git70f7e08.el8 baseos     33 k
 lm_sensors-libs         x86_64 3.4.0-23.20180522git70f7e08.el8 baseos     58 k
 mariadb-connector-c     x86_64 3.1.11-2.el8_3                  appstream 199 k
 mariadb-connector-c-config
                         noarch 3.1.11-2.el8_3                  appstream  14 k
 net-snmp-agent-libs     x86_64 1:5.8-22.el8                    appstream 747 k
 openssl-devel           x86_64 1:1.1.1k-5.el8_5                baseos    2.3 M
 pcre2-devel             x86_64 10.32-2.el8                     baseos    604 k
 pcre2-utf32             x86_64 10.32-2.el8                     baseos    220 k
 perl-CPAN-Meta-Requirements
                         noarch 2.140-396.el8                   appstream  37 k
 perl-CPAN-Meta-YAML     noarch 0.018-397.el8                   appstream  33 k
 perl-ExtUtils-Command   noarch 1:7.34-1.el8                    appstream  19 k
 perl-ExtUtils-Install   noarch 2.14-4.el8                      appstream  46 k
 perl-ExtUtils-MakeMaker noarch 1:7.34-1.el8                    appstream 300 k
 perl-ExtUtils-Manifest  noarch 1.70-395.el8                    appstream  36 k
 perl-ExtUtils-ParseXS   noarch 1:3.35-2.el8                    appstream  83 k
 perl-JSON-PP            noarch 1:2.97.001-3.el8                appstream  68 k
 perl-Test-Harness       noarch 1:3.42-1.el8                    appstream 279 k
 perl-devel              x86_64 4:5.26.3-420.el8                appstream 598 k
 perl-version            x86_64 6:0.99.24-1.el8                 appstream  67 k
 popt-devel              x86_64 1.18-1.el8                      baseos     29 k
 python3-pyparsing       noarch 2.1.10-7.el8                    baseos    142 k
 rpm-devel               x86_64 4.14.3-19.el8_5.2               baseos    142 k
 systemtap-sdt-devel     x86_64 4.5-3.el8                       appstream  84 k
Installing weak dependencies:
 perl-CPAN-Meta          noarch 2.150010-396.el8                appstream 191 k
 perl-Encode-Locale      noarch 1.05-10.module_el8.3.0+2091+9eecfe51
                                                                appstream  20 k
 perl-Time-HiRes         x86_64 4:1.9758-2.el8                  appstream  60 k

Transaction Summary
================================================================================
Install  34 Packages

Total download size: 7.7 M
Installed size: 18 M
Is this ok [y/N]: y
Downloading Packages:
(1/34): libcom_err-devel-1.45.6-2.el8.x86_64.rp 656 kB/s |  37 kB     00:00    
(2/34): keyutils-libs-devel-1.5.10-9.el8.x86_64 800 kB/s |  47 kB     00:00    
(3/34): libselinux-devel-2.9-5.el8.x86_64.rpm   2.4 MB/s | 199 kB     00:00    
(4/34): libkadm5-1.18.2-14.el8.x86_64.rpm       2.0 MB/s | 186 kB     00:00    
(5/34): libverto-devel-0.3.0-5.el8.x86_64.rpm   694 kB/s |  18 kB     00:00    
(6/34): libsepol-devel-2.9-3.el8.x86_64.rpm     2.1 MB/s |  86 kB     00:00    
(7/34): lm_sensors-devel-3.4.0-23.20180522git70 1.7 MB/s |  33 kB     00:00    
(8/34): krb5-devel-1.18.2-14.el8.x86_64.rpm     2.7 MB/s | 559 kB     00:00    
(9/34): lm_sensors-libs-3.4.0-23.20180522git70f 2.8 MB/s |  58 kB     00:00    
(10/34): pcre2-utf32-10.32-2.el8.x86_64.rpm     2.2 MB/s | 220 kB     00:00    
(11/34): popt-devel-1.18-1.el8.x86_64.rpm       1.0 MB/s |  29 kB     00:00    
(12/34): pcre2-devel-10.32-2.el8.x86_64.rpm     3.3 MB/s | 604 kB     00:00    
(13/34): python3-pyparsing-2.1.10-7.el8.noarch. 2.1 MB/s | 142 kB     00:00    
(14/34): rpm-devel-4.14.3-19.el8_5.2.x86_64.rpm 2.6 MB/s | 142 kB     00:00    
(15/34): mariadb-connector-c-config-3.1.11-2.el 181 kB/s |  14 kB     00:00    
(16/34): mariadb-connector-c-3.1.11-2.el8_3.x86 1.5 MB/s | 199 kB     00:00    
(17/34): net-snmp-devel-5.8-22.el8.x86_64.rpm   3.2 MB/s | 273 kB     00:00    
(18/34): perl-CPAN-Meta-2.150010-396.el8.noarch 3.6 MB/s | 191 kB     00:00    
(19/34): perl-CPAN-Meta-Requirements-2.140-396. 1.1 MB/s |  37 kB     00:00    
(20/34): perl-CPAN-Meta-YAML-0.018-397.el8.noar 1.0 MB/s |  33 kB     00:00    
(21/34): perl-Encode-Locale-1.05-10.module_el8. 645 kB/s |  20 kB     00:00    
(22/34): perl-ExtUtils-Command-7.34-1.el8.noarc 579 kB/s |  19 kB     00:00    
(23/34): perl-ExtUtils-Install-2.14-4.el8.noarc 1.2 MB/s |  46 kB     00:00    
(24/34): openssl-devel-1.1.1k-5.el8_5.x86_64.rp 3.5 MB/s | 2.3 MB     00:00    
(25/34): perl-ExtUtils-MakeMaker-7.34-1.el8.noa 5.6 MB/s | 300 kB     00:00    
(26/34): perl-ExtUtils-ParseXS-3.35-2.el8.noarc 3.2 MB/s |  83 kB     00:00    
(27/34): net-snmp-agent-libs-5.8-22.el8.x86_64. 1.8 MB/s | 747 kB     00:00    
(28/34): perl-JSON-PP-2.97.001-3.el8.noarch.rpm 3.4 MB/s |  68 kB     00:00    
(29/34): perl-ExtUtils-Manifest-1.70-395.el8.no 493 kB/s |  36 kB     00:00    
(30/34): perl-Time-HiRes-1.9758-2.el8.x86_64.rp 2.7 MB/s |  60 kB     00:00    
(31/34): perl-version-0.99.24-1.el8.x86_64.rpm  2.1 MB/s |  67 kB     00:00    
(32/34): perl-Test-Harness-3.42-1.el8.noarch.rp 3.1 MB/s | 279 kB     00:00    
(33/34): systemtap-sdt-devel-4.5-3.el8.x86_64.r 1.8 MB/s |  84 kB     00:00    
(34/34): perl-devel-5.26.3-420.el8.x86_64.rpm   4.0 MB/s | 598 kB     00:00    
--------------------------------------------------------------------------------
Total                                           3.4 MB/s | 7.7 MB     00:02     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : perl-version-6:0.99.24-1.el8.x86_64                   1/34 
  Installing       : perl-CPAN-Meta-Requirements-2.140-396.el8.noarch      2/34 
  Installing       : perl-Time-HiRes-4:1.9758-2.el8.x86_64                 3/34 
  Installing       : perl-JSON-PP-1:2.97.001-3.el8.noarch                  4/34 
  Installing       : perl-ExtUtils-ParseXS-1:3.35-2.el8.noarch             5/34 
  Installing       : lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x8    6/34 
  Running scriptlet: lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x8    6/34 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : lm_sensors-devel-3.4.0-23.20180522git70f7e08.el8.x    7/34 
  Installing       : perl-Test-Harness-1:3.42-1.el8.noarch                 8/34 
  Installing       : perl-ExtUtils-Manifest-1.70-395.el8.noarch            9/34 
  Installing       : perl-ExtUtils-Command-1:7.34-1.el8.noarch            10/34 
  Installing       : perl-Encode-Locale-1.05-10.module_el8.3.0+2091+9ee   11/34 
  Installing       : perl-CPAN-Meta-YAML-0.018-397.el8.noarch             12/34 
  Installing       : perl-CPAN-Meta-2.150010-396.el8.noarch               13/34 
  Installing       : mariadb-connector-c-config-3.1.11-2.el8_3.noarch     14/34 
  Installing       : mariadb-connector-c-3.1.11-2.el8_3.x86_64            15/34 
  Installing       : net-snmp-agent-libs-1:5.8-22.el8.x86_64              16/34 
  Installing       : python3-pyparsing-2.1.10-7.el8.noarch                17/34 
  Installing       : systemtap-sdt-devel-4.5-3.el8.x86_64                 18/34 
  Installing       : perl-ExtUtils-Install-2.14-4.el8.noarch              19/34 
  Installing       : perl-devel-4:5.26.3-420.el8.x86_64                   20/34 
  Installing       : perl-ExtUtils-MakeMaker-1:7.34-1.el8.noarch          21/34 
  Installing       : popt-devel-1.18-1.el8.x86_64                         22/34 
  Installing       : rpm-devel-4.14.3-19.el8_5.2.x86_64                   23/34 
  Installing       : pcre2-utf32-10.32-2.el8.x86_64                       24/34 
  Installing       : pcre2-devel-10.32-2.el8.x86_64                       25/34 
  Installing       : libverto-devel-0.3.0-5.el8.x86_64                    26/34 
  Installing       : libsepol-devel-2.9-3.el8.x86_64                      27/34 
  Installing       : libselinux-devel-2.9-5.el8.x86_64                    28/34 
  Installing       : libkadm5-1.18.2-14.el8.x86_64                        29/34 
  Installing       : libcom_err-devel-1.45.6-2.el8.x86_64                 30/34 
  Installing       : keyutils-libs-devel-1.5.10-9.el8.x86_64              31/34 
  Installing       : krb5-devel-1.18.2-14.el8.x86_64                      32/34 
  Installing       : openssl-devel-1:1.1.1k-5.el8_5.x86_64                33/34 
  Installing       : net-snmp-devel-1:5.8-22.el8.x86_64                   34/34 
  Running scriptlet: net-snmp-devel-1:5.8-22.el8.x86_64                   34/34 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : keyutils-libs-devel-1.5.10-9.el8.x86_64               1/34 
  Verifying        : krb5-devel-1.18.2-14.el8.x86_64                       2/34 
  Verifying        : libcom_err-devel-1.45.6-2.el8.x86_64                  3/34 
  Verifying        : libkadm5-1.18.2-14.el8.x86_64                         4/34 
  Verifying        : libselinux-devel-2.9-5.el8.x86_64                     5/34 
  Verifying        : libsepol-devel-2.9-3.el8.x86_64                       6/34 
  Verifying        : libverto-devel-0.3.0-5.el8.x86_64                     7/34 
  Verifying        : lm_sensors-devel-3.4.0-23.20180522git70f7e08.el8.x    8/34 
  Verifying        : lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x8    9/34 
  Verifying        : openssl-devel-1:1.1.1k-5.el8_5.x86_64                10/34 
  Verifying        : pcre2-devel-10.32-2.el8.x86_64                       11/34 
  Verifying        : pcre2-utf32-10.32-2.el8.x86_64                       12/34 
  Verifying        : popt-devel-1.18-1.el8.x86_64                         13/34 
  Verifying        : python3-pyparsing-2.1.10-7.el8.noarch                14/34 
  Verifying        : rpm-devel-4.14.3-19.el8_5.2.x86_64                   15/34 
  Verifying        : mariadb-connector-c-3.1.11-2.el8_3.x86_64            16/34 
  Verifying        : mariadb-connector-c-config-3.1.11-2.el8_3.noarch     17/34 
  Verifying        : net-snmp-agent-libs-1:5.8-22.el8.x86_64              18/34 
  Verifying        : net-snmp-devel-1:5.8-22.el8.x86_64                   19/34 
  Verifying        : perl-CPAN-Meta-2.150010-396.el8.noarch               20/34 
  Verifying        : perl-CPAN-Meta-Requirements-2.140-396.el8.noarch     21/34 
  Verifying        : perl-CPAN-Meta-YAML-0.018-397.el8.noarch             22/34 
  Verifying        : perl-Encode-Locale-1.05-10.module_el8.3.0+2091+9ee   23/34 
  Verifying        : perl-ExtUtils-Command-1:7.34-1.el8.noarch            24/34 
  Verifying        : perl-ExtUtils-Install-2.14-4.el8.noarch              25/34 
  Verifying        : perl-ExtUtils-MakeMaker-1:7.34-1.el8.noarch          26/34 
  Verifying        : perl-ExtUtils-Manifest-1.70-395.el8.noarch           27/34 
  Verifying        : perl-ExtUtils-ParseXS-1:3.35-2.el8.noarch            28/34 
  Verifying        : perl-JSON-PP-1:2.97.001-3.el8.noarch                 29/34 
  Verifying        : perl-Test-Harness-1:3.42-1.el8.noarch                30/34 
  Verifying        : perl-Time-HiRes-4:1.9758-2.el8.x86_64                31/34 
  Verifying        : perl-devel-4:5.26.3-420.el8.x86_64                   32/34 
  Verifying        : perl-version-6:0.99.24-1.el8.x86_64                  33/34 
  Verifying        : systemtap-sdt-devel-4.5-3.el8.x86_64                 34/34 

Installed:
  keyutils-libs-devel-1.5.10-9.el8.x86_64                                       
  krb5-devel-1.18.2-14.el8.x86_64                                               
  libcom_err-devel-1.45.6-2.el8.x86_64                                          
  libkadm5-1.18.2-14.el8.x86_64                                                 
  libselinux-devel-2.9-5.el8.x86_64                                             
  libsepol-devel-2.9-3.el8.x86_64                                               
  libverto-devel-0.3.0-5.el8.x86_64                                             
  lm_sensors-devel-3.4.0-23.20180522git70f7e08.el8.x86_64                       
  lm_sensors-libs-3.4.0-23.20180522git70f7e08.el8.x86_64                        
  mariadb-connector-c-3.1.11-2.el8_3.x86_64                                     
  mariadb-connector-c-config-3.1.11-2.el8_3.noarch                              
  net-snmp-agent-libs-1:5.8-22.el8.x86_64                                       
  net-snmp-devel-1:5.8-22.el8.x86_64                                            
  openssl-devel-1:1.1.1k-5.el8_5.x86_64                                         
  pcre2-devel-10.32-2.el8.x86_64                                                
  pcre2-utf32-10.32-2.el8.x86_64                                                
  perl-CPAN-Meta-2.150010-396.el8.noarch                                        
  perl-CPAN-Meta-Requirements-2.140-396.el8.noarch                              
  perl-CPAN-Meta-YAML-0.018-397.el8.noarch                                      
  perl-Encode-Locale-1.05-10.module_el8.3.0+2091+9eecfe51.noarch                
  perl-ExtUtils-Command-1:7.34-1.el8.noarch                                     
  perl-ExtUtils-Install-2.14-4.el8.noarch                                       
  perl-ExtUtils-MakeMaker-1:7.34-1.el8.noarch                                   
  perl-ExtUtils-Manifest-1.70-395.el8.noarch                                    
  perl-ExtUtils-ParseXS-1:3.35-2.el8.noarch                                     
  perl-JSON-PP-1:2.97.001-3.el8.noarch                                          
  perl-Test-Harness-1:3.42-1.el8.noarch                                         
  perl-Time-HiRes-4:1.9758-2.el8.x86_64                                         
  perl-devel-4:5.26.3-420.el8.x86_64                                            
  perl-version-6:0.99.24-1.el8.x86_64                                           
  popt-devel-1.18-1.el8.x86_64                                                  
  python3-pyparsing-2.1.10-7.el8.noarch                                         
  rpm-devel-4.14.3-19.el8_5.2.x86_64                                            
  systemtap-sdt-devel-4.5-3.el8.x86_64                                          

Complete!

Need mingw32-gcc-c++ to get mingw32 cross-compiler:

[mr_halfword@haswell-alma ibv_message_passing]$ sudo yum install mingw32-gcc-c++
Last metadata expiration check: 0:16:55 ago on Sun 29 May 2022 08:59:50 BST.
Dependencies resolved.
================================================================================
 Package                     Arch        Version          Repository       Size
================================================================================
Installing:
 mingw32-gcc-c++             x86_64      7.2.0-2.el8      powertools       15 M
Installing dependencies:
 mingw-binutils-generic      x86_64      2.30-3.el8       powertools      1.4 M
 mingw-filesystem-base       noarch      104-3.el8        powertools       39 k
 mingw32-binutils            x86_64      2.30-3.el8       powertools      2.4 M
 mingw32-cpp                 x86_64      7.2.0-2.el8      powertools      6.9 M
 mingw32-crt                 noarch      5.0.2-2.el8      powertools      1.4 M
 mingw32-filesystem          noarch      104-3.el8        powertools      147 k
 mingw32-gcc                 x86_64      7.2.0-2.el8      powertools      9.8 M
 mingw32-headers             noarch      5.0.2-2.el8      powertools      5.4 M
 mingw32-winpthreads         noarch      5.0.2-2.el8      powertools       51 k

Transaction Summary
================================================================================
Install  10 Packages

Total download size: 42 M
Installed size: 239 M
Is this ok [y/N]: y
Downloading Packages:
(1/10): mingw-filesystem-base-104-3.el8.noarch. 174 kB/s |  39 kB     00:00    
(2/10): mingw-binutils-generic-2.30-3.el8.x86_6 2.4 MB/s | 1.4 MB     00:00    
(3/10): mingw32-binutils-2.30-3.el8.x86_64.rpm  2.3 MB/s | 2.4 MB     00:01    
(4/10): mingw32-crt-5.0.2-2.el8.noarch.rpm      2.8 MB/s | 1.4 MB     00:00    
(5/10): mingw32-filesystem-104-3.el8.noarch.rpm 755 kB/s | 147 kB     00:00    
(6/10): mingw32-cpp-7.2.0-2.el8.x86_64.rpm      2.9 MB/s | 6.9 MB     00:02    
(7/10): mingw32-gcc-7.2.0-2.el8.x86_64.rpm      3.0 MB/s | 9.8 MB     00:03    
(8/10): mingw32-headers-5.0.2-2.el8.noarch.rpm  2.6 MB/s | 5.4 MB     00:02    
(9/10): mingw32-winpthreads-5.0.2-2.el8.noarch. 178 kB/s |  51 kB     00:00    
(10/10): mingw32-gcc-c++-7.2.0-2.el8.x86_64.rpm 3.2 MB/s |  15 MB     00:04    
--------------------------------------------------------------------------------
Total                                           6.7 MB/s |  42 MB     00:06     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : mingw-filesystem-base-104-3.el8.noarch                1/10 
  Installing       : mingw32-filesystem-104-3.el8.noarch                   2/10 
  Installing       : mingw32-crt-5.0.2-2.el8.noarch                        3/10 
  Installing       : mingw32-winpthreads-5.0.2-2.el8.noarch                4/10 
  Installing       : mingw32-headers-5.0.2-2.el8.noarch                    5/10 
  Installing       : mingw32-cpp-7.2.0-2.el8.x86_64                        6/10 
  Installing       : mingw-binutils-generic-2.30-3.el8.x86_64              7/10 
  Installing       : mingw32-binutils-2.30-3.el8.x86_64                    8/10 
  Installing       : mingw32-gcc-7.2.0-2.el8.x86_64                        9/10 
  Installing       : mingw32-gcc-c++-7.2.0-2.el8.x86_64                   10/10 
  Running scriptlet: mingw32-gcc-c++-7.2.0-2.el8.x86_64                   10/10 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : mingw-binutils-generic-2.30-3.el8.x86_64              1/10 
  Verifying        : mingw-filesystem-base-104-3.el8.noarch                2/10 
  Verifying        : mingw32-binutils-2.30-3.el8.x86_64                    3/10 
  Verifying        : mingw32-cpp-7.2.0-2.el8.x86_64                        4/10 
  Verifying        : mingw32-crt-5.0.2-2.el8.noarch                        5/10 
  Verifying        : mingw32-filesystem-104-3.el8.noarch                   6/10 
  Verifying        : mingw32-gcc-7.2.0-2.el8.x86_64                        7/10 
  Verifying        : mingw32-gcc-c++-7.2.0-2.el8.x86_64                    8/10 
  Verifying        : mingw32-headers-5.0.2-2.el8.noarch                    9/10 
  Verifying        : mingw32-winpthreads-5.0.2-2.el8.noarch               10/10 

Installed:
  mingw-binutils-generic-2.30-3.el8.x86_64                                      
  mingw-filesystem-base-104-3.el8.noarch                                        
  mingw32-binutils-2.30-3.el8.x86_64                                            
  mingw32-cpp-7.2.0-2.el8.x86_64                                                
  mingw32-crt-5.0.2-2.el8.noarch                                                
  mingw32-filesystem-104-3.el8.noarch                                           
  mingw32-gcc-7.2.0-2.el8.x86_64                                                
  mingw32-gcc-c++-7.2.0-2.el8.x86_64                                            
  mingw32-headers-5.0.2-2.el8.noarch                                            
  mingw32-winpthreads-5.0.2-2.el8.noarch                                        

Complete!

Need mingw32-winpthreads-static to allow the pthread library to be found when linking cross-compiled executables:

[mr_halfword@haswell-alma win32]$ sudo yum install mingw32-winpthreads-static
Last metadata expiration check: 0:30:27 ago on Sun 29 May 2022 08:59:50 BST.
Dependencies resolved.
================================================================================
 Package                        Arch       Version         Repository      Size
================================================================================
Installing:
 mingw32-winpthreads-static     noarch     5.0.2-2.el8     powertools      31 k

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

Total download size: 31 k
Installed size: 117 k
Is this ok [y/N]: y
Downloading Packages:
mingw32-winpthreads-static-5.0.2-2.el8.noarch.r 151 kB/s |  31 kB     00:00    
--------------------------------------------------------------------------------
Total                                            46 kB/s |  31 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : mingw32-winpthreads-static-5.0.2-2.el8.noarch          1/1 
  Verifying        : mingw32-winpthreads-static-5.0.2-2.el8.noarch          1/1 

Installed:
  mingw32-winpthreads-static-5.0.2-2.el8.noarch                                 

Complete!

13.4. javajdk to run Eclipse oxygen

ibv_message_passing was developed using Eclipse oxygen 4.7.3a including a GNAT bench plug-in.

Used scp to copy the entire eclipse installation from a different PC, rather than installing from scratch

Initially installed the latest javajdk:

[mr_halfword@haswell-alma ~]$ sudo yum install java-latest-openjdk
[sudo] password for mr_halfword: 
Last metadata expiration check: 0:07:24 ago on Sat 12 Mar 2022 21:01:06 GMT.
Dependencies resolved.
====================================================================================================================================
 Package                                Architecture     Version                                          Repository           Size
====================================================================================================================================
Installing:
 java-latest-openjdk                    x86_64           1:17.0.1.0.12-3.rolling.el8                      epel                243 k
Installing dependencies:
 copy-jdk-configs                       noarch           4.0-2.el8                                        appstream            29 k
 java-latest-openjdk-headless           x86_64           1:17.0.1.0.12-3.rolling.el8                      epel                 41 M
 javapackages-filesystem                noarch           5.3.0-2.module_el8.0.0+6004+2fc32706             appstream            30 k
 lksctp-tools                           x86_64           1.0.18-3.el8                                     baseos               99 k
 ttmkfdir                               x86_64           3.0.9-54.el8                                     appstream            62 k
 tzdata-java                            noarch           2021e-1.el8                                      appstream           190 k
 xorg-x11-fonts-Type1                   noarch           7.5-19.el8                                       appstream           522 k
Enabling module streams:
 javapackages-runtime                                    201801                                                                    

Transaction Summary
====================================================================================================================================
Install  8 Packages

Total download size: 42 M
Installed size: 191 M
Is this ok [y/N]: y
Downloading Packages:
(1/8): lksctp-tools-1.0.18-3.el8.x86_64.rpm                                                         1.3 MB/s |  99 kB     00:00    
(2/8): copy-jdk-configs-4.0-2.el8.noarch.rpm                                                        236 kB/s |  29 kB     00:00    
(3/8): javapackages-filesystem-5.3.0-2.module_el8.0.0+6004+2fc32706.noarch.rpm                      206 kB/s |  30 kB     00:00    
(4/8): ttmkfdir-3.0.9-54.el8.x86_64.rpm                                                             617 kB/s |  62 kB     00:00    
(5/8): tzdata-java-2021e-1.el8.noarch.rpm                                                           3.2 MB/s | 190 kB     00:00    
(6/8): xorg-x11-fonts-Type1-7.5-19.el8.noarch.rpm                                                   4.1 MB/s | 522 kB     00:00    
(7/8): java-latest-openjdk-17.0.1.0.12-3.rolling.el8.x86_64.rpm                                     618 kB/s | 243 kB     00:00    
(8/8): java-latest-openjdk-headless-17.0.1.0.12-3.rolling.el8.x86_64.rpm                            5.4 MB/s |  41 MB     00:07    
------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                               4.5 MB/s |  42 MB     00:09     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Running scriptlet: copy-jdk-configs-4.0-2.el8.noarch                                                                          1/1 
  Running scriptlet: java-latest-openjdk-headless-1:17.0.1.0.12-3.rolling.el8.x86_64                                            1/1 
  Preparing        :                                                                                                            1/1 
  Installing       : tzdata-java-2021e-1.el8.noarch                                                                             1/8 
  Installing       : ttmkfdir-3.0.9-54.el8.x86_64                                                                               2/8 
  Installing       : xorg-x11-fonts-Type1-7.5-19.el8.noarch                                                                     3/8 
  Running scriptlet: xorg-x11-fonts-Type1-7.5-19.el8.noarch                                                                     3/8 
  Installing       : javapackages-filesystem-5.3.0-2.module_el8.0.0+6004+2fc32706.noarch                                        4/8 
  Installing       : copy-jdk-configs-4.0-2.el8.noarch                                                                          5/8 
  Installing       : lksctp-tools-1.0.18-3.el8.x86_64                                                                           6/8 
  Running scriptlet: lksctp-tools-1.0.18-3.el8.x86_64                                                                           6/8 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : java-latest-openjdk-headless-1:17.0.1.0.12-3.rolling.el8.x86_64                                            7/8 
  Running scriptlet: java-latest-openjdk-headless-1:17.0.1.0.12-3.rolling.el8.x86_64                                            7/8 
  Installing       : java-latest-openjdk-1:17.0.1.0.12-3.rolling.el8.x86_64                                                     8/8 
  Running scriptlet: java-latest-openjdk-1:17.0.1.0.12-3.rolling.el8.x86_64                                                     8/8 
  Running scriptlet: copy-jdk-configs-4.0-2.el8.noarch                                                                          8/8 
  Running scriptlet: java-latest-openjdk-headless-1:17.0.1.0.12-3.rolling.el8.x86_64                                            8/8 
  Running scriptlet: java-latest-openjdk-1:17.0.1.0.12-3.rolling.el8.x86_64                                                     8/8 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : lksctp-tools-1.0.18-3.el8.x86_64                                                                           1/8 
  Verifying        : copy-jdk-configs-4.0-2.el8.noarch                                                                          2/8 
  Verifying        : javapackages-filesystem-5.3.0-2.module_el8.0.0+6004+2fc32706.noarch                                        3/8 
  Verifying        : ttmkfdir-3.0.9-54.el8.x86_64                                                                               4/8 
  Verifying        : tzdata-java-2021e-1.el8.noarch                                                                             5/8 
  Verifying        : xorg-x11-fonts-Type1-7.5-19.el8.noarch                                                                     6/8 
  Verifying        : java-latest-openjdk-1:17.0.1.0.12-3.rolling.el8.x86_64                                                     7/8 
  Verifying        : java-latest-openjdk-headless-1:17.0.1.0.12-3.rolling.el8.x86_64                                            8/8 

Installed:
  copy-jdk-configs-4.0-2.el8.noarch                                                                                                 
  java-latest-openjdk-1:17.0.1.0.12-3.rolling.el8.x86_64                                                                            
  java-latest-openjdk-headless-1:17.0.1.0.12-3.rolling.el8.x86_64                                                                   
  javapackages-filesystem-5.3.0-2.module_el8.0.0+6004+2fc32706.noarch                                                               
  lksctp-tools-1.0.18-3.el8.x86_64                                                                                                  
  ttmkfdir-3.0.9-54.el8.x86_64                                                                                                      
  tzdata-java-2021e-1.el8.noarch                                                                                                    
  xorg-x11-fonts-Type1-7.5-19.el8.noarch                                                                                            

Complete!

Which installed /usr/bin/java as:

[mr_halfword@haswell-alma ~]$ java --version
openjdk 17.0.1 2021-10-19
OpenJDK Runtime Environment 21.9 (build 17.0.1+12)
OpenJDK 64-Bit Server VM 21.9 (build 17.0.1+12, mixed mode, sharing)

The eclipse.ini from 4.7.3a specified /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java as the VM to use. Can't remember what issue Eclipse Oxgyen 4.7.3a had with a later version of openjdk 11 from the Unbuntu 18.04 machine Eclipse was copied from, but best to continue to use an openjdk 8 JRE for eclipse.

Installed the older openjdk 8 into AlmaLinux 8.5 with:

[mr_halfword@haswell-alma ~]$ sudo yum install java-1.8.0-openjdk
[sudo] password for mr_halfword: 
Last metadata expiration check: 0:22:39 ago on Sat 12 Mar 2022 21:01:06 GMT.
Dependencies resolved.
====================================================================================================================================
 Package                                   Architecture         Version                               Repository               Size
====================================================================================================================================
Installing:
 java-1.8.0-openjdk                        x86_64               1:1.8.0.322.b06-2.el8_5               appstream               341 k
Installing dependencies:
 java-1.8.0-openjdk-headless               x86_64               1:1.8.0.322.b06-2.el8_5               appstream                34 M

Transaction Summary
====================================================================================================================================
Install  2 Packages

Total download size: 34 M
Installed size: 118 M
Is this ok [y/N]: y
Downloading Packages:
(1/2): java-1.8.0-openjdk-1.8.0.322.b06-2.el8_5.x86_64.rpm                                          1.7 MB/s | 341 kB     00:00    
(2/2): java-1.8.0-openjdk-headless-1.8.0.322.b06-2.el8_5.x86_64.rpm                                 6.5 MB/s |  34 MB     00:05    
------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                               6.1 MB/s |  34 MB     00:05     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Running scriptlet: java-1.8.0-openjdk-headless-1:1.8.0.322.b06-2.el8_5.x86_64                                                 1/1 
  Preparing        :                                                                                                            1/1 
  Installing       : java-1.8.0-openjdk-headless-1:1.8.0.322.b06-2.el8_5.x86_64                                                 1/2 
  Running scriptlet: java-1.8.0-openjdk-headless-1:1.8.0.322.b06-2.el8_5.x86_64                                                 1/2 
  Installing       : java-1.8.0-openjdk-1:1.8.0.322.b06-2.el8_5.x86_64                                                          2/2 
  Running scriptlet: java-1.8.0-openjdk-1:1.8.0.322.b06-2.el8_5.x86_64                                                          2/2 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : java-1.8.0-openjdk-1:1.8.0.322.b06-2.el8_5.x86_64                                                          1/2 
  Verifying        : java-1.8.0-openjdk-headless-1:1.8.0.322.b06-2.el8_5.x86_64                                                 2/2 

Installed:
  java-1.8.0-openjdk-1:1.8.0.322.b06-2.el8_5.x86_64            java-1.8.0-openjdk-headless-1:1.8.0.322.b06-2.el8_5.x86_64           

Complete!

Which install a java 8 jre:

[mr_halfword@haswell-alma ~]$  /usr/lib/jvm/jre-1.8.0/bin/java -version
openjdk version "1.8.0_322"
OpenJDK Runtime Environment (build 1.8.0_322-b06)
OpenJDK 64-Bit Server VM (build 25.322-b06, mixed mode)

In the eclipse.ini changed from:

-vm
/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java

To:

-vm
/usr/lib/jvm/jre-1.8.0/bin/java

With the above Eclipse 4.7.3a could then be started.

13.5. libreoffice to analyse csv files

[mr_halfword@haswell-alma Release]$ sudo yum install libreoffice
AlmaLinux 8 - BaseOS                                                                            9.2 kB/s | 4.3 kB     00:00    
AlmaLinux 8 - BaseOS                                                                            4.8 MB/s | 7.0 MB     00:01    
AlmaLinux 8 - AppStream                                                                          10 kB/s | 4.7 kB     00:00    
AlmaLinux 8 - AppStream                                                                         4.7 MB/s | 9.7 MB     00:02    
AlmaLinux 8 - Extras                                                                            8.4 kB/s | 3.9 kB     00:00    
determining the fastest mirror (1 hosts).. done. [============================================] 1.5 kB/s | 597  B     00:00 ETA
AlmaLinux 8 - devel                                                                             3.4 kB/s | 3.5 kB     00:01    
determining the fastest mirror (2 hosts).. done. [============================================] 1.5 kB/s | 609  B     00:00 ETA
AlmaLinux 8 - devel                                                                             2.8 MB/s | 5.4 MB     00:01    
AlmaLinux 8 - PowerTools                                                                         10 kB/s | 4.7 kB     00:00    
AlmaLinux 8 - PowerTools                                                                        3.0 MB/s | 2.6 MB     00:00    
ELRepo.org Community Enterprise Linux Repository - el8                                          7.7 kB/s | 3.0 kB     00:00    
ELRepo.org Community Enterprise Linux Repository - el8                                          275 kB/s | 171 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                                                   62 kB/s |  25 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                                                  5.6 MB/s |  11 MB     00:02    
Extra Packages for Enterprise Linux Modular 8 - x86_64                                           68 kB/s |  33 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 - x86_64                                          1.4 MB/s | 1.0 MB     00:00    
Scooter Software                                                                                6.0 kB/s | 2.9 kB     00:00    
Scooter Software                                                                                4.7 kB/s | 4.6 kB     00:00    
Dependencies resolved.
================================================================================================================================
 Package                                 Architecture    Version                                       Repository          Size
================================================================================================================================
Installing:
 libreoffice                             x86_64          1:6.4.7.2-5.el8.alma                          devel               85 k
Installing dependencies:
 apache-commons-logging                  noarch          1.2-13.module_el8.0.0+6035+97aff910           appstream           85 k
 autocorr-en                             noarch          1:6.4.7.2-5.el8.alma                          appstream          175 k
 boost-filesystem                        x86_64          1.66.0-10.el8                                 appstream           49 k
 boost-locale                            x86_64          1.66.0-10.el8                                 appstream          265 k
 clucene-contribs-lib                    x86_64          2.3.3.4-31.20130812.e8e3d20git.el8            appstream          100 k
 clucene-core                            x86_64          2.3.3.4-31.20130812.e8e3d20git.el8            appstream          598 k
 flute                                   noarch          1.3.0-18.OOo31.el8                            appstream           66 k
 google-crosextra-caladea-fonts          noarch          1.002-0.10.20130214.el8                       appstream           97 k
 google-crosextra-carlito-fonts          noarch          1.103-0.8.20130920.el8                        appstream          819 k
 gpgmepp                                 x86_64          1.13.1-9.el8                                  baseos             122 k
 gstreamer1-plugins-good-gtk             x86_64          1.16.1-2.el8                                  appstream           36 k
 hyphen-en                               noarch          2.8.8-9.el8                                   appstream           53 k
 javapackages-tools                      noarch          5.3.0-2.module_el8.0.0+6004+2fc32706          appstream           44 k
 libabw                                  x86_64          0.1.2-2.el8                                   appstream          128 k
 libbase                                 noarch          1.1.3-18.el8                                  appstream          128 k
 libcdr                                  x86_64          0.1.4-4.el8                                   appstream          425 k
 libcmis                                 x86_64          0.5.2-1.el8                                   appstream          523 k
 libepubgen                              x86_64          0.1.0-3.el8                                   appstream          164 k
 liberation-serif-fonts                  noarch          1:2.00.3-7.el8                                baseos             609 k
 libetonyek                              x86_64          0.1.8-1.el8                                   appstream          827 k
 libexttextcat                           x86_64          3.4.5-2.el8                                   appstream          211 k
 libfonts                                noarch          1.1.3-21.el8                                  appstream          196 k
 libformula                              noarch          1.1.3-18.el8                                  appstream          320 k
 libfreehand                             x86_64          0.1.2-2.el8                                   appstream          272 k
 liblangtag                              x86_64          0.6.2-8.el8                                   appstream           75 k
 liblangtag-data                         noarch          0.6.2-8.el8                                   appstream          203 k
 liblayout                               noarch          0.2.10-17.el8                                 appstream          659 k
 libloader                               noarch          1.1.3-17.el8                                  appstream          102 k
 libmspub                                x86_64          0.1.4-1.el8                                   appstream          169 k
 libmwaw                                 x86_64          0.3.14-1.el8                                  appstream          2.7 M
 libnumbertext                           x86_64          1.0.6-2.el8                                   appstream          199 k
 libodfgen                               x86_64          0.1.6-11.el8                                  appstream          229 k
 liborcus                                x86_64          0.15.4-2.el8                                  appstream          524 k
 libpagemaker                            x86_64          0.0.4-3.el8                                   appstream           84 k
 libqxp                                  x86_64          0.0.1-2.el8                                   appstream          144 k
 libreoffice-base                        x86_64          1:6.4.7.2-5.el8.alma                          appstream          2.3 M
 libreoffice-calc                        x86_64          1:6.4.7.2-5.el8.alma                          appstream          8.7 M
 libreoffice-core                        x86_64          1:6.4.7.2-5.el8.alma                          appstream          109 M
 libreoffice-data                        noarch          1:6.4.7.2-5.el8.alma                          appstream          2.1 M
 libreoffice-draw                        x86_64          1:6.4.7.2-5.el8.alma                          appstream           94 k
 libreoffice-emailmerge                  x86_64          1:6.4.7.2-5.el8.alma                          appstream           91 k
 libreoffice-graphicfilter               x86_64          1:6.4.7.2-5.el8.alma                          appstream          414 k
 libreoffice-help-en                     x86_64          1:6.4.7.2-5.el8.alma                          appstream          5.3 M
 libreoffice-impress                     x86_64          1:6.4.7.2-5.el8.alma                          appstream          666 k
 libreoffice-langpack-en                 x86_64          1:6.4.7.2-5.el8.alma                          appstream          175 k
 libreoffice-math                        x86_64          1:6.4.7.2-5.el8.alma                          appstream           92 k
 libreoffice-ogltrans                    x86_64          1:6.4.7.2-5.el8.alma                          appstream          176 k
 libreoffice-opensymbol-fonts            noarch          1:6.4.7.2-5.el8.alma                          appstream          215 k
 libreoffice-pdfimport                   x86_64          1:6.4.7.2-5.el8.alma                          appstream          310 k
 libreoffice-pyuno                       x86_64          1:6.4.7.2-5.el8.alma                          appstream          312 k
 libreoffice-ure                         x86_64          1:6.4.7.2-5.el8.alma                          appstream          2.3 M
 libreoffice-ure-common                  noarch          1:6.4.7.2-5.el8.alma                          appstream          488 k
 libreoffice-writer                      x86_64          1:6.4.7.2-5.el8.alma                          appstream          3.8 M
 libreoffice-x11                         x86_64          1:6.4.7.2-5.el8.alma                          appstream          313 k
 librepository                           noarch          1.1.3-17.el8                                  appstream           69 k
 librevenge                              x86_64          0.0.4-12.el8                                  appstream          248 k
 libserializer                           noarch          1.1.2-18.el8                                  appstream           38 k
 libstaroffice                           x86_64          0.0.6-1.el8                                   appstream          891 k
 libvisio                                x86_64          0.1.6-2.el8                                   appstream          261 k
 libwpd                                  x86_64          0.10.2-2.el8                                  appstream          240 k
 libwpg                                  x86_64          0.3.2-1.el8                                   appstream           75 k
 libwps                                  x86_64          0.4.9-1.el8                                   appstream          865 k
 libzmf                                  x86_64          0.0.2-3.el8                                   appstream           90 k
 lpsolve                                 x86_64          5.5.2.0-21.el8                                appstream          423 k
 mythes                                  x86_64          1.2.4-9.el8                                   appstream           20 k
 mythes-en                               noarch          3.0-23.el8                                    appstream          3.9 M
 ongres-scram                            noarch          1.0.0~beta.2-5.el8                            appstream           46 k
 ongres-scram-client                     noarch          1.0.0~beta.2-5.el8                            appstream           24 k
 pentaho-libxml                          noarch          1.1.3-17.el8                                  appstream           87 k
 pentaho-reporting-flow-engine           noarch          1:0.9.4-15.el8                                appstream          289 k
 postgresql-jdbc                         noarch          42.2.3-3.el8_2                                appstream          709 k
 raptor2                                 x86_64          2.0.15-16.el8                                 appstream          207 k
 rasqal                                  x86_64          0.9.33-6.el8                                  appstream          289 k
 redland                                 x86_64          1.0.17-14.el8                                 appstream          175 k
 sac                                     noarch          1.3-28.el8                                    appstream           23 k
 xmlsec1-nss                             x86_64          1.2.25-4.el8                                  appstream           80 k
Installing weak dependencies:
 libreoffice-gtk3                        x86_64          1:6.4.7.2-5.el8.alma                          appstream          532 k
Enabling module streams:
 maven                                                   3.5                                                                   

Transaction Summary
================================================================================================================================
Install  78 Packages

Total download size: 157 M
Installed size: 447 M
Is this ok [y/N]: y
Downloading Packages:
done.inux 8 - BaseOS                             [   ===                                      ] 1.9 kB/s | 1.2 kB     --:-- ETA
(1/78): apache-commons-logging-1.2-13.module_el8.0.0+6035+97aff910.noarch.rpm                   610 kB/s |  85 kB     00:00    
(2/78): gpgmepp-1.13.1-9.el8.x86_64.rpm                                                         768 kB/s | 122 kB     00:00    
(3/78): boost-filesystem-1.66.0-10.el8.x86_64.rpm                                               961 kB/s |  49 kB     00:00    
(4/78): autocorr-en-6.4.7.2-5.el8.alma.noarch.rpm                                               1.7 MB/s | 175 kB     00:00    
(5/78): clucene-contribs-lib-2.3.3.4-31.20130812.e8e3d20git.el8.x86_64.rpm                      1.4 MB/s | 100 kB     00:00    
(6/78): boost-locale-1.66.0-10.el8.x86_64.rpm                                                   2.4 MB/s | 265 kB     00:00    
(7/78): liberation-serif-fonts-2.00.3-7.el8.noarch.rpm                                          1.6 MB/s | 609 kB     00:00    
(8/78): flute-1.3.0-18.OOo31.el8.noarch.rpm                                                     1.3 MB/s |  66 kB     00:00    
(9/78): google-crosextra-caladea-fonts-1.002-0.10.20130214.el8.noarch.rpm                       1.3 MB/s |  97 kB     00:00    
(10/78): clucene-core-2.3.3.4-31.20130812.e8e3d20git.el8.x86_64.rpm                             3.4 MB/s | 598 kB     00:00    
(11/78): gstreamer1-plugins-good-gtk-1.16.1-2.el8.x86_64.rpm                                    635 kB/s |  36 kB     00:00    
(12/78): javapackages-tools-5.3.0-2.module_el8.0.0+6004+2fc32706.noarch.rpm                     947 kB/s |  44 kB     00:00    
(13/78): hyphen-en-2.8.8-9.el8.noarch.rpm                                                       894 kB/s |  53 kB     00:00    
(14/78): google-crosextra-carlito-fonts-1.103-0.8.20130920.el8.noarch.rpm                       3.6 MB/s | 819 kB     00:00    
(15/78): libabw-0.1.2-2.el8.x86_64.rpm                                                          1.6 MB/s | 128 kB     00:00    
(16/78): libbase-1.1.3-18.el8.noarch.rpm                                                        1.7 MB/s | 128 kB     00:00    
(17/78): libcdr-0.1.4-4.el8.x86_64.rpm                                                          3.3 MB/s | 425 kB     00:00    
(18/78): libepubgen-0.1.0-3.el8.x86_64.rpm                                                      1.6 MB/s | 164 kB     00:00    
(19/78): libcmis-0.5.2-1.el8.x86_64.rpm                                                         3.3 MB/s | 523 kB     00:00    
(20/78): libexttextcat-3.4.5-2.el8.x86_64.rpm                                                   1.7 MB/s | 211 kB     00:00    
(21/78): libfonts-1.1.3-21.el8.noarch.rpm                                                       1.9 MB/s | 196 kB     00:00    
(22/78): libformula-1.1.3-18.el8.noarch.rpm                                                     2.0 MB/s | 320 kB     00:00    
(23/78): libetonyek-0.1.8-1.el8.x86_64.rpm                                                      2.7 MB/s | 827 kB     00:00    
(24/78): libfreehand-0.1.2-2.el8.x86_64.rpm                                                     1.8 MB/s | 272 kB     00:00    
(25/78): liblangtag-0.6.2-8.el8.x86_64.rpm                                                      1.3 MB/s |  75 kB     00:00    
(26/78): liblangtag-data-0.6.2-8.el8.noarch.rpm                                                 2.1 MB/s | 203 kB     00:00    
(27/78): libloader-1.1.3-17.el8.noarch.rpm                                                      1.5 MB/s | 102 kB     00:00    
(28/78): libmspub-0.1.4-1.el8.x86_64.rpm                                                        2.5 MB/s | 169 kB     00:00    
(29/78): liblayout-0.2.10-17.el8.noarch.rpm                                                     2.5 MB/s | 659 kB     00:00    
(30/78): libnumbertext-1.0.6-2.el8.x86_64.rpm                                                   1.7 MB/s | 199 kB     00:00    
(31/78): libodfgen-0.1.6-11.el8.x86_64.rpm                                                      2.5 MB/s | 229 kB     00:00    
(32/78): libpagemaker-0.0.4-3.el8.x86_64.rpm                                                    1.1 MB/s |  84 kB     00:00    
(33/78): liborcus-0.15.4-2.el8.x86_64.rpm                                                       2.6 MB/s | 524 kB     00:00    
(34/78): libqxp-0.0.1-2.el8.x86_64.rpm                                                          1.7 MB/s | 144 kB     00:00    
(35/78): libmwaw-0.3.14-1.el8.x86_64.rpm                                                        2.8 MB/s | 2.7 MB     00:00    
(36/78): libreoffice-base-6.4.7.2-5.el8.alma.x86_64.rpm                                         2.6 MB/s | 2.3 MB     00:00    
(37/78): libreoffice-data-6.4.7.2-5.el8.alma.noarch.rpm                                         2.6 MB/s | 2.1 MB     00:00    
(38/78): libreoffice-draw-6.4.7.2-5.el8.alma.x86_64.rpm                                         1.2 MB/s |  94 kB     00:00    
(39/78): libreoffice-emailmerge-6.4.7.2-5.el8.alma.x86_64.rpm                                   1.3 MB/s |  91 kB     00:00    
(40/78): libreoffice-graphicfilter-6.4.7.2-5.el8.alma.x86_64.rpm                                1.8 MB/s | 414 kB     00:00    
(41/78): libreoffice-gtk3-6.4.7.2-5.el8.alma.x86_64.rpm                                         2.2 MB/s | 532 kB     00:00    
(42/78): libreoffice-calc-6.4.7.2-5.el8.alma.x86_64.rpm                                         2.2 MB/s | 8.7 MB     00:04    
(43/78): libreoffice-help-en-6.4.7.2-5.el8.alma.x86_64.rpm                                      3.0 MB/s | 5.3 MB     00:01    
(44/78): libreoffice-langpack-en-6.4.7.2-5.el8.alma.x86_64.rpm                                  2.1 MB/s | 175 kB     00:00    
(45/78): libreoffice-math-6.4.7.2-5.el8.alma.x86_64.rpm                                         1.2 MB/s |  92 kB     00:00    
(46/78): libreoffice-ogltrans-6.4.7.2-5.el8.alma.x86_64.rpm                                     2.3 MB/s | 176 kB     00:00    
(47/78): libreoffice-impress-6.4.7.2-5.el8.alma.x86_64.rpm                                      2.0 MB/s | 666 kB     00:00    
(48/78): libreoffice-opensymbol-fonts-6.4.7.2-5.el8.alma.noarch.rpm                             3.2 MB/s | 215 kB     00:00    
(49/78): libreoffice-pyuno-6.4.7.2-5.el8.alma.x86_64.rpm                                        2.3 MB/s | 312 kB     00:00    
(50/78): libreoffice-pdfimport-6.4.7.2-5.el8.alma.x86_64.rpm                                    1.6 MB/s | 310 kB     00:00    
(51/78): libreoffice-ure-common-6.4.7.2-5.el8.alma.noarch.rpm                                   1.7 MB/s | 488 kB     00:00    
(52/78): libreoffice-ure-6.4.7.2-5.el8.alma.x86_64.rpm                                          3.0 MB/s | 2.3 MB     00:00    
(53/78): libreoffice-x11-6.4.7.2-5.el8.alma.x86_64.rpm                                          2.2 MB/s | 313 kB     00:00    
(54/78): librepository-1.1.3-17.el8.noarch.rpm                                                  858 kB/s |  69 kB     00:00    
(55/78): librevenge-0.0.4-12.el8.x86_64.rpm                                                     1.9 MB/s | 248 kB     00:00    
(56/78): libserializer-1.1.2-18.el8.noarch.rpm                                                  563 kB/s |  38 kB     00:00    
(57/78): libstaroffice-0.0.6-1.el8.x86_64.rpm                                                   2.3 MB/s | 891 kB     00:00    
(58/78): libvisio-0.1.6-2.el8.x86_64.rpm                                                        1.8 MB/s | 261 kB     00:00    
(59/78): libwpd-0.10.2-2.el8.x86_64.rpm                                                         1.8 MB/s | 240 kB     00:00    
(60/78): libreoffice-writer-6.4.7.2-5.el8.alma.x86_64.rpm                                       2.4 MB/s | 3.8 MB     00:01    
(61/78): libwpg-0.3.2-1.el8.x86_64.rpm                                                          899 kB/s |  75 kB     00:00    
(62/78): libzmf-0.0.2-3.el8.x86_64.rpm                                                          923 kB/s |  90 kB     00:00    
(63/78): lpsolve-5.5.2.0-21.el8.x86_64.rpm                                                      1.6 MB/s | 423 kB     00:00    
(64/78): libwps-0.4.9-1.el8.x86_64.rpm                                                          2.2 MB/s | 865 kB     00:00    
(65/78): mythes-1.2.4-9.el8.x86_64.rpm                                                          191 kB/s |  20 kB     00:00    
(66/78): ongres-scram-1.0.0~beta.2-5.el8.noarch.rpm                                             550 kB/s |  46 kB     00:00    
(67/78): ongres-scram-client-1.0.0~beta.2-5.el8.noarch.rpm                                      480 kB/s |  24 kB     00:00    
(68/78): pentaho-libxml-1.1.3-17.el8.noarch.rpm                                                 987 kB/s |  87 kB     00:00    
(69/78): pentaho-reporting-flow-engine-0.9.4-15.el8.noarch.rpm                                  1.5 MB/s | 289 kB     00:00    
(70/78): postgresql-jdbc-42.2.3-3.el8_2.noarch.rpm                                              2.3 MB/s | 709 kB     00:00    
(71/78): raptor2-2.0.15-16.el8.x86_64.rpm                                                       1.5 MB/s | 207 kB     00:00    
(72/78): rasqal-0.9.33-6.el8.x86_64.rpm                                                         1.9 MB/s | 289 kB     00:00    
(73/78): redland-1.0.17-14.el8.x86_64.rpm                                                       1.3 MB/s | 175 kB     00:00    
(74/78): sac-1.3-28.el8.noarch.rpm                                                              213 kB/s |  23 kB     00:00    
(75/78): mythes-en-3.0-23.el8.noarch.rpm                                                        2.7 MB/s | 3.9 MB     00:01    
(76/78): xmlsec1-nss-1.2.25-4.el8.x86_64.rpm                                                    622 kB/s |  80 kB     00:00    
(77/78): libreoffice-6.4.7.2-5.el8.alma.x86_64.rpm                                              199 kB/s |  85 kB     00:00    
(78/78): libreoffice-core-6.4.7.2-5.el8.alma.x86_64.rpm                                         5.0 MB/s | 109 MB     00:21    
--------------------------------------------------------------------------------------------------------------------------------
Total                                                                                           6.3 MB/s | 157 MB     00:25     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                                                                        1/1 
  Installing       : librevenge-0.0.4-12.el8.x86_64                                                                        1/78 
  Running scriptlet: librevenge-0.0.4-12.el8.x86_64                                                                        1/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : javapackages-tools-5.3.0-2.module_el8.0.0+6004+2fc32706.noarch                                        2/78 
  Installing       : libreoffice-data-1:6.4.7.2-5.el8.alma.noarch                                                          3/78 
  Running scriptlet: libreoffice-data-1:6.4.7.2-5.el8.alma.noarch                                                          3/78 
  Installing       : libodfgen-0.1.6-11.el8.x86_64                                                                         4/78 
  Running scriptlet: libodfgen-0.1.6-11.el8.x86_64                                                                         4/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libmwaw-0.3.14-1.el8.x86_64                                                                           5/78 
  Running scriptlet: libmwaw-0.3.14-1.el8.x86_64                                                                           5/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libstaroffice-0.0.6-1.el8.x86_64                                                                      6/78 
  Running scriptlet: libstaroffice-0.0.6-1.el8.x86_64                                                                      6/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libwpd-0.10.2-2.el8.x86_64                                                                            7/78 
  Running scriptlet: libwpd-0.10.2-2.el8.x86_64                                                                            7/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : sac-1.3-28.el8.noarch                                                                                 8/78 
  Installing       : raptor2-2.0.15-16.el8.x86_64                                                                          9/78 
  Running scriptlet: raptor2-2.0.15-16.el8.x86_64                                                                          9/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : flute-1.3.0-18.OOo31.el8.noarch                                                                      10/78 
  Installing       : libwpg-0.3.2-1.el8.x86_64                                                                            11/78 
  Running scriptlet: libwpg-0.3.2-1.el8.x86_64                                                                            11/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libwps-0.4.9-1.el8.x86_64                                                                            12/78 
  Running scriptlet: libwps-0.4.9-1.el8.x86_64                                                                            12/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : mythes-1.2.4-9.el8.x86_64                                                                            13/78 
  Running scriptlet: mythes-1.2.4-9.el8.x86_64                                                                            13/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : clucene-core-2.3.3.4-31.20130812.e8e3d20git.el8.x86_64                                               14/78 
  Installing       : boost-filesystem-1.66.0-10.el8.x86_64                                                                15/78 
  Running scriptlet: boost-filesystem-1.66.0-10.el8.x86_64                                                                15/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : liborcus-0.15.4-2.el8.x86_64                                                                         16/78 
  Running scriptlet: liborcus-0.15.4-2.el8.x86_64                                                                         16/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : apache-commons-logging-1.2-13.module_el8.0.0+6035+97aff910.noarch                                    17/78 
  Installing       : libbase-1.1.3-18.el8.noarch                                                                          18/78 
  Installing       : libloader-1.1.3-17.el8.noarch                                                                        19/78 
  Installing       : libfonts-1.1.3-21.el8.noarch                                                                         20/78 
  Installing       : pentaho-libxml-1.1.3-17.el8.noarch                                                                   21/78 
  Installing       : librepository-1.1.3-17.el8.noarch                                                                    22/78 
  Installing       : liberation-serif-fonts-1:2.00.3-7.el8.noarch                                                         23/78 
  Installing       : liblayout-0.2.10-17.el8.noarch                                                                       24/78 
  Installing       : libformula-1.1.3-18.el8.noarch                                                                       25/78 
  Installing       : libserializer-1.1.2-18.el8.noarch                                                                    26/78 
  Installing       : pentaho-reporting-flow-engine-1:0.9.4-15.el8.noarch                                                  27/78 
  Installing       : clucene-contribs-lib-2.3.3.4-31.20130812.e8e3d20git.el8.x86_64                                       28/78 
  Installing       : mythes-en-3.0-23.el8.noarch                                                                          29/78 
  Installing       : rasqal-0.9.33-6.el8.x86_64                                                                           30/78 
  Running scriptlet: rasqal-0.9.33-6.el8.x86_64                                                                           30/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : redland-1.0.17-14.el8.x86_64                                                                         31/78 
  Running scriptlet: redland-1.0.17-14.el8.x86_64                                                                         31/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libabw-0.1.2-2.el8.x86_64                                                                            32/78 
  Running scriptlet: libabw-0.1.2-2.el8.x86_64                                                                            32/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libcdr-0.1.4-4.el8.x86_64                                                                            33/78 
  Running scriptlet: libcdr-0.1.4-4.el8.x86_64                                                                            33/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libepubgen-0.1.0-3.el8.x86_64                                                                        34/78 
  Running scriptlet: libepubgen-0.1.0-3.el8.x86_64                                                                        34/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libfreehand-0.1.2-2.el8.x86_64                                                                       35/78 
  Running scriptlet: libfreehand-0.1.2-2.el8.x86_64                                                                       35/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libmspub-0.1.4-1.el8.x86_64                                                                          36/78 
  Running scriptlet: libmspub-0.1.4-1.el8.x86_64                                                                          36/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libpagemaker-0.0.4-3.el8.x86_64                                                                      37/78 
  Running scriptlet: libpagemaker-0.0.4-3.el8.x86_64                                                                      37/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libqxp-0.0.1-2.el8.x86_64                                                                            38/78 
  Running scriptlet: libqxp-0.0.1-2.el8.x86_64                                                                            38/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libvisio-0.1.6-2.el8.x86_64                                                                          39/78 
  Running scriptlet: libvisio-0.1.6-2.el8.x86_64                                                                          39/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libzmf-0.0.2-3.el8.x86_64                                                                            40/78 
  Installing       : xmlsec1-nss-1.2.25-4.el8.x86_64                                                                      41/78 
  Installing       : ongres-scram-1.0.0~beta.2-5.el8.noarch                                                               42/78 
  Installing       : ongres-scram-client-1.0.0~beta.2-5.el8.noarch                                                        43/78 
  Installing       : postgresql-jdbc-42.2.3-3.el8_2.noarch                                                                44/78 
  Installing       : lpsolve-5.5.2.0-21.el8.x86_64                                                                        45/78 
  Running scriptlet: lpsolve-5.5.2.0-21.el8.x86_64                                                                        45/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libreoffice-ure-common-1:6.4.7.2-5.el8.alma.noarch                                                   46/78 
  Installing       : libreoffice-opensymbol-fonts-1:6.4.7.2-5.el8.alma.noarch                                             47/78 
  Installing       : libnumbertext-1.0.6-2.el8.x86_64                                                                     48/78 
  Installing       : liblangtag-data-0.6.2-8.el8.noarch                                                                   49/78 
  Installing       : liblangtag-0.6.2-8.el8.x86_64                                                                        50/78 
  Running scriptlet: liblangtag-0.6.2-8.el8.x86_64                                                                        50/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libetonyek-0.1.8-1.el8.x86_64                                                                        51/78 
  Running scriptlet: libetonyek-0.1.8-1.el8.x86_64                                                                        51/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libexttextcat-3.4.5-2.el8.x86_64                                                                     52/78 
  Running scriptlet: libexttextcat-3.4.5-2.el8.x86_64                                                                     52/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libcmis-0.5.2-1.el8.x86_64                                                                           53/78 
  Running scriptlet: libcmis-0.5.2-1.el8.x86_64                                                                           53/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : hyphen-en-2.8.8-9.el8.noarch                                                                         54/78 
  Installing       : gstreamer1-plugins-good-gtk-1.16.1-2.el8.x86_64                                                      55/78 
  Installing       : google-crosextra-carlito-fonts-1.103-0.8.20130920.el8.noarch                                         56/78 
  Installing       : google-crosextra-caladea-fonts-1.002-0.10.20130214.el8.noarch                                        57/78 
  Installing       : boost-locale-1.66.0-10.el8.x86_64                                                                    58/78 
  Running scriptlet: boost-locale-1.66.0-10.el8.x86_64                                                                    58/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : autocorr-en-1:6.4.7.2-5.el8.alma.noarch                                                              59/78 
  Installing       : gpgmepp-1.13.1-9.el8.x86_64                                                                          60/78 
  Installing       : libreoffice-help-en-1:6.4.7.2-5.el8.alma.x86_64                                                      61/78 
  Installing       : libreoffice-langpack-en-1:6.4.7.2-5.el8.alma.x86_64                                                  62/78 
  Installing       : libreoffice-gtk3-1:6.4.7.2-5.el8.alma.x86_64                                                         63/78 
  Installing       : libreoffice-ure-1:6.4.7.2-5.el8.alma.x86_64                                                          64/78 
  Installing       : libreoffice-x11-1:6.4.7.2-5.el8.alma.x86_64                                                          65/78 
  Installing       : libreoffice-core-1:6.4.7.2-5.el8.alma.x86_64                                                         66/78 
  Installing       : libreoffice-pyuno-1:6.4.7.2-5.el8.alma.x86_64                                                        67/78 
  Installing       : libreoffice-pdfimport-1:6.4.7.2-5.el8.alma.x86_64                                                    68/78 
  Installing       : libreoffice-calc-1:6.4.7.2-5.el8.alma.x86_64                                                         69/78 
  Installing       : libreoffice-writer-1:6.4.7.2-5.el8.alma.x86_64                                                       70/78 
  Installing       : libreoffice-graphicfilter-1:6.4.7.2-5.el8.alma.x86_64                                                71/78 
  Installing       : libreoffice-draw-1:6.4.7.2-5.el8.alma.x86_64                                                         72/78 
  Installing       : libreoffice-emailmerge-1:6.4.7.2-5.el8.alma.x86_64                                                   73/78 
  Installing       : libreoffice-base-1:6.4.7.2-5.el8.alma.x86_64                                                         74/78 
  Installing       : libreoffice-math-1:6.4.7.2-5.el8.alma.x86_64                                                         75/78 
  Installing       : libreoffice-ogltrans-1:6.4.7.2-5.el8.alma.x86_64                                                     76/78 
  Installing       : libreoffice-impress-1:6.4.7.2-5.el8.alma.x86_64                                                      77/78 
  Installing       : libreoffice-1:6.4.7.2-5.el8.alma.x86_64                                                              78/78 
  Running scriptlet: libreoffice-data-1:6.4.7.2-5.el8.alma.noarch                                                         78/78 
  Running scriptlet: libreoffice-1:6.4.7.2-5.el8.alma.x86_64                                                              78/78 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : gpgmepp-1.13.1-9.el8.x86_64                                                                           1/78 
  Verifying        : liberation-serif-fonts-1:2.00.3-7.el8.noarch                                                          2/78 
  Verifying        : apache-commons-logging-1.2-13.module_el8.0.0+6035+97aff910.noarch                                     3/78 
  Verifying        : autocorr-en-1:6.4.7.2-5.el8.alma.noarch                                                               4/78 
  Verifying        : boost-filesystem-1.66.0-10.el8.x86_64                                                                 5/78 
  Verifying        : boost-locale-1.66.0-10.el8.x86_64                                                                     6/78 
  Verifying        : clucene-contribs-lib-2.3.3.4-31.20130812.e8e3d20git.el8.x86_64                                        7/78 
  Verifying        : clucene-core-2.3.3.4-31.20130812.e8e3d20git.el8.x86_64                                                8/78 
  Verifying        : flute-1.3.0-18.OOo31.el8.noarch                                                                       9/78 
  Verifying        : google-crosextra-caladea-fonts-1.002-0.10.20130214.el8.noarch                                        10/78 
  Verifying        : google-crosextra-carlito-fonts-1.103-0.8.20130920.el8.noarch                                         11/78 
  Verifying        : gstreamer1-plugins-good-gtk-1.16.1-2.el8.x86_64                                                      12/78 
  Verifying        : hyphen-en-2.8.8-9.el8.noarch                                                                         13/78 
  Verifying        : javapackages-tools-5.3.0-2.module_el8.0.0+6004+2fc32706.noarch                                       14/78 
  Verifying        : libabw-0.1.2-2.el8.x86_64                                                                            15/78 
  Verifying        : libbase-1.1.3-18.el8.noarch                                                                          16/78 
  Verifying        : libcdr-0.1.4-4.el8.x86_64                                                                            17/78 
  Verifying        : libcmis-0.5.2-1.el8.x86_64                                                                           18/78 
  Verifying        : libepubgen-0.1.0-3.el8.x86_64                                                                        19/78 
  Verifying        : libetonyek-0.1.8-1.el8.x86_64                                                                        20/78 
  Verifying        : libexttextcat-3.4.5-2.el8.x86_64                                                                     21/78 
  Verifying        : libfonts-1.1.3-21.el8.noarch                                                                         22/78 
  Verifying        : libformula-1.1.3-18.el8.noarch                                                                       23/78 
  Verifying        : libfreehand-0.1.2-2.el8.x86_64                                                                       24/78 
  Verifying        : liblangtag-0.6.2-8.el8.x86_64                                                                        25/78 
  Verifying        : liblangtag-data-0.6.2-8.el8.noarch                                                                   26/78 
  Verifying        : liblayout-0.2.10-17.el8.noarch                                                                       27/78 
  Verifying        : libloader-1.1.3-17.el8.noarch                                                                        28/78 
  Verifying        : libmspub-0.1.4-1.el8.x86_64                                                                          29/78 
  Verifying        : libmwaw-0.3.14-1.el8.x86_64                                                                          30/78 
  Verifying        : libnumbertext-1.0.6-2.el8.x86_64                                                                     31/78 
  Verifying        : libodfgen-0.1.6-11.el8.x86_64                                                                        32/78 
  Verifying        : liborcus-0.15.4-2.el8.x86_64                                                                         33/78 
  Verifying        : libpagemaker-0.0.4-3.el8.x86_64                                                                      34/78 
  Verifying        : libqxp-0.0.1-2.el8.x86_64                                                                            35/78 
  Verifying        : libreoffice-base-1:6.4.7.2-5.el8.alma.x86_64                                                         36/78 
  Verifying        : libreoffice-calc-1:6.4.7.2-5.el8.alma.x86_64                                                         37/78 
  Verifying        : libreoffice-core-1:6.4.7.2-5.el8.alma.x86_64                                                         38/78 
  Verifying        : libreoffice-data-1:6.4.7.2-5.el8.alma.noarch                                                         39/78 
  Verifying        : libreoffice-draw-1:6.4.7.2-5.el8.alma.x86_64                                                         40/78 
  Verifying        : libreoffice-emailmerge-1:6.4.7.2-5.el8.alma.x86_64                                                   41/78 
  Verifying        : libreoffice-graphicfilter-1:6.4.7.2-5.el8.alma.x86_64                                                42/78 
  Verifying        : libreoffice-gtk3-1:6.4.7.2-5.el8.alma.x86_64                                                         43/78 
  Verifying        : libreoffice-help-en-1:6.4.7.2-5.el8.alma.x86_64                                                      44/78 
  Verifying        : libreoffice-impress-1:6.4.7.2-5.el8.alma.x86_64                                                      45/78 
  Verifying        : libreoffice-langpack-en-1:6.4.7.2-5.el8.alma.x86_64                                                  46/78 
  Verifying        : libreoffice-math-1:6.4.7.2-5.el8.alma.x86_64                                                         47/78 
  Verifying        : libreoffice-ogltrans-1:6.4.7.2-5.el8.alma.x86_64                                                     48/78 
  Verifying        : libreoffice-opensymbol-fonts-1:6.4.7.2-5.el8.alma.noarch                                             49/78 
  Verifying        : libreoffice-pdfimport-1:6.4.7.2-5.el8.alma.x86_64                                                    50/78 
  Verifying        : libreoffice-pyuno-1:6.4.7.2-5.el8.alma.x86_64                                                        51/78 
  Verifying        : libreoffice-ure-1:6.4.7.2-5.el8.alma.x86_64                                                          52/78 
  Verifying        : libreoffice-ure-common-1:6.4.7.2-5.el8.alma.noarch                                                   53/78 
  Verifying        : libreoffice-writer-1:6.4.7.2-5.el8.alma.x86_64                                                       54/78 
  Verifying        : libreoffice-x11-1:6.4.7.2-5.el8.alma.x86_64                                                          55/78 
  Verifying        : librepository-1.1.3-17.el8.noarch                                                                    56/78 
  Verifying        : librevenge-0.0.4-12.el8.x86_64                                                                       57/78 
  Verifying        : libserializer-1.1.2-18.el8.noarch                                                                    58/78 
  Verifying        : libstaroffice-0.0.6-1.el8.x86_64                                                                     59/78 
  Verifying        : libvisio-0.1.6-2.el8.x86_64                                                                          60/78 
  Verifying        : libwpd-0.10.2-2.el8.x86_64                                                                           61/78 
  Verifying        : libwpg-0.3.2-1.el8.x86_64                                                                            62/78 
  Verifying        : libwps-0.4.9-1.el8.x86_64                                                                            63/78 
  Verifying        : libzmf-0.0.2-3.el8.x86_64                                                                            64/78 
  Verifying        : lpsolve-5.5.2.0-21.el8.x86_64                                                                        65/78 
  Verifying        : mythes-1.2.4-9.el8.x86_64                                                                            66/78 
  Verifying        : mythes-en-3.0-23.el8.noarch                                                                          67/78 
  Verifying        : ongres-scram-1.0.0~beta.2-5.el8.noarch                                                               68/78 
  Verifying        : ongres-scram-client-1.0.0~beta.2-5.el8.noarch                                                        69/78 
  Verifying        : pentaho-libxml-1.1.3-17.el8.noarch                                                                   70/78 
  Verifying        : pentaho-reporting-flow-engine-1:0.9.4-15.el8.noarch                                                  71/78 
  Verifying        : postgresql-jdbc-42.2.3-3.el8_2.noarch                                                                72/78 
  Verifying        : raptor2-2.0.15-16.el8.x86_64                                                                         73/78 
  Verifying        : rasqal-0.9.33-6.el8.x86_64                                                                           74/78 
  Verifying        : redland-1.0.17-14.el8.x86_64                                                                         75/78 
  Verifying        : sac-1.3-28.el8.noarch                                                                                76/78 
  Verifying        : xmlsec1-nss-1.2.25-4.el8.x86_64                                                                      77/78 
  Verifying        : libreoffice-1:6.4.7.2-5.el8.alma.x86_64                                                              78/78 

Installed:
  apache-commons-logging-1.2-13.module_el8.0.0+6035+97aff910.noarch                                                             
  autocorr-en-1:6.4.7.2-5.el8.alma.noarch                                                                                       
  boost-filesystem-1.66.0-10.el8.x86_64                                                                                         
  boost-locale-1.66.0-10.el8.x86_64                                                                                             
  clucene-contribs-lib-2.3.3.4-31.20130812.e8e3d20git.el8.x86_64                                                                
  clucene-core-2.3.3.4-31.20130812.e8e3d20git.el8.x86_64                                                                        
  flute-1.3.0-18.OOo31.el8.noarch                                                                                               
  google-crosextra-caladea-fonts-1.002-0.10.20130214.el8.noarch                                                                 
  google-crosextra-carlito-fonts-1.103-0.8.20130920.el8.noarch                                                                  
  gpgmepp-1.13.1-9.el8.x86_64                                                                                                   
  gstreamer1-plugins-good-gtk-1.16.1-2.el8.x86_64                                                                               
  hyphen-en-2.8.8-9.el8.noarch                                                                                                  
  javapackages-tools-5.3.0-2.module_el8.0.0+6004+2fc32706.noarch                                                                
  libabw-0.1.2-2.el8.x86_64                                                                                                     
  libbase-1.1.3-18.el8.noarch                                                                                                   
  libcdr-0.1.4-4.el8.x86_64                                                                                                     
  libcmis-0.5.2-1.el8.x86_64                                                                                                    
  libepubgen-0.1.0-3.el8.x86_64                                                                                                 
  liberation-serif-fonts-1:2.00.3-7.el8.noarch                                                                                  
  libetonyek-0.1.8-1.el8.x86_64                                                                                                 
  libexttextcat-3.4.5-2.el8.x86_64                                                                                              
  libfonts-1.1.3-21.el8.noarch                                                                                                  
  libformula-1.1.3-18.el8.noarch                                                                                                
  libfreehand-0.1.2-2.el8.x86_64                                                                                                
  liblangtag-0.6.2-8.el8.x86_64                                                                                                 
  liblangtag-data-0.6.2-8.el8.noarch                                                                                            
  liblayout-0.2.10-17.el8.noarch                                                                                                
  libloader-1.1.3-17.el8.noarch                                                                                                 
  libmspub-0.1.4-1.el8.x86_64                                                                                                   
  libmwaw-0.3.14-1.el8.x86_64                                                                                                   
  libnumbertext-1.0.6-2.el8.x86_64                                                                                              
  libodfgen-0.1.6-11.el8.x86_64                                                                                                 
  liborcus-0.15.4-2.el8.x86_64                                                                                                  
  libpagemaker-0.0.4-3.el8.x86_64                                                                                               
  libqxp-0.0.1-2.el8.x86_64                                                                                                     
  libreoffice-1:6.4.7.2-5.el8.alma.x86_64                                                                                       
  libreoffice-base-1:6.4.7.2-5.el8.alma.x86_64                                                                                  
  libreoffice-calc-1:6.4.7.2-5.el8.alma.x86_64                                                                                  
  libreoffice-core-1:6.4.7.2-5.el8.alma.x86_64                                                                                  
  libreoffice-data-1:6.4.7.2-5.el8.alma.noarch                                                                                  
  libreoffice-draw-1:6.4.7.2-5.el8.alma.x86_64                                                                                  
  libreoffice-emailmerge-1:6.4.7.2-5.el8.alma.x86_64                                                                            
  libreoffice-graphicfilter-1:6.4.7.2-5.el8.alma.x86_64                                                                         
  libreoffice-gtk3-1:6.4.7.2-5.el8.alma.x86_64                                                                                  
  libreoffice-help-en-1:6.4.7.2-5.el8.alma.x86_64                                                                               
  libreoffice-impress-1:6.4.7.2-5.el8.alma.x86_64                                                                               
  libreoffice-langpack-en-1:6.4.7.2-5.el8.alma.x86_64                                                                           
  libreoffice-math-1:6.4.7.2-5.el8.alma.x86_64                                                                                  
  libreoffice-ogltrans-1:6.4.7.2-5.el8.alma.x86_64                                                                              
  libreoffice-opensymbol-fonts-1:6.4.7.2-5.el8.alma.noarch                                                                      
  libreoffice-pdfimport-1:6.4.7.2-5.el8.alma.x86_64                                                                             
  libreoffice-pyuno-1:6.4.7.2-5.el8.alma.x86_64                                                                                 
  libreoffice-ure-1:6.4.7.2-5.el8.alma.x86_64                                                                                   
  libreoffice-ure-common-1:6.4.7.2-5.el8.alma.noarch                                                                            
  libreoffice-writer-1:6.4.7.2-5.el8.alma.x86_64                                                                                
  libreoffice-x11-1:6.4.7.2-5.el8.alma.x86_64                                                                                   
  librepository-1.1.3-17.el8.noarch                                                                                             
  librevenge-0.0.4-12.el8.x86_64                                                                                                
  libserializer-1.1.2-18.el8.noarch                                                                                             
  libstaroffice-0.0.6-1.el8.x86_64                                                                                              
  libvisio-0.1.6-2.el8.x86_64                                                                                                   
  libwpd-0.10.2-2.el8.x86_64                                                                                                    
  libwpg-0.3.2-1.el8.x86_64                                                                                                     
  libwps-0.4.9-1.el8.x86_64                                                                                                     
  libzmf-0.0.2-3.el8.x86_64                                                                                                     
  lpsolve-5.5.2.0-21.el8.x86_64                                                                                                 
  mythes-1.2.4-9.el8.x86_64                                                                                                     
  mythes-en-3.0-23.el8.noarch                                                                                                   
  ongres-scram-1.0.0~beta.2-5.el8.noarch                                                                                        
  ongres-scram-client-1.0.0~beta.2-5.el8.noarch                                                                                 
  pentaho-libxml-1.1.3-17.el8.noarch                                                                                            
  pentaho-reporting-flow-engine-1:0.9.4-15.el8.noarch                                                                           
  postgresql-jdbc-42.2.3-3.el8_2.noarch                                                                                         
  raptor2-2.0.15-16.el8.x86_64                                                                                                  
  rasqal-0.9.33-6.el8.x86_64                                                                                                    
  redland-1.0.17-14.el8.x86_64                                                                                                  
  sac-1.3-28.el8.noarch                                                                                                         
  xmlsec1-nss-1.2.25-4.el8.x86_64                                                                                               

Complete!

13.6. gdbserver to start a program with capabilities (as sudo) and then attach the debugger

[mr_halfword@haswell-alma ibv_message_passing]$ sudo yum install gdb-gdbserver
Last metadata expiration check: 1:03:42 ago on Sat 16 Apr 2022 14:33:38 BST.
Dependencies resolved.
================================================================================
 Package              Architecture  Version              Repository        Size
================================================================================
Installing:
 gdb-gdbserver        x86_64        8.2-16.el8           appstream        435 k

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

Total download size: 435 k
Installed size: 642 k
Is this ok [y/N]: y
Downloading Packages:
gdb-gdbserver-8.2-16.el8.x86_64.rpm             3.2 MB/s | 435 kB     00:00    
--------------------------------------------------------------------------------
Total                                           293 kB/s | 435 kB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : gdb-gdbserver-8.2-16.el8.x86_64                        1/1 
  Running scriptlet: gdb-gdbserver-8.2-16.el8.x86_64                        1/1 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : gdb-gdbserver-8.2-16.el8.x86_64                        1/1 

Installed:
  gdb-gdbserver-8.2-16.el8.x86_64                                               

Complete!

13.7 lcov to generate HTML coverage reports

[mr_halfword@haswell-alma ibv_message_passing]$ sudo yum install lcov
[sudo] password for mr_halfword: 
AlmaLinux 8 - AppStream                         2.1 kB/s | 4.2 kB     00:01    
AlmaLinux 8 - AppStream                         4.6 MB/s | 9.0 MB     00:01    
AlmaLinux 8 - Extras                            7.4 kB/s | 3.8 kB     00:00    
AlmaLinux 8 - Extras                             31 kB/s |  18 kB     00:00    
determining the fastest mirror (3 hosts).. done.---  B/s |   0  B     --:-- ETA
AlmaLinux 8 - devel                             3.1 kB/s | 3.5 kB     00:01    
AlmaLinux 8 - PowerTools                         10 kB/s | 4.2 kB     00:00    
AlmaLinux 8 - PowerTools                        2.4 MB/s | 2.6 MB     00:01    
ELRepo.org Community Enterprise Linux Repositor 6.1 kB/s | 3.0 kB     00:00    
ELRepo.org Community Enterprise Linux Repositor 384 kB/s | 229 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64   34 kB/s |  15 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64  5.5 MB/s |  11 MB     00:02    
Extra Packages for Enterprise Linux Modular 8 -  87 kB/s |  33 kB     00:00    
Scooter Software                                6.0 kB/s | 2.9 kB     00:00    
Dependencies resolved.
================================================================================
 Package                Architecture Version              Repository       Size
================================================================================
Installing:
 lcov                   noarch       1.14-6.el8           epel            110 k
Installing dependencies:
 perl-GD                x86_64       2.71-1.el8           epel            185 k
 perl-JSON              noarch       2.97.001-2.el8       appstream        96 k
 perl-PerlIO-gzip       x86_64       0.20-10.el8          epel             29 k

Transaction Summary
================================================================================
Install  4 Packages

Total download size: 420 k
Installed size: 1.0 M
Is this ok [y/N]: y
Downloading Packages:
(1/4): lcov-1.14-6.el8.noarch.rpm               1.3 MB/s | 110 kB     00:00    
(2/4): perl-GD-2.71-1.el8.x86_64.rpm            1.7 MB/s | 185 kB     00:00    
(3/4): perl-PerlIO-gzip-0.20-10.el8.x86_64.rpm  872 kB/s |  29 kB     00:00    
(4/4): perl-JSON-2.97.001-2.el8.noarch.rpm      749 kB/s |  96 kB     00:00    
--------------------------------------------------------------------------------
Total                                           381 kB/s | 420 kB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : perl-PerlIO-gzip-0.20-10.el8.x86_64                    1/4 
  Installing       : perl-GD-2.71-1.el8.x86_64                              2/4 
  Installing       : perl-JSON-2.97.001-2.el8.noarch                        3/4 
  Installing       : lcov-1.14-6.el8.noarch                                 4/4 
  Running scriptlet: lcov-1.14-6.el8.noarch                                 4/4 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : perl-JSON-2.97.001-2.el8.noarch                        1/4 
  Verifying        : lcov-1.14-6.el8.noarch                                 2/4 
  Verifying        : perl-GD-2.71-1.el8.x86_64                              3/4 
  Verifying        : perl-PerlIO-gzip-0.20-10.el8.x86_64                    4/4 

Installed:
  lcov-1.14-6.el8.noarch               perl-GD-2.71-1.el8.x86_64               
  perl-JSON-2.97.001-2.el8.noarch      perl-PerlIO-gzip-0.20-10.el8.x86_64     

Complete!

13.8. gdb to use pstack

[mr_halfword@haswell-alma ibv_message_passing]$ sudo yum install gdb
[sudo] password for mr_halfword: 
Last metadata expiration check: 0:30:33 ago on Sun 10 Jul 2022 16:09:40 BST.
Dependencies resolved.
================================================================================
 Package             Arch        Version                   Repository      Size
================================================================================
Installing:
 gdb                 x86_64      8.2-18.el8                appstream      298 k
Installing weak dependencies:
 gcc-gdb-plugin      x86_64      8.5.0-10.el8.alma         appstream      118 k

Transaction Summary
================================================================================
Install  2 Packages

Total download size: 416 k
Installed size: 689 k
Is this ok [y/N]: y
Downloading Packages:
(1/2): gcc-gdb-plugin-8.5.0-10.el8.alma.x86_64. 1.2 MB/s | 118 kB     00:00    
(2/2): gdb-8.2-18.el8.x86_64.rpm                2.5 MB/s | 298 kB     00:00    
--------------------------------------------------------------------------------
Total                                           729 kB/s | 416 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : gcc-gdb-plugin-8.5.0-10.el8.alma.x86_64                1/2 
  Running scriptlet: gcc-gdb-plugin-8.5.0-10.el8.alma.x86_64                1/2 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : gdb-8.2-18.el8.x86_64                                  2/2 
  Running scriptlet: gdb-8.2-18.el8.x86_64                                  2/2 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : gcc-gdb-plugin-8.5.0-10.el8.alma.x86_64                1/2 
  Verifying        : gdb-8.2-18.el8.x86_64                                  2/2 

Installed:
  gcc-gdb-plugin-8.5.0-10.el8.alma.x86_64         gdb-8.2-18.el8.x86_64        

Complete!

14. Changes to allow ibv_message_passing programs to be run

14.1 RDMA requires locking umlimited amounts of memory

With Ubuntu 18.04 this was achieved by adding the following lines to /etc/security/limits.conf which applied to all users:

* soft memlock unlimited
* hard memlock unlimited

However, with AlmaLinux 8.5 after making that change and logging in to the console the user account still had limited locked memory:

[mr_halfword@haswell-alma ~]$ ulimit -l
64

Whereas if logged in via ssh unlocked memory was unlimited.

From Unable to set memlock unlimited #2372 could be that systemd is used to manage console logins.

Tried changing /etc/security/limits.conf to specify the specific user account rather than the default:

mr_halfword soft memlock unlimited
mr_halfword hard memlock unlimited

However, that still didn't allow ulimited locked memory with a console login.

Reverted the /etc/security/limits.conf to a default unlimited for all users:

* soft memlock unlimited
* hard memlock unlimited

And in /etc/systemd/user.conf and /etc/systemd/system.conf changed:

#DefaultLimitMEMLOCK=

To:

DefaultLimitMEMLOCK=infinity

After making these changes, and rebooting, locked memory was unlimited for both a console login and via ssh. Not sure if both /etc/systemd/user.conf and /etc/systemd/system.conf needed to be changed, but just changing the 1st wasn't sufficient.

14.2 Configure slpd

slpd is required to be able to connect communication paths.

First need to install openslp-server:

[mr_halfword@haswell-alma release]$ sudo yum install openslp-server
[sudo] password for mr_halfword: 
Last metadata expiration check: 2:37:06 ago on Sun 13 Mar 2022 13:53:26 GMT.
Dependencies resolved.
================================================================================
 Package                Architecture   Version              Repository     Size
================================================================================
Installing:
 openslp-server         x86_64         2.0.0-19.el8         devel         105 k

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

Total download size: 105 k
Installed size: 258 k
Is this ok [y/N]: y
Downloading Packages:
determining the fastest mirror (2 hosts).. done.1.5 kB/s | 618  B     00:00 ETA
openslp-server-2.0.0-19.el8.x86_64.rpm          314 kB/s | 105 kB     00:00    
--------------------------------------------------------------------------------
Total                                            59 kB/s | 105 kB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : openslp-server-2.0.0-19.el8.x86_64                     1/1 
  Running scriptlet: openslp-server-2.0.0-19.el8.x86_64                     1/1 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : openslp-server-2.0.0-19.el8.x86_64                     1/1 

Installed:
  openslp-server-2.0.0-19.el8.x86_64                                            

Complete!

And enabled the slpd service:

[mr_halfword@haswell-alma ~]$ sudo systemctl enable slpd
Created symlink /etc/systemd/system/multi-user.target.wants/slpd.service → /usr/lib/systemd/system/slpd.service.

15. Update ConnectX-4 Lx firmware

ibv_devinfo reports that the ConnectX-4 Lx MCX4121A-XCAT with PSID (aka board_id) MT_2420110004 has firmware version 14.25.1020. Firmware for ConnectX®-4 Lx EN shows the latest firmware version is 14.32.1010.

Firmware download link is fw-ConnectX4Lx-rel-14_32_1010-MCX4121A-XCA_Ax-UEFI-14.25.17-FlexBoot-3.6.502

MFT Download Center has the Mellanox Firmware Tools downloads. Download link is mft-4.18.0-106-x86_64-rpm.tgz is the current latest Linux release for RPM based x64.

Was able to install the MTF without having to install any other packages:

[mr_halfword@haswell-alma Release]$ cd ~/Downloads/mft-4.18.0-106-x86_64-rpm/
[mr_halfword@haswell-alma mft-4.18.0-106-x86_64-rpm]$ ./install.sh 
-E- You must be root to install MFT
[mr_halfword@haswell-alma mft-4.18.0-106-x86_64-rpm]$ sudo ./install.sh 
[sudo] password for mr_halfword: 
-I- Removing any old MFT file if exists...
-I- Building the MFT kernel binary RPM...
-I- Installing the MFT RPMs...
Verifying...                          ################################# [100%]
Preparing...                          ################################# [100%]
Updating / installing...
   1:kernel-mft-4.18.0-4.18.0_348.20.1################################# [100%]
Verifying...                          ################################# [100%]
Preparing...                          ################################# [100%]
Updating / installing...
   1:mft-4.18.0-106                   ################################# [100%]
-I- In order to start mst, please run "mst start".

mst status was able to detect the ConnectX-4 Lx:

[mr_halfword@haswell-alma mft-4.18.0-106-x86_64-rpm]$ sudo mst start
Starting MST (Mellanox Software Tools) driver set
Loading MST PCI module - Success
Loading MST PCI configuration module - Success
Create devices
Unloading MST PCI module (unused) - Success
[mr_halfword@haswell-alma mft-4.18.0-106-x86_64-rpm]$ sudo mst status
MST modules:
------------
    MST PCI module is not loaded
    MST PCI configuration module loaded

MST devices:
------------
/dev/mst/mt4117_pciconf0         - PCI configuration cycles access.
                                   domain:bus:dev.fn=0000:01:00.0 addr.reg=88 data.reg=92 cr_bar.gw_offset=-1
                                   Chip revision is: 00

The firmware was flashed successfully:

[mr_halfword@haswell-alma mft-4.18.0-106-x86_64-rpm]$ sudo flint -d /dev/mst/mt4117_pciconf0 -i ~/Downloads/fw-ConnectX4Lx-rel-14_32_1010-MCX4121A-XCA_Ax-UEFI-14.25.17-FlexBoot-3.6.502.bin burn

    Current FW version on flash:  14.25.1020
    New FW version:               14.32.1010

FSMST_INITIALIZE -   OK
Writing Boot image component -   OK
-I- To load new FW run mlxfwreset or reboot machine.

mlxfwreset indicated that a Full Chip reset is supported:

[mr_halfword@haswell-alma mft-4.18.0-106-x86_64-rpm]$ sudo mlxfwreset -d /dev/mst/mt4117_pciconf0 query

Reset-levels:
0: Driver, PCI link, network link will remain up ("live-Patch")  -Not Supported 
3: Driver restart and PCI reset                                  -Supported     (default)
4: Warm Reboot                                                   -Supported     
5: Cold Reboot                                                   -Supported     

Reset-types (relevant only for reset-levels 3,4):
0: Full chip reset                                               -Supported     (default)
1: Phy-less reset (keep network port active during reset)        -Not Supported 
2: NIC only reset (for SoC devices)                              -Not Supported 

Reset-sync (relevant only for reset-level 3):
0: Tool is the owner                                             -Supported     (default)
1: Driver is the owner                                           -Not supported 

Performed a reset:

[mr_halfword@haswell-alma mft-4.18.0-106-x86_64-rpm]$ sudo mlxfwreset -d /dev/mst/mt4117_pciconf0 reset

Minimal reset level for device, /dev/mst/mt4117_pciconf0:

And ibv_devinfo reported the updated firmware version:

[mr_halfword@haswell-alma mft-4.18.0-106-x86_64-rpm]$ ibv_devinfo 
hca_id:	rocep1s0f0
	transport:			InfiniBand (0)
	fw_ver:				14.32.1010
	node_guid:			9803:9b03:0077:e152
	sys_image_guid:			9803:9b03:0077:e152
	vendor_id:			0x02c9
	vendor_part_id:			4117
	hw_ver:				0x0
	board_id:			MT_2420110004
	phys_port_cnt:			1
		port:	1
			state:			PORT_ACTIVE (4)
			max_mtu:		4096 (5)
			active_mtu:		1024 (3)
			sm_lid:			0
			port_lid:		0
			port_lmc:		0x00
			link_layer:		Ethernet

hca_id:	rocep1s0f1
	transport:			InfiniBand (0)
	fw_ver:				14.32.1010
	node_guid:			9803:9b03:0077:e153
	sys_image_guid:			9803:9b03:0077:e152
	vendor_id:			0x02c9
	vendor_part_id:			4117
	hw_ver:				0x0
	board_id:			MT_2420110004
	phys_port_cnt:			1
		port:	1
			state:			PORT_ACTIVE (4)
			max_mtu:		4096 (5)
			active_mtu:		1024 (3)
			sm_lid:			0
			port_lid:		0
			port_lmc:		0x00
			link_layer:		Ethernet

16. Allowing slp through the firewall

With the above changes both the firewalld and slpd services are set to start at boot.

16.1. Initial failure mode

The firewall is blocking slp:

  1. slptool is unable to find any services registered on a different PC.
  2. The ibv_message_bw program run on the local PC is unable to establish connections.

If stop the firewall service then slptool is able to find services registered on a different PC. However, ibv_message_bw is still unable to establish connections on the local PC. The /var/log/slpd.log file indicates SLPD doesn't have any Agent Interfaces:

****************************************
Sun Mar 20 16:11:21 2022
SLPD daemon started
****************************************
Command line = /usr/sbin/slpd
Using configuration file = /etc/slp.conf
Using registration file = /etc/slp.reg
Using SPI file = /etc/slp.spi
Listening on loopback TCP...
Listening on loopback UDP...
Agent Interfaces = (null)
Startup complete entering main run loop ...

Think the problem is that since the firewall was active when slpd started, it was unable to create the sockets on the network interface.

16.2. Initial failed attempt at allowing slp through the firewall

Attempted the following to permanently allows the slp service through the firewall:

[mr_halfword@haswell-alma ibv_message_passing]$ sudo firewall-cmd --permanent --add-service=slp
success

After a reboot can see slp should be an allowed service:

[mr_halfword@haswell-alma ~]$ sudo firewall-cmd --list-all 
public (active)
  target: default
  icmp-block-inversion: no
  interfaces: eno1
  sources: 
  services: cockpit dhcpv6-client slp ssh
  ports: 
  protocols: 
  forward: no
  masquerade: no
  forward-ports: 
  source-ports: 
  icmp-blocks: 
  rich rules: 

And the slp service definition for the firewall is reported as port 427, which matches that in /etc/slp.conf:

[mr_halfword@haswell-alma ~]$ sudo firewall-cmd --permanent --service=slp --get-ports
427/tcp 427/udp

However, adding the slp service to the firewall hadn't changed the problem in that:

  1. slptool was still unable to find services registered on a different PC.
  2. ibv_message_bw was still unable to connect services on the local PC. /var/log/slpd.log indicated slpd still had no Agent Interfaces.

16.3. Disabling firewall still lead to some slp errors

The firewalld service was disabled with sudo systemctl disable firewalld. After a reboot:

  1. slptool could find services registered on a different PC.
  2. ibv_message_bw was still unable to connect services on the local PC.

The slpd service status after boot was:

mr_halfword@haswell-alma ~]$ systemctl status slpd|cat
● slpd.service - OpenSLP daemon for the Service Location Protocol
   Loaded: loaded (/usr/lib/systemd/system/slpd.service; enabled; vendor preset: disabled)
   Active: active (running) since Sun 2022-03-20 19:06:01 GMT; 6min ago
  Process: 1152 ExecStartPre=/usr/lib/openslp-server/slp-multicast-set.sh (code=exited, status=0/SUCCESS)
 Main PID: 1192 (slpd)
    Tasks: 1 (limit: 48734)
   Memory: 2.1M
   CGroup: /system.slice/slpd.service
           └─1192 /usr/sbin/slpd -d

Mar 20 19:05:58 haswell-alma systemd[1]: Starting OpenSLP daemon for the Service Location Protocol...
Mar 20 19:05:59 haswell-alma slp-multicast-set.sh[1152]: Failed to Detect Multicast Route
Mar 20 19:05:59 haswell-alma slp-multicast-set.sh[1152]: Attempting to Add Multicast Route ...
Mar 20 19:06:01 haswell-alma slp-multicast-set.sh[1152]: SUCCESS - Route Added.
Mar 20 19:06:01 haswell-alma systemd[1]: Started OpenSLP daemon for the Service Location Protocol.

And /var/log/slpd.log showed no Agent Interfaces:

****************************************
Sun Mar 20 19:06:01 2022
SLPD daemon started
****************************************
Command line = /usr/sbin/slpd
Using configuration file = /etc/slp.conf
Using registration file = /etc/slp.reg
Using SPI file = /etc/slp.spi
Listening on loopback TCP...
Listening on loopback UDP...
Agent Interfaces = (null)
Startup complete entering main run loop ...

Restart slpd:

[mr_halfword@haswell-alma ~]$ sudo systemctl restart slpd

Which detected the Multicast Route was already enabled:

mr_halfword@haswell-alma ~]$ systemctl status slpd|cat
● slpd.service - OpenSLP daemon for the Service Location Protocol
   Loaded: loaded (/usr/lib/systemd/system/slpd.service; enabled; vendor preset: disabled)
   Active: active (running) since Sun 2022-03-20 19:15:19 GMT; 2min 12s ago
  Process: 3876 ExecStartPre=/usr/lib/openslp-server/slp-multicast-set.sh (code=exited, status=0/SUCCESS)
 Main PID: 3881 (slpd)
    Tasks: 1 (limit: 48734)
   Memory: 932.0K
   CGroup: /system.slice/slpd.service
           └─3881 /usr/sbin/slpd -d

Mar 20 19:15:17 haswell-alma systemd[1]: Starting OpenSLP daemon for the Service Location Protocol...
Mar 20 19:15:18 haswell-alma slp-multicast-set.sh[3876]: Multicast Route Enabled
Mar 20 19:15:19 haswell-alma systemd[1]: Started OpenSLP daemon for the Service Location Protocol.

And /var/log/slpd.log shows Agent Interfaces were available:

****************************************
Sun Mar 20 19:15:18 2022
SLPD daemon started
****************************************
Command line = /usr/sbin/slpd
Using configuration file = /etc/slp.conf
Using registration file = /etc/slp.reg
Using SPI file = /etc/slp.spi
Listening on loopback TCP...
Listening on loopback UDP...
Listening on 192.168.0.120 ...
Multicast (IPv4) socket on 192.168.0.120 ready
SLPv1 Service Location General Multicast socket on 192.168.0.120 ready
Unicast socket on 192.168.0.120 ready
Listening on 192.168.122.1 ...
Multicast (IPv4) socket on 192.168.122.1 ready
SLPv1 Service Location General Multicast socket on 192.168.122.1 ready
Unicast socket on 192.168.122.1 ready
Agent Interfaces = 192.168.0.120,192.168.122.1
Startup complete entering main run loop ...

Searching the systemd logs for the slpd and NetworkManager services shows slpd has started at 19:06:01 which is before NetworkManager has finished configuring eno1 at 19:06:05:

[mr_halfword@haswell-alma ~]$ journalctl --unit='slpd' --unit=NetworkManager | cat
-- Logs begin at Sun 2022-03-20 19:05:22 GMT, end at Sun 2022-03-20 19:46:04 GMT. --
Mar 20 19:05:51 haswell-alma systemd[1]: Starting Network Manager...
Mar 20 19:05:56 haswell-alma NetworkManager[1099]: <info>  [1647803156.5270] NetworkManager (version 1.32.10-4.el8) is starting... (for the first time)
Mar 20 19:05:56 haswell-alma NetworkManager[1099]: <info>  [1647803156.6512] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 00-server.conf)
Mar 20 19:05:58 haswell-alma NetworkManager[1099]: <info>  [1647803158.7812] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Mar 20 19:05:58 haswell-alma systemd[1]: Started Network Manager.
Mar 20 19:05:58 haswell-alma systemd[1]: Starting OpenSLP daemon for the Service Location Protocol...
Mar 20 19:05:59 haswell-alma slp-multicast-set.sh[1152]: Failed to Detect Multicast Route
Mar 20 19:05:59 haswell-alma slp-multicast-set.sh[1152]: Attempting to Add Multicast Route ...
Mar 20 19:05:59 haswell-alma NetworkManager[1099]: <info>  [1647803159.5011] manager[0x556962654000]: monitoring kernel firmware directory '/lib/firmware'.
Mar 20 19:06:00 haswell-alma NetworkManager[1099]: <info>  [1647803160.1388] hostname: hostname: using hostnamed
Mar 20 19:06:00 haswell-alma NetworkManager[1099]: <info>  [1647803160.1389] hostname: hostname changed from (none) to "haswell-alma"
Mar 20 19:06:00 haswell-alma NetworkManager[1099]: <info>  [1647803160.1393] dns-mgr[0x556962636250]: init: dns=default,systemd-resolved rc-manager=symlink
Mar 20 19:06:01 haswell-alma slp-multicast-set.sh[1152]: SUCCESS - Route Added.
Mar 20 19:06:01 haswell-alma systemd[1]: Started OpenSLP daemon for the Service Location Protocol.
Mar 20 19:06:02 haswell-alma NetworkManager[1099]: <info>  [1647803162.0830] Loaded device plugin: NMAtmManager (/usr/lib64/NetworkManager/1.32.10-4.el8/libnm-device-plugin-adsl.so)
Mar 20 19:06:02 haswell-alma NetworkManager[1099]: <info>  [1647803162.6818] Loaded device plugin: NMBluezManager (/usr/lib64/NetworkManager/1.32.10-4.el8/libnm-device-plugin-bluetooth.so)
Mar 20 19:06:03 haswell-alma NetworkManager[1099]: <info>  [1647803163.0191] Loaded device plugin: NMWwanFactory (/usr/lib64/NetworkManager/1.32.10-4.el8/libnm-device-plugin-wwan.so)
Mar 20 19:06:03 haswell-alma NetworkManager[1099]: <info>  [1647803163.3988] Loaded device plugin: NMWifiFactory (/usr/lib64/NetworkManager/1.32.10-4.el8/libnm-device-plugin-wifi.so)
Mar 20 19:06:03 haswell-alma NetworkManager[1099]: <info>  [1647803163.6766] Loaded device plugin: NMTeamFactory (/usr/lib64/NetworkManager/1.32.10-4.el8/libnm-device-plugin-team.so)
Mar 20 19:06:03 haswell-alma NetworkManager[1099]: <info>  [1647803163.6769] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Mar 20 19:06:03 haswell-alma NetworkManager[1099]: <info>  [1647803163.6770] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Mar 20 19:06:03 haswell-alma NetworkManager[1099]: <info>  [1647803163.6770] manager: Networking is enabled by state file
Mar 20 19:06:03 haswell-alma NetworkManager[1099]: <info>  [1647803163.6776] dhcp-init: Using DHCP client 'internal'
Mar 20 19:06:04 haswell-alma NetworkManager[1099]: <info>  [1647803164.1081] settings: Loaded settings plugin: ifcfg-rh ("/usr/lib64/NetworkManager/1.32.10-4.el8/libnm-settings-plugin-ifcfg-rh.so")
Mar 20 19:06:04 haswell-alma NetworkManager[1099]: <info>  [1647803164.1082] settings: Loaded settings plugin: keyfile (internal)
Mar 20 19:06:04 haswell-alma NetworkManager[1099]: <info>  [1647803164.4957] device (lo): carrier: link connected
Mar 20 19:06:04 haswell-alma NetworkManager[1099]: <info>  [1647803164.5049] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1)
Mar 20 19:06:04 haswell-alma NetworkManager[1099]: <info>  [1647803164.5303] manager: (eno1): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Mar 20 19:06:04 haswell-alma NetworkManager[1099]: <info>  [1647803164.5310] device (eno1): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Mar 20 19:06:04 haswell-alma NetworkManager[1099]: <info>  [1647803164.8162] manager: (enp1s0f0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/3)
Mar 20 19:06:04 haswell-alma NetworkManager[1099]: <info>  [1647803164.8167] device (enp1s0f0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Mar 20 19:06:04 haswell-alma NetworkManager[1099]: <info>  [1647803164.8878] device (enp1s0f0): carrier: link connected
Mar 20 19:06:04 haswell-alma NetworkManager[1099]: <info>  [1647803164.8912] manager: (enp1s0f1): new Ethernet device (/org/freedesktop/NetworkManager/Devices/4)
Mar 20 19:06:04 haswell-alma NetworkManager[1099]: <info>  [1647803164.8917] device (enp1s0f1): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Mar 20 19:06:04 haswell-alma NetworkManager[1099]: <info>  [1647803164.9975] device (enp1s0f1): carrier: link connected
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0783] device (eno1): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0788] device (enp1s0f0): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0807] device (enp1s0f1): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0813] modem-manager: ModemManager available
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0814] policy: auto-activating connection 'eno1' (09fc4093-d9f2-4d2e-83f4-7fea7713510d)
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0818] device (eno1): Activation: starting connection 'eno1' (09fc4093-d9f2-4d2e-83f4-7fea7713510d)
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0819] device (eno1): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0820] manager: NetworkManager state is now CONNECTING
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0821] device (eno1): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0826] device (eno1): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0838] device (eno1): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0864] device (eno1): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0867] device (eno1): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0870] manager: NetworkManager state is now CONNECTED_LOCAL
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0873] manager: NetworkManager state is now CONNECTED_SITE
Mar 20 19:06:05 haswell-alma NetworkManager[1099]: <info>  [1647803165.0874] policy: set 'eno1' (eno1) as default for IPv4 routing and DNS
<snip>

This looks to be race-condition between slpd trying to create multicast sockets and NetworkManager completing the connection on eno1.

16.4. Editing slpd.service file to make it wait until NetworkManager has connected the network

Running Services After the Network is up explains how systemd services control when the Network is up.

The /usr/lib/systemd/system/slpd.service file provided by the openslp-server-2.0.0-19.el8.x86_64 package has:

[mr_halfword@haswell-alma ~]$ cat /usr/lib/systemd/system/slpd.service
[Unit]
Description=OpenSLP daemon for the Service Location Protocol
After=network.target

[Service]
Type=notify
ExecStart=/usr/sbin/slpd -d
ExecStartPre=/usr/lib/openslp-server/slp-multicast-set.sh

[Install]
WantedBy=multi-user.target

As explained by the Running Services After the Network is up link the use of After=network.target in the service script means slpd can be started before any network interfaces are actually configured.

Edited the /usr/lib/systemd/system/slpd.service file and changed from:

After=network.target

To the following to make wait for NetworkManager to configure the network interfaces:

After=NetworkManager-wait-online.service
Wants=NetworkManager-wait-online.service

With that, after a reboot ibv_message_bw was able to establish connections on the local PC. The slpd.log file showed Agent Interfaces had been created:

****************************************
Sun Mar 20 20:50:09 2022
SLPD daemon started
****************************************
Command line = /usr/sbin/slpd
Using configuration file = /etc/slp.conf
Using registration file = /etc/slp.reg
Using SPI file = /etc/slp.spi
Listening on loopback TCP...
Listening on loopback UDP...
Listening on 192.168.0.120 ...
Multicast (IPv4) socket on 192.168.0.120 ready
SLPv1 Service Location General Multicast socket on 192.168.0.120 ready
Unicast socket on 192.168.0.120 ready
Agent Interfaces = 192.168.0.120
Startup complete entering main run loop ...

16.5. Still need to disable firewalld to allow slp to see services registered by another PC

After making the above change to the /usr/lib/systemd/system/slpd.service file, re-enabled the firewalld service. After a reboot:

  1. slptool on AlmaLinux still couldn't see a slp server registered on a different PC.
  2. ibv_message_bw on AlmaLinux could connect services using SLP, which a different PC could see.

E.g. a query on AlmaLinux which can only see the local services:

[mr_halfword@haswell-alma release]$ slptool findsrvs service:message_bw
service:message_bw://haswell-alma/name=tx_0_0_1,65535
service:message_bw://haswell-alma/name=rx_0_0_1,65535
service:message_bw://haswell-alma/name=rx_0_0_2,65535
service:message_bw://haswell-alma/name=tx_0_0_2,65535

Wheres on a different PC can see the local services and those registered under AlmaLinux:

mr_halfword@Haswell-Ubuntu:~$ slptool findsrvs service:message_bw

service:message_bw://Haswell-Ubuntu/name=tx_0_0_0,65535
service:message_bw://Haswell-Ubuntu/name=rx_0_0_0,65535
service:message_bw://haswell-alma/name=tx_0_0_1,65535
service:message_bw://haswell-alma/name=rx_0_0_1,65535
service:message_bw://haswell-alma/name=rx_0_0_2,65535
service:message_bw://haswell-alma/name=tx_0_0_2,65535
mr_halfword@Haswell-Ubuntu:~$ slptool findattrs service:message_bw://haswell-alma/name=tx_0_0_1
(size=16779264,rkey=274210,addr=0x7f11957e0000,lid=0,psn=4644813,qp_num=392,qp_rtr=1,gid_index=0,gid=fe80::9a03:9bff:fe77:e153)

16.6. Wireshark capture of SLP traffic when firewalld is blocking traffic

For this:

  1. Ubuntu 18.04 PC running ibv_message_bw which had registered services using SLP. IP address 192.168.0.118
  2. Ran slptool findsrvs service:message_bw on PC running AlmaLinux 8.5. slptool returned no results. Wireshark capture taken on AlmaLinux PC.
  3. On AlmaLinux PC firewalld.service running, and slp service enabled as per 15.2. IP address 192.168.0.120

Wireshark capture, filtered using srvloc is:

No.     Time           Source                Destination           Protocol Length Info
      7 3.400504377    192.168.0.120         239.255.255.253       SRVLOC   98     Service Request, V2 XID - 60178

Frame 7: 98 bytes on wire (784 bits), 98 bytes captured (784 bits) on interface 0
Ethernet II, Src: AsustekC_a9:f5:6b (00:22:15:a9:f5:6b), Dst: IPv4mcast_7f:ff:fd (01:00:5e:7f:ff:fd)
Internet Protocol Version 4, Src: 192.168.0.120, Dst: 239.255.255.253
User Datagram Protocol, Src Port: 45362, Dst Port: 427
Service Location Protocol
    Version: 2
    Function: Service Request (1)
    Packet Length: 56
    Flags: 0x2000, Multicast requested
    Next Extension Offset: 0
    XID: 60178
    Lang Tag Len: 2
    Lang Tag: en
    Previous Response List Length: 0
    Service Type Length: 23
    Service Type List: service:directory-agent
    Scope List Length: 7
    Scope List: DEFAULT
    Predicate Length: 0
    SLP SPI Length: 0

No.     Time           Source                Destination           Protocol Length Info
      8 3.901171058    192.168.0.120         239.255.255.253       SRVLOC   98     Service Request, V2 XID - 60178

Frame 8: 98 bytes on wire (784 bits), 98 bytes captured (784 bits) on interface 0
Ethernet II, Src: AsustekC_a9:f5:6b (00:22:15:a9:f5:6b), Dst: IPv4mcast_7f:ff:fd (01:00:5e:7f:ff:fd)
Internet Protocol Version 4, Src: 192.168.0.120, Dst: 239.255.255.253
User Datagram Protocol, Src Port: 46243, Dst Port: 427
Service Location Protocol
    Version: 2
    Function: Service Request (1)
    Packet Length: 56
    Flags: 0x2000, Multicast requested
    Next Extension Offset: 0
    XID: 60178
    Lang Tag Len: 2
    Lang Tag: en
    Previous Response List Length: 0
    Service Type Length: 23
    Service Type List: service:directory-agent
    Scope List Length: 7
    Scope List: DEFAULT
    Predicate Length: 0
    SLP SPI Length: 0

No.     Time           Source                Destination           Protocol Length Info
     11 4.652133344    192.168.0.120         239.255.255.253       SRVLOC   93     Service Request, V2 XID - 60179

Frame 11: 93 bytes on wire (744 bits), 93 bytes captured (744 bits) on interface 0
Ethernet II, Src: AsustekC_a9:f5:6b (00:22:15:a9:f5:6b), Dst: IPv4mcast_7f:ff:fd (01:00:5e:7f:ff:fd)
Internet Protocol Version 4, Src: 192.168.0.120, Dst: 239.255.255.253
User Datagram Protocol, Src Port: 48320, Dst Port: 427
Service Location Protocol
    Version: 2
    Function: Service Request (1)
    Packet Length: 51
    Flags: 0x2000, Multicast requested
    Next Extension Offset: 0
    XID: 60179
    Lang Tag Len: 2
    Lang Tag: en
    Previous Response List Length: 0
    Service Type Length: 18
    Service Type List: service:message_bw
    Scope List Length: 7
    Scope List: DEFAULT
    Predicate Length: 0
    SLP SPI Length: 0

No.     Time           Source                Destination           Protocol Length Info
     14 4.652536583    192.168.0.118         192.168.0.120         SRVLOC   172    Service Reply, V2 XID - 60179

Frame 14: 172 bytes on wire (1376 bits), 172 bytes captured (1376 bits) on interface 0
Ethernet II, Src: HewlettP_3e:5f:f1 (ec:b1:d7:3e:5f:f1), Dst: AsustekC_a9:f5:6b (00:22:15:a9:f5:6b)
Internet Protocol Version 4, Src: 192.168.0.118, Dst: 192.168.0.120
User Datagram Protocol, Src Port: 427, Dst Port: 48320
Service Location Protocol
    Version: 2
    Function: Service Reply (2)
    Packet Length: 130
    Flags: 0x0000
    Next Extension Offset: 0
    XID: 60179
    Lang Tag Len: 2
    Lang Tag: en
    Error Code: No Error (0)
    Number of URLs: 2
    Reserved: 0x00
    URL lifetime: 65535
    URL Length: 49
    URL: service:message_bw://Haswell-Ubuntu/name=rx_0_0_0
    Num Auths: 0
    Reserved: 0x00
    URL lifetime: 65535
    URL Length: 49
    URL: service:message_bw://Haswell-Ubuntu/name=tx_0_0_0
    Num Auths: 0

No.     Time           Source                Destination           Protocol Length Info
     15 4.652573227    192.168.0.120         192.168.0.118         ICMP     200    Destination unreachable (Communication administratively filtered)

Frame 15: 200 bytes on wire (1600 bits), 200 bytes captured (1600 bits) on interface 0
Ethernet II, Src: AsustekC_a9:f5:6b (00:22:15:a9:f5:6b), Dst: HewlettP_3e:5f:f1 (ec:b1:d7:3e:5f:f1)
Internet Protocol Version 4, Src: 192.168.0.120, Dst: 192.168.0.118
Internet Control Message Protocol

No.     Time           Source                Destination           Protocol Length Info
     16 5.152801424    192.168.0.120         239.255.255.253       SRVLOC   93     Service Request, V2 XID - 60179

Frame 16: 93 bytes on wire (744 bits), 93 bytes captured (744 bits) on interface 0
Ethernet II, Src: AsustekC_a9:f5:6b (00:22:15:a9:f5:6b), Dst: IPv4mcast_7f:ff:fd (01:00:5e:7f:ff:fd)
Internet Protocol Version 4, Src: 192.168.0.120, Dst: 239.255.255.253
User Datagram Protocol, Src Port: 59432, Dst Port: 427
Service Location Protocol
    Version: 2
    Function: Service Request (1)
    Packet Length: 51
    Flags: 0x2000, Multicast requested
    Next Extension Offset: 0
    XID: 60179
    Lang Tag Len: 2
    Lang Tag: en
    Previous Response List Length: 0
    Service Type Length: 18
    Service Type List: service:message_bw
    Scope List Length: 7
    Scope List: DEFAULT
    Predicate Length: 0
    SLP SPI Length: 0

No.     Time           Source                Destination           Protocol Length Info
     17 5.153060706    192.168.0.118         192.168.0.120         SRVLOC   172    Service Reply, V2 XID - 60179

Frame 17: 172 bytes on wire (1376 bits), 172 bytes captured (1376 bits) on interface 0
Ethernet II, Src: HewlettP_3e:5f:f1 (ec:b1:d7:3e:5f:f1), Dst: AsustekC_a9:f5:6b (00:22:15:a9:f5:6b)
Internet Protocol Version 4, Src: 192.168.0.118, Dst: 192.168.0.120
User Datagram Protocol, Src Port: 427, Dst Port: 59432
Service Location Protocol
    Version: 2
    Function: Service Reply (2)
    Packet Length: 130
    Flags: 0x0000
    Next Extension Offset: 0
    XID: 60179
    Lang Tag Len: 2
    Lang Tag: en
    Error Code: No Error (0)
    Number of URLs: 2
    Reserved: 0x00
    URL lifetime: 65535
    URL Length: 49
    URL: service:message_bw://Haswell-Ubuntu/name=rx_0_0_0
    Num Auths: 0
    Reserved: 0x00
    URL lifetime: 65535
    URL Length: 49
    URL: service:message_bw://Haswell-Ubuntu/name=tx_0_0_0
    Num Auths: 0

No.     Time           Source                Destination           Protocol Length Info
     18 5.153096131    192.168.0.120         192.168.0.118         ICMP     200    Destination unreachable (Communication administratively filtered)

Frame 18: 200 bytes on wire (1600 bits), 200 bytes captured (1600 bits) on interface 0
Ethernet II, Src: AsustekC_a9:f5:6b (00:22:15:a9:f5:6b), Dst: HewlettP_3e:5f:f1 (ec:b1:d7:3e:5f:f1)
Internet Protocol Version 4, Src: 192.168.0.120, Dst: 192.168.0.118
Internet Control Message Protocol

This shows:

  1. Service Requests sent by AlmaLinux using:
    • Source unicast IPv4 address of the AlmaLinux PC
    • Destination IPv4 multicast address
    • Source UDP port is ephemeral. The ephemeral port changes for each request sent
    • Destination UDP port is 427 which is the assigned port for the slp (aks srvloc) service.
  2. Service Replies sent by Ubuntu using:
    • Source unicast IPv4 address of the Ubuntu PC.
    • Destination unicast IPv4 address of the AlmaLinux PC
    • Source UDP port is 427 which is the assigned port for the slp service
    • Desination UDP port is the ephemeral port from which the request was originally sent.
  3. AlmaLinux replies with an ICMP Destination unreachable (Communication administratively filtered) to the Service Replies, which means the reply was dropped by the firewall.

16.7 firewalld slp service doesn't include source-ports

The firewalld slp service definition doesn't include source-ports:

[mr_halfword@haswell-alma ~]$ sudo firewall-cmd --info-service slp
slp
  ports: 427/tcp 427/udp
  protocols: 
  source-ports: 
  modules: 
  destination: 
  includes: 
  helpers: 

Copy the slp service definition from the default location to the customised location:

[mr_halfword@haswell-alma ~]$ sudo cp /usr/lib/firewalld/services/slp.xml /etc/firewalld/services

Edit the customised slp.xml service definition and add source-port tags, so that the complete file is:

[mr_halfword@haswell-alma ~]$ sudo cat /etc/firewalld/services/slp.xml
<?xml version="1.0" encoding="utf-8"?>
<service>
  <short>SLP</short>
  <description>The Service Location Protocol (SLP) is used for discovering services in a local network without prior configuration.</description>
  <port port="427" protocol="tcp"/>
  <port port="427" protocol="udp"/>
  <source-port port="427" protocol="tcp"/>
  <source-port port="427" protocol="udp"/>
</service>

Reload firewalld to pick up the customised service definition, and the source-ports added are then shown:

[mr_halfword@haswell-alma ~]$ sudo firewall-cmd --reload
success
[mr_halfword@haswell-alma ~]$ sudo firewall-cmd --info-service slp
slp
  ports: 427/tcp 427/udp
  protocols: 
  source-ports: 427/tcp 427/udp
  modules: 
  destination: 
  includes: 
  helpers: 

And slptool then finds the services registered on the Ubuntu PC:

[mr_halfword@haswell-alma ~]$ slptool findsrvs service:message_bw
service:message_bw://Haswell-Ubuntu/name=rx_0_0_0,65535
service:message_bw://Haswell-Ubuntu/name=tx_0_0_0,65535
[mr_halfword@haswell-alma ~]$ slptool findattrs service:message_bw://Haswell-Ubuntu/name=tx_0_0_0
(size=16779264,rkey=4608,addr=0x7f99cc116000,lid=3,psn=14701378,qp_num=523,qp_rtr=1,gid_index=-1,gid=::)

16.8. slpd doesn't work if Ethernet link not up at boot

After upgrading to AlmaLinux 8.6 and still having the above server modifications, found that if booted AlmaLinux when the on-board Ethernet link wasn't connected when Linux booted then found could still get a failure.

Sequence was:

  1. Boot the AlmaLinux 8.6 PC when the on-board Ethernet wasn't connected.
  2. A few minutes after AlmaLinux 8.6 had booted connect the on-board Ethernet and can ssh in.
  3. Run alma_mlx5_eth_setup.sh to bring up the 10G Ethernet link in a Innova IPsec.
  4. Attempt to start ibv_message_bw on the AlmaLinux PC:
$ ibv_message_bw/ibv_message_bw --thread=rx:0,tx:1 --ib-dev=rocep1s0,rocep1s0 --ib-port=1,1 --tx-error-poll

And in a different Ubuntu PC with a ConnectX-2

$ ibv_message_bw/ibv_message_bw --thread=tx:0,rx:1 --ib-dev=mlx4_0,mlx4_0 --ib-port=1,1 
  1. The test dont't connect the communication paths. The AlmaLinux PC can see all expected services:
$ slptool findsrvs service:message_bw
service:message_bw://haswell-alma/name=tx_0_0_1,65535
service:message_bw://haswell-alma/name=rx_0_0_0,65535
service:message_bw://Haswell-Ubuntu/name=tx_0_0_0,65535
service:message_bw://Haswell-Ubuntu/name=rx_0_0_1,65535

Whereas the Ubuntu PC can't see the services which should have been published by the AlmaLinux PC:

$ slptool findsrvs service:message_bw
service:message_bw://Haswell-Ubuntu/name=tx_0_0_0,65535
service:message_bw://Haswell-Ubuntu/name=rx_0_0_1,65535
  1. The AlmaLimux /var/log/slpd.log has the following implying the multcast should be working on the 192.168.0.120 IP address used on the on-board Ethernet:
****************************************
Sun Jul 10 17:10:21 2022
SLPD daemon started
****************************************
Command line = /usr/sbin/slpd
Using configuration file = /etc/slp.conf
Using registration file = /etc/slp.reg
Using SPI file = /etc/slp.spi
Listening on loopback TCP...
Listening on loopback UDP...
Listening on 192.168.0.120 ...
Multicast (IPv4) socket on 192.168.0.120 ready
SLPv1 Service Location General Multicast socket on 192.168.0.120 ready
Unicast socket on 192.168.0.120 ready
Agent Interfaces = 192.168.0.120
Startup complete entering main run loop ...

Based upon the above timestamp the slpd service was started during Linux boot, the /var/log/messages showed the on-board Ethernet link became UP 2 minutes later. 7. Killed the failed ibv_message_bw programs on both PCs. On the AlmaLinux PC re-started the slpd service:

$ sudo systemctl restart slpd
  1. The ibv_message_bw program could then establish connections and run. After the restart the /var/log/slpd.log had the following
****************************************
Sun Jul 10 17:49:08 2022
SLPD daemon started
****************************************
Command line = /usr/sbin/slpd
Using configuration file = /etc/slp.conf
Using registration file = /etc/slp.reg
Using SPI file = /etc/slp.spi
Listening on loopback TCP...
Listening on loopback UDP...
Listening on 192.168.0.120 ...
Multicast (IPv4) socket on 192.168.0.120 ready
SLPv1 Service Location General Multicast socket on 192.168.0.120 ready
Unicast socket on 192.168.0.120 ready
Listening on 192.168.122.1 ...
Multicast (IPv4) socket on 192.168.122.1 ready
SLPv1 Service Location General Multicast socket on 192.168.122.1 ready
Unicast socket on 192.168.122.1 ready
Agent Interfaces = 192.168.0.120,192.168.122.1
Startup complete entering main run loop ...

There is an extra interface reported for 192.168.122.1 which is the virbr0 Network interface.

16.9. @todo slpd issues after a period of inactivity

The failure mode above whereby the Ubuntu PC doesn't see the services registered by the AlmaLinux PC can also occur if there is a delay after either Linux has booted or before re-start a successful ibv_message_bw run. Reason for the failure not yet investigated.

17. selinux errors on access to /etc/group

While investigating the issue above with slp being blocked by the firewall, noticed sshd wasn't running as was exiting due to an error. journalctl -xe contains errors about different services being unable to read /etc/group. E.g.:

Mar 20 17:55:51 haswell-alma setroubleshoot[1136]: SELinux is preventing /usr/sbin/cupsd from read access on the file /etc/group.
                                                   
                                                   *****  Plugin restorecon (68.9 confidence) suggests   ************************
                                                   
                                                   If you want to fix the label. 
                                                   /etc/group default label should be passwd_file_t.
                                                   Then you can run restorecon. The access attempt may have been stopped due to insufficient permissions to access a parent directory in which case try to change the following command accordingly.
                                                   Do
                                                   # /sbin/restorecon -v /etc/group
                                                   
                                                   *****  Plugin file (21.0 confidence) suggests   ******************************
                                                   
                                                   If you think this is caused by a badly mislabeled machine.
                                                   Then you need to fully relabel.
                                                   Do
                                                   touch /.autorelabel; reboot

At one point made a mistake when trying to add the user mr_halfword to the wireshark group, and removed access to the wheel group which meant lost sudo access to the machine (no root account). Had to boot to single user mode to fix the missing group, but looks like didn't relabel the fixed /etc/group.

Attempted to fix with:

[mr_halfword@haswell-alma ~]$ touch /.autorelabel
touch: cannot touch '/.autorelabel': Permission denied
[mr_halfword@haswell-alma ~]$ sudo /usr/bin/touch /.autorelabel
[sudo] password for mr_halfword: 
[mr_halfword@haswell-alma ~]$ sudo reboot

This rebooted twice:

  1. The first time it report was relabeling the filesystems, and took minutes.
  2. Rebooted before reaching the desktop login. The 2nd reboot taking the normal time.

Once had rebooted the 2nd time sshd was succesfully started, and could use ssh from a different machine to connect.

Fixing the selinux errors hasn't fixed the slpd issues.

18. Install Kernel source

Install yum-utils to get yumdownloader:

[mr_halfword@haswell-alma release]$ sudo yum install yum-utils
[sudo] password for mr_halfword: 
Last metadata expiration check: 0:22:15 ago on Sun 27 Mar 2022 12:53:16 BST.
Dependencies resolved.
================================================================================
 Package           Architecture   Version                  Repository      Size
================================================================================
Installing:
 yum-utils         noarch         4.0.21-4.el8_5           baseos          72 k

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

Total download size: 72 k
Installed size: 23 k
Is this ok [y/N]: y
Downloading Packages:
yum-utils-4.0.21-4.el8_5.noarch.rpm             268 kB/s |  72 kB     00:00    
--------------------------------------------------------------------------------
Total                                           109 kB/s |  72 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : yum-utils-4.0.21-4.el8_5.noarch                        1/1 
  Running scriptlet: yum-utils-4.0.21-4.el8_5.noarch                        1/1 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : yum-utils-4.0.21-4.el8_5.noarch                        1/1 

Installed:
  yum-utils-4.0.21-4.el8_5.noarch                                               

Complete!

Download the source RPM which matches the Kernel in use:

[mr_halfword@haswell-alma release]$ cd ~/Downloads/
[mr_halfword@haswell-alma Downloads]$ yumdownloader --source kernel
enabling baseos-source repository
enabling appstream-source repository
enabling extras-source repository
enabling devel-source repository
enabling powertools-source repository
enabling epel-source repository
enabling epel-modular-source repository
Last metadata expiration check: 0:15:36 ago on Sun 27 Mar 2022 13:01:44 BST.
kernel-4.18.0-348.20.1.el8_5.src.rpm            6.7 MB/s | 121 MB     00:18    
[mr_halfword@haswell-alma Downloads]$ uname -a
Linux haswell-alma 4.18.0-348.20.1.el8_5.x86_64 #1 SMP Thu Mar 10 11:31:47 EST 2022 x86_64 x86_64 x86_64 GNU/Linux

Install the source RPM:

[mr_halfword@haswell-alma Downloads]$ cd ~
[mr_halfword@haswell-alma ~]$ rpm -ivh ~/Downloads/kernel-4.18.0-348.20.1.el8_5.src.rpm 
Updating / installing...
   1:kernel-4.18.0-348.20.1.el8_5     warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
################################# [100%]
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root
warning: user mockbuild does not exist - using root
warning: group mock does not exist - using root

Install the build dependencies for the kernel:

[mr_halfword@haswell-alma ~]$ sudo yum-builddep kernel
enabling baseos-source repository
enabling appstream-source repository
enabling extras-source repository
enabling devel-source repository
enabling powertools-source repository
enabling epel-source repository
enabling epel-modular-source repository
AlmaLinux 8 - AppStream Source                  993 kB/s | 889 kB     00:00    
AlmaLinux 8 - Extras Source                     2.7 kB/s | 1.8 kB     00:00    
AlmaLinux 8 - devel Source                      477 kB/s | 329 kB     00:00    
AlmaLinux 8 - PowerTools Source                 220 kB/s | 126 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64  363 kB/s | 2.5 MB     00:06    
Extra Packages for Enterprise Linux Modular 8 -  22 kB/s |  18 kB     00:00    
Package gcc-8.5.0-4.el8_5.alma.x86_64 is already installed.
Package python36-devel-3.6.8-38.module_el8.5.0+2569+5c5719bc.x86_64 is already installed.
Package make-1:4.2.1-10.el8.x86_64 is already installed.
Package perl-interpreter-4:5.26.3-420.el8.x86_64 is already installed.
Package perl-generators-1.10-9.el8.noarch is already installed.
Package openssl-devel-1:1.1.1k-5.el8_5.x86_64 is already installed.
Package findutils-1:4.6.0-20.el8.x86_64 is already installed.
Package coreutils-8.30-12.el8.x86_64 is already installed.
Package gawk-4.2.1-2.el8.x86_64 is already installed.
Package perl-devel-4:5.26.3-420.el8.x86_64 is already installed.
Package openssl-1:1.1.1k-5.el8_5.x86_64 is already installed.
Package elfutils-devel-0.185-1.el8.x86_64 is already installed.
Package xz-5.2.4-3.el8.x86_64 is already installed.
Package bash-4.4.20-2.el8.x86_64 is already installed.
Package bzip2-1.0.6-26.el8.x86_64 is already installed.
Package binutils-2.30-108.el8_5.1.x86_64 is already installed.
Package redhat-rpm-config-125-1.el8.alma.noarch is already installed.
Package tar-2:1.30-5.el8.x86_64 is already installed.
Package bc-1.07.1-5.el8.x86_64 is already installed.
Package gzip-1.9-12.el8.x86_64 is already installed.
Package hostname-3.20-6.el8.x86_64 is already installed.
Package net-tools-2.0-0.52.20160912git.el8.x86_64 is already installed.
Package diffutils-3.6-6.el8.x86_64 is already installed.
Package perl-Carp-1.42-396.el8.noarch is already installed.
Package kmod-25-18.el8.x86_64 is already installed.
Package patch-2.7.6-11.el8.x86_64 is already installed.
Package which-2.21-16.el8.x86_64 is already installed.
Package libkcapi-hmaccalc-1.2.0-2.el8.x86_64 is already installed.
Dependencies resolved.
================================================================================
 Package            Arch     Version                         Repository    Size
================================================================================
Installing:
 bison              x86_64   3.0.4-10.el8                    appstream    688 k
 dwarves            x86_64   1.21-0.el8                      powertools   118 k
 flex               x86_64   2.6.1-9.el8                     appstream    319 k
 git                x86_64   2.27.0-1.el8                    appstream    164 k
 kabi-dw            x86_64   0-0.10.20200515gitb52ac13.el8   baseos        71 k
 m4                 x86_64   1.4.18-7.el8                    baseos       222 k
Installing dependencies:
 git-core           x86_64   2.27.0-1.el8                    appstream    5.7 M
 git-core-doc       noarch   2.27.0-1.el8                    appstream    2.5 M
 libdwarves1        x86_64   1.21-0.el8                      powertools   180 k
 perl-Error         noarch   1:0.17025-2.el8                 appstream     46 k
 perl-Git           noarch   2.27.0-1.el8                    appstream     77 k
 perl-TermReadKey   x86_64   2.37-7.el8                      appstream     40 k

Transaction Summary
================================================================================
Install  12 Packages

Total download size: 10 M
Installed size: 49 M
Is this ok [y/N]: y
Downloading Packages:
(1/12): m4-1.4.18-7.el8.x86_64.rpm              1.7 MB/s | 222 kB     00:00    
(2/12): kabi-dw-0-0.10.20200515gitb52ac13.el8.x 447 kB/s |  71 kB     00:00    
(3/12): bison-3.0.4-10.el8.x86_64.rpm           3.2 MB/s | 688 kB     00:00    
(4/12): flex-2.6.1-9.el8.x86_64.rpm             2.4 MB/s | 319 kB     00:00    
(5/12): git-2.27.0-1.el8.x86_64.rpm             1.5 MB/s | 164 kB     00:00    
(6/12): perl-Error-0.17025-2.el8.noarch.rpm     384 kB/s |  46 kB     00:00    
(7/12): perl-Git-2.27.0-1.el8.noarch.rpm        561 kB/s |  77 kB     00:00    
(8/12): perl-TermReadKey-2.37-7.el8.x86_64.rpm  386 kB/s |  40 kB     00:00    
(9/12): dwarves-1.21-0.el8.x86_64.rpm           438 kB/s | 118 kB     00:00    
(10/12): git-core-doc-2.27.0-1.el8.noarch.rpm   2.6 MB/s | 2.5 MB     00:00    
(11/12): libdwarves1-1.21-0.el8.x86_64.rpm      496 kB/s | 180 kB     00:00    
(12/12): git-core-2.27.0-1.el8.x86_64.rpm       3.9 MB/s | 5.7 MB     00:01    
--------------------------------------------------------------------------------
Total                                           3.6 MB/s |  10 MB     00:02     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : git-core-2.27.0-1.el8.x86_64                          1/12 
  Installing       : m4-1.4.18-7.el8.x86_64                                2/12 
  Running scriptlet: m4-1.4.18-7.el8.x86_64                                2/12 
  Installing       : git-core-doc-2.27.0-1.el8.noarch                      3/12 
  Installing       : libdwarves1-1.21-0.el8.x86_64                         4/12 
  Installing       : perl-TermReadKey-2.37-7.el8.x86_64                    5/12 
  Installing       : perl-Error-1:0.17025-2.el8.noarch                     6/12 
  Installing       : perl-Git-2.27.0-1.el8.noarch                          7/12 
  Installing       : git-2.27.0-1.el8.x86_64                               8/12 
  Installing       : dwarves-1.21-0.el8.x86_64                             9/12 
  Installing       : bison-3.0.4-10.el8.x86_64                            10/12 
  Running scriptlet: bison-3.0.4-10.el8.x86_64                            10/12 
  Installing       : flex-2.6.1-9.el8.x86_64                              11/12 
  Running scriptlet: flex-2.6.1-9.el8.x86_64                              11/12 
  Installing       : kabi-dw-0-0.10.20200515gitb52ac13.el8.x86_64         12/12 
  Running scriptlet: kabi-dw-0-0.10.20200515gitb52ac13.el8.x86_64         12/12 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : kabi-dw-0-0.10.20200515gitb52ac13.el8.x86_64          1/12 
  Verifying        : m4-1.4.18-7.el8.x86_64                                2/12 
  Verifying        : bison-3.0.4-10.el8.x86_64                             3/12 
  Verifying        : flex-2.6.1-9.el8.x86_64                               4/12 
  Verifying        : git-2.27.0-1.el8.x86_64                               5/12 
  Verifying        : git-core-2.27.0-1.el8.x86_64                          6/12 
  Verifying        : git-core-doc-2.27.0-1.el8.noarch                      7/12 
  Verifying        : perl-Error-1:0.17025-2.el8.noarch                     8/12 
  Verifying        : perl-Git-2.27.0-1.el8.noarch                          9/12 
  Verifying        : perl-TermReadKey-2.37-7.el8.x86_64                   10/12 
  Verifying        : dwarves-1.21-0.el8.x86_64                            11/12 
  Verifying        : libdwarves1-1.21-0.el8.x86_64                        12/12 

Installed:
  bison-3.0.4-10.el8.x86_64                                                     
  dwarves-1.21-0.el8.x86_64                                                     
  flex-2.6.1-9.el8.x86_64                                                       
  git-2.27.0-1.el8.x86_64                                                       
  git-core-2.27.0-1.el8.x86_64                                                  
  git-core-doc-2.27.0-1.el8.noarch                                              
  kabi-dw-0-0.10.20200515gitb52ac13.el8.x86_64                                  
  libdwarves1-1.21-0.el8.x86_64                                                 
  m4-1.4.18-7.el8.x86_64                                                        
  perl-Error-1:0.17025-2.el8.noarch                                             
  perl-Git-2.27.0-1.el8.noarch                                                  
  perl-TermReadKey-2.37-7.el8.x86_64                                            

Complete!

Attempted to prepare the source but got errors about failed build dependencies:

[mr_halfword@haswell-alma SPECS]$ rpmbuild -bp kernel.spec
error: Failed build dependencies:
	asciidoc is needed by kernel-4.18.0-348.20.1.el8.x86_64
	audit-libs-devel is needed by kernel-4.18.0-348.20.1.el8.x86_64
	binutils-devel is needed by kernel-4.18.0-348.20.1.el8.x86_64
	clang is needed by kernel-4.18.0-348.20.1.el8.x86_64
	java-devel is needed by kernel-4.18.0-348.20.1.el8.x86_64
	libbabeltrace-devel is needed by kernel-4.18.0-348.20.1.el8.x86_64
	libbpf-devel is needed by kernel-4.18.0-348.20.1.el8.x86_64
	libcap-devel is needed by kernel-4.18.0-348.20.1.el8.x86_64
	libcap-ng-devel is needed by kernel-4.18.0-348.20.1.el8.x86_64
	libmnl-devel is needed by kernel-4.18.0-348.20.1.el8.x86_64
	llvm is needed by kernel-4.18.0-348.20.1.el8.x86_64
	ncurses-devel is needed by kernel-4.18.0-348.20.1.el8.x86_64
	newt-devel is needed by kernel-4.18.0-348.20.1.el8.x86_64
	nss-tools is needed by kernel-4.18.0-348.20.1.el8.x86_64
	pciutils-devel is needed by kernel-4.18.0-348.20.1.el8.x86_64
	perl(ExtUtils::Embed) is needed by kernel-4.18.0-348.20.1.el8.x86_64
	pesign >= 0.10-4 is needed by kernel-4.18.0-348.20.1.el8.x86_64
	python3-sphinx is needed by kernel-4.18.0-348.20.1.el8.x86_64
	xmlto is needed by kernel-4.18.0-348.20.1.el8.x86_64

Installed the listed dependencies:

[mr_halfword@haswell-alma SPECS]$ sudo yum install asciidoc audit-libs-devel binutils-devel clang java-devel libbabeltrace-devel libbpf-devel libcap-devel libcap-ng-devel libmnl-devel llvm ncurses-devel newt-devel nss-tools pciutils-devel perl pesign python3-sphinx xmlto
Last metadata expiration check: 0:36:41 ago on Sun 27 Mar 2022 12:53:16 BST.
Dependencies resolved.
================================================================================
 Package                          Arch   Version               Repository  Size
================================================================================
Installing:
 asciidoc                         noarch 8.6.10-0.5.20180627gitf7c2274.el8
                                                               appstream  216 k
 audit-libs-devel                 x86_64 3.0-0.17.20191104git1c2f876.el8
                                                               baseos      84 k
 binutils-devel                   x86_64 2.30-108.el8_5.1      appstream  3.7 M
 clang                            x86_64 12.0.1-4.module_el8.4.0+2600+cefb5d4c
                                                               appstream   80 k
 java-1.8.0-openjdk-devel         x86_64 1:1.8.0.322.b06-2.el8_5
                                                               appstream  9.8 M
 libbabeltrace-devel              x86_64 1.5.4-3.el8           powertools  32 k
 libbpf-devel                     x86_64 0.4.0-1.el8           powertools  62 k
 libcap-devel                     x86_64 2.26-5.el8            baseos      33 k
 libcap-ng-devel                  x86_64 0.7.11-1.el8          baseos      29 k
 libmnl-devel                     x86_64 1.0.4-6.el8           appstream   44 k
 llvm                             x86_64 12.0.1-2.module_el8.5.0+2598+6a7729ff
                                                               appstream   16 M
 ncurses-devel                    x86_64 6.1-9.20180224.el8    baseos     528 k
 newt-devel                       x86_64 0.52.20-11.el8        appstream   59 k
 nss-tools                        x86_64 3.67.0-7.el8_5        appstream  575 k
 pciutils-devel                   x86_64 3.7.0-1.el8           baseos      43 k
 perl                             x86_64 4:5.26.3-420.el8      appstream   72 k
 pesign                           x86_64 0.112-25.el8.alma     appstream  180 k
 python3-sphinx                   noarch 1:1.7.6-2.el8         powertools 1.7 M
 xmlto                            x86_64 0.0.28-7.el8          appstream   59 k
Installing dependencies:
 ImageMagick-libs                 x86_64 6.9.10.86-1.el8       epel       2.3 M
 LibRaw                           x86_64 0.19.5-3.el8          appstream  315 k
 Lmod                             x86_64 8.2.7-1.el8           epel       236 k
 OpenEXR-libs                     x86_64 2.2.0-12.el8          appstream  671 k
 clang-libs                       x86_64 12.0.1-4.module_el8.4.0+2600+cefb5d4c
                                                               appstream   22 M
 clang-resource-filesystem        x86_64 12.0.1-4.module_el8.4.0+2600+cefb5d4c
                                                               appstream   13 k
 ctags                            x86_64 5.8-22.el8            appstream  170 k
 docbook-dtds                     noarch 1.0-69.el8            appstream  377 k
 docbook-style-xsl                noarch 1.79.2-9.el8          appstream  1.6 M
 fftw-libs-double                 x86_64 3.3.5-11.el8          appstream  992 k
 fontawesome-fonts                noarch 4.7.0-4.el8           appstream  203 k
 fontawesome-fonts-web            noarch 4.7.0-4.el8           powertools 428 k
 gcc-c++                          x86_64 8.5.0-4.el8_5.alma    appstream   12 M
 google-roboto-slab-fonts         noarch 1.100263-0.7.20150923git.el8
                                                               powertools 238 k
 graphviz                         x86_64 2.40.1-43.el8         appstream  1.7 M
 ilmbase                          x86_64 2.2.0-13.el8          appstream  113 k
 lato-fonts                       noarch 2.015-5.el8           appstream  3.3 M
 libXaw                           x86_64 1.0.13-10.el8         appstream  194 k
 libraqm                          x86_64 0.7.0-4.el8           epel        19 k
 libstdc++-devel                  x86_64 8.5.0-4.el8_5.alma    appstream  2.0 M
 libuuid-devel                    x86_64 2.32.1-28.el8         baseos      96 k
 libwmf-lite                      x86_64 0.2.9-8.el8_0         appstream   76 k
 lua-filesystem                   x86_64 1.6.3-7.el8           powertools  35 k
 lua-posix                        x86_64 33.3.1-9.el8          powertools 176 k
 lua-term                         x86_64 0.07-9.el8            epel        16 k
 ncurses-c++-libs                 x86_64 6.1-9.20180224.el8    baseos      57 k
 perl-Algorithm-Diff              noarch 1.1903-9.el8          baseos      51 k
 perl-Archive-Tar                 noarch 2.30-1.el8            baseos      79 k
 perl-Archive-Zip                 noarch 1.60-3.el8            appstream  108 k
 perl-Attribute-Handlers          noarch 0.99-420.el8          appstream   88 k
 perl-B-Debug                     noarch 1.26-2.el8            appstream   26 k
 perl-CPAN                        noarch 2.18-397.el8          appstream  554 k
 perl-Compress-Bzip2              x86_64 2.26-6.el8            appstream   72 k
 perl-Compress-Raw-Bzip2          x86_64 2.081-1.el8           baseos      40 k
 perl-Compress-Raw-Zlib           x86_64 2.081-1.el8           baseos      68 k
 perl-Config-Perl-V               noarch 0.30-1.el8            appstream   22 k
 perl-DB_File                     x86_64 1.842-1.el8           appstream   83 k
 perl-Data-OptList                noarch 0.110-6.el8           appstream   31 k
 perl-Data-Section                noarch 0.200007-3.el8        appstream   30 k
 perl-Devel-PPPort                x86_64 3.36-5.el8            appstream  118 k
 perl-Devel-Peek                  x86_64 1.26-420.el8          appstream   92 k
 perl-Devel-SelfStubber           noarch 1.06-420.el8          appstream   75 k
 perl-Devel-Size                  x86_64 0.81-2.el8            appstream   34 k
 perl-Digest-SHA                  x86_64 1:6.02-1.el8          appstream   66 k
 perl-Encode-devel                x86_64 4:2.97-3.el8          appstream   38 k
 perl-Env                         noarch 1.04-395.el8          appstream   21 k
 perl-ExtUtils-CBuilder           noarch 1:0.280230-2.el8      appstream   48 k
 perl-ExtUtils-Embed              noarch 1.34-420.el8          appstream   78 k
 perl-ExtUtils-MM-Utils           noarch 1:7.34-1.el8          appstream   16 k
 perl-ExtUtils-Miniperl           noarch 1.06-420.el8          appstream   75 k
 perl-File-Fetch                  noarch 0.56-2.el8            appstream   33 k
 perl-File-HomeDir                noarch 1.002-4.el8           appstream   61 k
 perl-File-Which                  noarch 1.22-2.el8            appstream   23 k
 perl-Filter                      x86_64 2:1.58-2.el8          appstream   82 k
 perl-Filter-Simple               noarch 0.94-2.el8            appstream   29 k
 perl-IO-Compress                 noarch 2.081-1.el8           baseos     258 k
 perl-IO-Zlib                     noarch 1:1.10-420.el8        baseos      79 k
 perl-IPC-Cmd                     noarch 2:1.02-1.el8          appstream   43 k
 perl-IPC-SysV                    x86_64 2.07-397.el8          appstream   43 k
 perl-IPC-System-Simple           noarch 1.25-17.el8           appstream   43 k
 perl-Locale-Codes                noarch 3.57-1.el8            appstream  311 k
 perl-Locale-Maketext             noarch 1.28-396.el8          appstream   99 k
 perl-Locale-Maketext-Simple      noarch 1:0.21-420.el8        appstream   78 k
 perl-MRO-Compat                  noarch 0.13-4.el8            appstream   24 k
 perl-Math-BigInt-FastCalc        x86_64 0.500.600-6.el8       appstream   27 k
 perl-Math-BigRat                 noarch 0.2614-1.el8          appstream   40 k
 perl-Memoize                     noarch 1.03-420.el8          appstream  117 k
 perl-Module-Build                noarch 2:0.42.24-5.el8       appstream  273 k
 perl-Module-CoreList             noarch 1:5.20181130-1.el8    appstream   87 k
 perl-Module-CoreList-tools       noarch 1:5.20181130-1.el8    appstream   22 k
 perl-Module-Load                 noarch 1:0.32-395.el8        appstream   18 k
 perl-Module-Load-Conditional     noarch 0.68-395.el8          appstream   24 k
 perl-Module-Loaded               noarch 1:0.08-420.el8        appstream   74 k
 perl-Module-Metadata             noarch 1.000033-395.el8      appstream   44 k
 perl-Net-Ping                    noarch 2.55-420.el8          appstream  100 k
 perl-Package-Generator           noarch 1.106-11.el8          appstream   27 k
 perl-Params-Check                noarch 1:0.38-395.el8        appstream   23 k
 perl-Params-Util                 x86_64 1.07-22.el8           appstream   44 k
 perl-Perl-OSType                 noarch 1.010-396.el8         appstream   29 k
 perl-PerlIO-via-QuotedPrint      noarch 0.08-395.el8          appstream   13 k
 perl-Pod-Checker                 noarch 4:1.73-395.el8        appstream   33 k
 perl-Pod-Html                    noarch 1.22.02-420.el8       appstream   87 k
 perl-Pod-Parser                  noarch 1.63-396.el8          appstream  108 k
 perl-SelfLoader                  noarch 1.23-420.el8          appstream   82 k
 perl-Software-License            noarch 0.103013-2.el8        appstream  138 k
 perl-Sub-Exporter                noarch 0.987-15.el8          appstream   73 k
 perl-Sub-Install                 noarch 0.928-14.el8          appstream   27 k
 perl-Sys-Syslog                  x86_64 0.35-397.el8          appstream   50 k
 perl-Test                        noarch 1.30-420.el8          appstream   89 k
 perl-Test-Simple                 noarch 1:1.302135-1.el8      appstream  516 k
 perl-Text-Balanced               noarch 2.03-395.el8          appstream   58 k
 perl-Text-Diff                   noarch 1.45-2.el8            baseos      45 k
 perl-Text-Glob                   noarch 0.11-4.el8            appstream   17 k
 perl-Text-Template               noarch 1.51-1.el8            appstream   64 k
 perl-Thread-Queue                noarch 3.13-1.el8            appstream   24 k
 perl-Time-Piece                  x86_64 1.31-420.el8          appstream   97 k
 perl-Unicode-Collate             x86_64 1.25-2.el8            appstream  685 k
 perl-autodie                     noarch 2.29-396.el8          appstream   98 k
 perl-bignum                      noarch 0.49-2.el8            appstream   43 k
 perl-encoding                    x86_64 4:2.22-3.el8          appstream   68 k
 perl-experimental                noarch 0.019-2.el8           appstream   23 k
 perl-inc-latest                  noarch 2:0.500-9.el8         appstream   25 k
 perl-libnetcfg                   noarch 4:5.26.3-420.el8      appstream   77 k
 perl-local-lib                   noarch 2.000024-2.el8        appstream   74 k
 perl-open                        noarch 1.11-420.el8          appstream   76 k
 perl-perlfaq                     noarch 5.20180605-1.el8      appstream  386 k
 perl-utils                       noarch 5.26.3-420.el8        appstream  128 k
 python-sphinx-locale             noarch 1:1.7.6-2.el8         powertools 170 k
 python3-babel                    noarch 2.5.1-7.el8           appstream  4.8 M
 python3-imagesize                noarch 1.0.0-2.el8           powertools  16 k
 python3-jinja2                   noarch 2.10.1-3.el8          appstream  537 k
 python3-markupsafe               x86_64 0.23-19.el8           appstream   39 k
 python3-mock                     noarch 2.0.0-11.el8          powertools  59 k
 python3-packaging                noarch 16.8-9.el8            powertools  48 k
 python3-pygments                 noarch 2.2.0-22.module_el8.5.0+2569+5c5719bc
                                                               appstream  1.9 M
 python3-snowballstemmer          noarch 1.2.1-6.el8           powertools 108 k
 python3-sphinx-theme-alabaster   noarch 0.7.9-7.el8           powertools  24 k
 python3-sphinx_rtd_theme         noarch 0.3.1-3.el8           powertools 128 k
 python3-sphinxcontrib-websupport noarch 1.0.1-10.20180316git.el8
                                                               powertools  50 k
 python3-sqlalchemy               x86_64 1.3.2-2.module_el8.5.0+2569+5c5719bc
                                                               appstream  1.9 M
 python3-whoosh                   noarch 2.7.4-9.el8           powertools 1.1 M
 sgml-common                      noarch 0.6.3-50.el8          baseos      62 k
 slang-devel                      x86_64 2.3.2-3.el8           appstream  223 k
 source-highlight                 x86_64 3.1.8-17.el8          appstream  659 k
 tcl                              x86_64 1:8.6.8-2.el8         baseos     1.1 M
 xorg-x11-fonts-ISO8859-1-100dpi  noarch 7.5-19.el8            appstream  1.1 M
Installing weak dependencies:
 ImageMagick                      x86_64 6.9.10.86-1.el8       epel       195 k
 compiler-rt                      x86_64 12.0.1-1.module_el8.5.0+2598+6a7729ff
                                                               appstream  3.8 M
 libomp                           x86_64 12.0.1-1.module_el8.5.0+2598+6a7729ff
                                                               appstream  342 k
 libomp-devel                     x86_64 12.0.1-1.module_el8.5.0+2598+6a7729ff
                                                               appstream   23 k

Transaction Summary
================================================================================
Install  149 Packages

Total download size: 107 M
Installed size: 442 M
Is this ok [y/N]: y
Downloading Packages:
(1/149): libcap-devel-2.26-5.el8.x86_64.rpm     374 kB/s |  33 kB     00:00    
(2/149): libcap-ng-devel-0.7.11-1.el8.x86_64.rp 285 kB/s |  29 kB     00:00    
(3/149): audit-libs-devel-3.0-0.17.20191104git1 661 kB/s |  84 kB     00:00    
(4/149): libuuid-devel-2.32.1-28.el8.x86_64.rpm 1.2 MB/s |  96 kB     00:00    
(5/149): ncurses-c++-libs-6.1-9.20180224.el8.x8 677 kB/s |  57 kB     00:00    
(6/149): perl-Algorithm-Diff-1.1903-9.el8.noarc 953 kB/s |  51 kB     00:00    
(7/149): pciutils-devel-3.7.0-1.el8.x86_64.rpm  508 kB/s |  43 kB     00:00    
(8/149): ncurses-devel-6.1-9.20180224.el8.x86_6 2.8 MB/s | 528 kB     00:00    
(9/149): perl-Archive-Tar-2.30-1.el8.noarch.rpm 1.1 MB/s |  79 kB     00:00    
(10/149): perl-Compress-Raw-Bzip2-2.081-1.el8.x 494 kB/s |  40 kB     00:00    
(11/149): perl-Compress-Raw-Zlib-2.081-1.el8.x8 1.2 MB/s |  68 kB     00:00    
(12/149): perl-IO-Compress-2.081-1.el8.noarch.r 2.8 MB/s | 258 kB     00:00    
(13/149): perl-IO-Zlib-1.10-420.el8.noarch.rpm  904 kB/s |  79 kB     00:00    
(14/149): perl-Text-Diff-1.45-2.el8.noarch.rpm  599 kB/s |  45 kB     00:00    
(15/149): sgml-common-0.6.3-50.el8.noarch.rpm   398 kB/s |  62 kB     00:00    
(16/149): LibRaw-0.19.5-3.el8.x86_64.rpm        1.7 MB/s | 315 kB     00:00    
(17/149): tcl-8.6.8-2.el8.x86_64.rpm            3.6 MB/s | 1.1 MB     00:00    
(18/149): asciidoc-8.6.10-0.5.20180627gitf7c227 1.3 MB/s | 216 kB     00:00    
(19/149): OpenEXR-libs-2.2.0-12.el8.x86_64.rpm  2.6 MB/s | 671 kB     00:00    
(20/149): clang-12.0.1-4.module_el8.4.0+2600+ce 771 kB/s |  80 kB     00:00    
(21/149): clang-resource-filesystem-12.0.1-4.mo 201 kB/s |  13 kB     00:00    
(22/149): binutils-devel-2.30-108.el8_5.1.x86_6 3.7 MB/s | 3.7 MB     00:00    
(23/149): ctags-5.8-22.el8.x86_64.rpm           610 kB/s | 170 kB     00:00    
(24/149): docbook-dtds-1.0-69.el8.noarch.rpm    652 kB/s | 377 kB     00:00    
(25/149): compiler-rt-12.0.1-1.module_el8.5.0+2 2.1 MB/s | 3.8 MB     00:01    
(26/149): fftw-libs-double-3.3.5-11.el8.x86_64. 1.1 MB/s | 992 kB     00:00    
(27/149): docbook-style-xsl-1.79.2-9.el8.noarch 1.2 MB/s | 1.6 MB     00:01    
(28/149): fontawesome-fonts-4.7.0-4.el8.noarch. 615 kB/s | 203 kB     00:00    
(29/149): graphviz-2.40.1-43.el8.x86_64.rpm     1.4 MB/s | 1.7 MB     00:01    
(30/149): ilmbase-2.2.0-13.el8.x86_64.rpm       455 kB/s | 113 kB     00:00    
(31/149): clang-libs-12.0.1-4.module_el8.4.0+26 3.7 MB/s |  22 MB     00:05    
(32/149): lato-fonts-2.015-5.el8.noarch.rpm     2.3 MB/s | 3.3 MB     00:01    
(33/149): libXaw-1.0.13-10.el8.x86_64.rpm       815 kB/s | 194 kB     00:00    
(34/149): libmnl-devel-1.0.4-6.el8.x86_64.rpm   195 kB/s |  44 kB     00:00    
(35/149): java-1.8.0-openjdk-devel-1.8.0.322.b0 2.6 MB/s | 9.8 MB     00:03    
(36/149): libomp-12.0.1-1.module_el8.5.0+2598+6 485 kB/s | 342 kB     00:00    
(37/149): libomp-devel-12.0.1-1.module_el8.5.0+ 295 kB/s |  23 kB     00:00    
(38/149): libwmf-lite-0.2.9-8.el8_0.x86_64.rpm  546 kB/s |  76 kB     00:00    
(39/149): gcc-c++-8.5.0-4.el8_5.alma.x86_64.rpm 2.1 MB/s |  12 MB     00:05    
(40/149): newt-devel-0.52.20-11.el8.x86_64.rpm  371 kB/s |  59 kB     00:00    
(41/149): libstdc++-devel-8.5.0-4.el8_5.alma.x8 2.8 MB/s | 2.0 MB     00:00    
(42/149): perl-5.26.3-420.el8.x86_64.rpm        896 kB/s |  72 kB     00:00    
(43/149): perl-Archive-Zip-1.60-3.el8.noarch.rp 665 kB/s | 108 kB     00:00    
(44/149): nss-tools-3.67.0-7.el8_5.x86_64.rpm   1.7 MB/s | 575 kB     00:00    
(45/149): perl-Attribute-Handlers-0.99-420.el8. 573 kB/s |  88 kB     00:00    
(46/149): perl-B-Debug-1.26-2.el8.noarch.rpm    243 kB/s |  26 kB     00:00    
(47/149): perl-Compress-Bzip2-2.26-6.el8.x86_64 536 kB/s |  72 kB     00:00    
(48/149): perl-Config-Perl-V-0.30-1.el8.noarch. 165 kB/s |  22 kB     00:00    
(49/149): perl-DB_File-1.842-1.el8.x86_64.rpm   353 kB/s |  83 kB     00:00    
(50/149): perl-CPAN-2.18-397.el8.noarch.rpm     1.0 MB/s | 554 kB     00:00    
(51/149): perl-Data-OptList-0.110-6.el8.noarch. 186 kB/s |  31 kB     00:00    
(52/149): perl-Data-Section-0.200007-3.el8.noar 174 kB/s |  30 kB     00:00    
(53/149): perl-Devel-PPPort-3.36-5.el8.x86_64.r 296 kB/s | 118 kB     00:00    
(54/149): perl-Devel-Peek-1.26-420.el8.x86_64.r 242 kB/s |  92 kB     00:00    
(55/149): perl-Devel-Size-0.81-2.el8.x86_64.rpm 215 kB/s |  34 kB     00:00    
(56/149): perl-Devel-SelfStubber-1.06-420.el8.n 281 kB/s |  75 kB     00:00    
(57/149): perl-Digest-SHA-6.02-1.el8.x86_64.rpm 274 kB/s |  66 kB     00:00    
(58/149): perl-Encode-devel-2.97-3.el8.x86_64.r 228 kB/s |  38 kB     00:00    
(59/149): perl-Env-1.04-395.el8.noarch.rpm      128 kB/s |  21 kB     00:00    
(60/149): perl-ExtUtils-CBuilder-0.280230-2.el8 218 kB/s |  48 kB     00:00    
(61/149): llvm-12.0.1-2.module_el8.5.0+2598+6a7 4.9 MB/s |  16 MB     00:03    
(62/149): perl-ExtUtils-MM-Utils-7.34-1.el8.noa  30 kB/s |  16 kB     00:00    
(63/149): perl-ExtUtils-Embed-1.34-420.el8.noar 128 kB/s |  78 kB     00:00    
(64/149): perl-File-Fetch-0.56-2.el8.noarch.rpm 732 kB/s |  33 kB     00:00    
(65/149): perl-File-HomeDir-1.002-4.el8.noarch. 1.0 MB/s |  61 kB     00:00    
(66/149): perl-ExtUtils-Miniperl-1.06-420.el8.n 982 kB/s |  75 kB     00:00    
(67/149): perl-File-Which-1.22-2.el8.noarch.rpm 519 kB/s |  23 kB     00:00    
(68/149): perl-Filter-Simple-0.94-2.el8.noarch. 724 kB/s |  29 kB     00:00    
(69/149): perl-IPC-Cmd-1.02-1.el8.noarch.rpm    964 kB/s |  43 kB     00:00    
(70/149): perl-Filter-1.58-2.el8.x86_64.rpm     960 kB/s |  82 kB     00:00    
(71/149): perl-IPC-SysV-2.07-397.el8.x86_64.rpm 853 kB/s |  43 kB     00:00    
(72/149): perl-IPC-System-Simple-1.25-17.el8.no 505 kB/s |  43 kB     00:00    
(73/149): perl-Locale-Maketext-1.28-396.el8.noa 1.2 MB/s |  99 kB     00:00    
(74/149): perl-MRO-Compat-0.13-4.el8.noarch.rpm 711 kB/s |  24 kB     00:00    
(75/149): perl-Locale-Maketext-Simple-0.21-420. 854 kB/s |  78 kB     00:00    
(76/149): perl-Locale-Codes-3.57-1.el8.noarch.r 1.6 MB/s | 311 kB     00:00    
(77/149): perl-Math-BigInt-FastCalc-0.500.600-6 396 kB/s |  27 kB     00:00    
(78/149): perl-Math-BigRat-0.2614-1.el8.noarch. 526 kB/s |  40 kB     00:00    
(79/149): perl-Memoize-1.03-420.el8.noarch.rpm  1.3 MB/s | 117 kB     00:00    
(80/149): perl-Module-CoreList-5.20181130-1.el8 1.2 MB/s |  87 kB     00:00    
(81/149): perl-Module-CoreList-tools-5.20181130 452 kB/s |  22 kB     00:00    
(82/149): perl-Module-Load-0.32-395.el8.noarch. 469 kB/s |  18 kB     00:00    
(83/149): perl-Module-Build-0.42.24-5.el8.noarc 1.6 MB/s | 273 kB     00:00    
(84/149): perl-Module-Load-Conditional-0.68-395 521 kB/s |  24 kB     00:00    
(85/149): perl-Module-Metadata-1.000033-395.el8 869 kB/s |  44 kB     00:00    
(86/149): perl-Module-Loaded-0.08-420.el8.noarc 863 kB/s |  74 kB     00:00    
(87/149): perl-Net-Ping-2.55-420.el8.noarch.rpm 1.6 MB/s | 100 kB     00:00    
(88/149): perl-Package-Generator-1.106-11.el8.n 623 kB/s |  27 kB     00:00    
(89/149): perl-Params-Check-0.38-395.el8.noarch 584 kB/s |  23 kB     00:00    
(90/149): perl-Params-Util-1.07-22.el8.x86_64.r 819 kB/s |  44 kB     00:00    
(91/149): perl-PerlIO-via-QuotedPrint-0.08-395. 470 kB/s |  13 kB     00:00    
(92/149): perl-Perl-OSType-1.010-396.el8.noarch 636 kB/s |  29 kB     00:00    
(93/149): perl-Pod-Checker-1.73-395.el8.noarch. 766 kB/s |  33 kB     00:00    
(94/149): perl-Pod-Html-1.22.02-420.el8.noarch. 990 kB/s |  87 kB     00:00    
(95/149): perl-Pod-Parser-1.63-396.el8.noarch.r 1.2 MB/s | 108 kB     00:00    
(96/149): perl-SelfLoader-1.23-420.el8.noarch.r 1.2 MB/s |  82 kB     00:00    
(97/149): perl-Sub-Install-0.928-14.el8.noarch. 624 kB/s |  27 kB     00:00    
(98/149): perl-Sub-Exporter-0.987-15.el8.noarch 1.2 MB/s |  73 kB     00:00    
(99/149): perl-Software-License-0.103013-2.el8. 1.6 MB/s | 138 kB     00:00    
(100/149): perl-Sys-Syslog-0.35-397.el8.x86_64. 739 kB/s |  50 kB     00:00    
(101/149): perl-Test-1.30-420.el8.noarch.rpm    1.2 MB/s |  89 kB     00:00    
(102/149): perl-Text-Balanced-2.03-395.el8.noar 916 kB/s |  58 kB     00:00    
(103/149): perl-Text-Glob-0.11-4.el8.noarch.rpm 330 kB/s |  17 kB     00:00    
(104/149): perl-Thread-Queue-3.13-1.el8.noarch. 627 kB/s |  24 kB     00:00    
(105/149): perl-Text-Template-1.51-1.el8.noarch 640 kB/s |  64 kB     00:00    
(106/149): perl-Test-Simple-1.302135-1.el8.noar 2.3 MB/s | 516 kB     00:00    
(107/149): perl-Time-Piece-1.31-420.el8.x86_64. 1.0 MB/s |  97 kB     00:00    
(108/149): perl-bignum-0.49-2.el8.noarch.rpm    779 kB/s |  43 kB     00:00    
(109/149): perl-autodie-2.29-396.el8.noarch.rpm 943 kB/s |  98 kB     00:00    
(110/149): perl-experimental-0.019-2.el8.noarch 581 kB/s |  23 kB     00:00    
(111/149): perl-encoding-2.22-3.el8.x86_64.rpm  987 kB/s |  68 kB     00:00    
(112/149): perl-inc-latest-0.500-9.el8.noarch.r 608 kB/s |  25 kB     00:00    
(113/149): perl-libnetcfg-5.26.3-420.el8.noarch 1.3 MB/s |  77 kB     00:00    
(114/149): perl-local-lib-2.000024-2.el8.noarch 1.1 MB/s |  74 kB     00:00    
(115/149): perl-open-1.11-420.el8.noarch.rpm    1.2 MB/s |  76 kB     00:00    
(116/149): perl-Unicode-Collate-1.25-2.el8.x86_ 2.2 MB/s | 685 kB     00:00    
(117/149): perl-utils-5.26.3-420.el8.noarch.rpm 1.3 MB/s | 128 kB     00:00    
(118/149): pesign-0.112-25.el8.alma.x86_64.rpm  1.3 MB/s | 180 kB     00:00    
(119/149): perl-perlfaq-5.20180605-1.el8.noarch 1.8 MB/s | 386 kB     00:00    
(120/149): python3-markupsafe-0.23-19.el8.x86_6 467 kB/s |  39 kB     00:00    
(121/149): python3-jinja2-2.10.1-3.el8.noarch.r 2.0 MB/s | 537 kB     00:00    
(122/149): python3-pygments-2.2.0-22.module_el8 2.0 MB/s | 1.9 MB     00:00    
(123/149): python3-babel-2.5.1-7.el8.noarch.rpm 3.5 MB/s | 4.8 MB     00:01    
(124/149): slang-devel-2.3.2-3.el8.x86_64.rpm   856 kB/s | 223 kB     00:00    
(125/149): python3-sqlalchemy-1.3.2-2.module_el 1.7 MB/s | 1.9 MB     00:01    
(126/149): xmlto-0.0.28-7.el8.x86_64.rpm        587 kB/s |  59 kB     00:00    
(127/149): source-highlight-3.1.8-17.el8.x86_64 1.9 MB/s | 659 kB     00:00    
(128/149): fontawesome-fonts-web-4.7.0-4.el8.no 1.6 MB/s | 428 kB     00:00    
(129/149): xorg-x11-fonts-ISO8859-1-100dpi-7.5- 3.1 MB/s | 1.1 MB     00:00    
(130/149): google-roboto-slab-fonts-1.100263-0. 1.7 MB/s | 238 kB     00:00    
(131/149): libbabeltrace-devel-1.5.4-3.el8.x86_ 368 kB/s |  32 kB     00:00    
(132/149): libbpf-devel-0.4.0-1.el8.x86_64.rpm  585 kB/s |  62 kB     00:00    
(133/149): lua-filesystem-1.6.3-7.el8.x86_64.rp 433 kB/s |  35 kB     00:00    
(134/149): lua-posix-33.3.1-9.el8.x86_64.rpm    1.8 MB/s | 176 kB     00:00    
(135/149): python3-imagesize-1.0.0-2.el8.noarch 264 kB/s |  16 kB     00:00    
(136/149): python3-mock-2.0.0-11.el8.noarch.rpm 1.1 MB/s |  59 kB     00:00    
(137/149): python-sphinx-locale-1.7.6-2.el8.noa 1.6 MB/s | 170 kB     00:00    
(138/149): python3-packaging-16.8-9.el8.noarch. 533 kB/s |  48 kB     00:00    
(139/149): python3-snowballstemmer-1.2.1-6.el8. 1.0 MB/s | 108 kB     00:00    
(140/149): python3-sphinx-theme-alabaster-0.7.9 369 kB/s |  24 kB     00:00    
(141/149): python3-sphinx_rtd_theme-0.3.1-3.el8 993 kB/s | 128 kB     00:00    
(142/149): python3-sphinxcontrib-websupport-1.0 495 kB/s |  50 kB     00:00    
(143/149): python3-sphinx-1.7.6-2.el8.noarch.rp 4.4 MB/s | 1.7 MB     00:00    
(144/149): ImageMagick-6.9.10.86-1.el8.x86_64.r 919 kB/s | 195 kB     00:00    
(145/149): python3-whoosh-2.7.4-9.el8.noarch.rp 3.1 MB/s | 1.1 MB     00:00    
(146/149): Lmod-8.2.7-1.el8.x86_64.rpm          1.4 MB/s | 236 kB     00:00    
(147/149): libraqm-0.7.0-4.el8.x86_64.rpm       232 kB/s |  19 kB     00:00    
(148/149): ImageMagick-libs-6.9.10.86-1.el8.x86 3.6 MB/s | 2.3 MB     00:00    
(149/149): lua-term-0.07-9.el8.x86_64.rpm        18 kB/s |  16 kB     00:00    
--------------------------------------------------------------------------------
Total                                           5.5 MB/s | 107 MB     00:19     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : perl-SelfLoader-1.23-420.el8.noarch                  1/149 
  Installing       : perl-Perl-OSType-1.010-396.el8.noarch                2/149 
  Installing       : perl-Module-Metadata-1.000033-395.el8.noarch         3/149 
  Installing       : perl-Module-Load-1:0.32-395.el8.noarch               4/149 
  Installing       : perl-Module-CoreList-1:5.20181130-1.el8.noarch       5/149 
  Installing       : perl-Filter-2:1.58-2.el8.x86_64                      6/149 
  Installing       : clang-resource-filesystem-12.0.1-4.module_el8.4.     7/149 
  Installing       : perl-Compress-Raw-Zlib-2.081-1.el8.x86_64            8/149 
  Installing       : perl-encoding-4:2.22-3.el8.x86_64                    9/149 
  Installing       : perl-Text-Balanced-2.03-395.el8.noarch              10/149 
  Installing       : libraqm-0.7.0-4.el8.x86_64                          11/149 
  Installing       : python3-babel-2.5.1-7.el8.noarch                    12/149 
  Installing       : perl-Sub-Install-0.928-14.el8.noarch                13/149 
  Installing       : perl-Pod-Html-1.22.02-420.el8.noarch                14/149 
  Installing       : perl-Params-Util-1.07-22.el8.x86_64                 15/149 
  Installing       : perl-Net-Ping-2.55-420.el8.noarch                   16/149 
  Installing       : perl-Math-BigRat-0.2614-1.el8.noarch                17/149 
  Installing       : perl-Locale-Maketext-1.28-396.el8.noarch            18/149 
  Installing       : perl-Locale-Maketext-Simple-1:0.21-420.el8.noarc    19/149 
  Installing       : perl-Params-Check-1:0.38-395.el8.noarch             20/149 
  Installing       : perl-Module-Load-Conditional-0.68-395.el8.noarch    21/149 
  Installing       : perl-ExtUtils-Embed-1.34-420.el8.noarch             22/149 
  Installing       : perl-Digest-SHA-1:6.02-1.el8.x86_64                 23/149 
  Installing       : libstdc++-devel-8.5.0-4.el8_5.alma.x86_64           24/149 
  Installing       : ilmbase-2.2.0-13.el8.x86_64                         25/149 
  Running scriptlet: ilmbase-2.2.0-13.el8.x86_64                         25/149 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : fontawesome-fonts-4.7.0-4.el8.noarch                26/149 
  Installing       : fftw-libs-double-3.3.5-11.el8.x86_64                27/149 
  Installing       : perl-Compress-Raw-Bzip2-2.081-1.el8.x86_64          28/149 
  Installing       : perl-IO-Compress-2.081-1.el8.noarch                 29/149 
  Installing       : perl-IO-Zlib-1:1.10-420.el8.noarch                  30/149 
  Installing       : fontawesome-fonts-web-4.7.0-4.el8.noarch            31/149 
  Installing       : OpenEXR-libs-2.2.0-12.el8.x86_64                    32/149 
  Running scriptlet: OpenEXR-libs-2.2.0-12.el8.x86_64                    32/149 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : gcc-c++-8.5.0-4.el8_5.alma.x86_64                   33/149 
  Installing       : perl-ExtUtils-Miniperl-1.06-420.el8.noarch          34/149 
  Installing       : perl-bignum-0.49-2.el8.noarch                       35/149 
  Installing       : perl-Data-OptList-0.110-6.el8.noarch                36/149 
  Installing       : perl-Filter-Simple-0.94-2.el8.noarch                37/149 
  Installing       : perl-open-1.11-420.el8.noarch                       38/149 
  Installing       : perl-Archive-Zip-1.60-3.el8.noarch                  39/149 
  Installing       : compiler-rt-12.0.1-1.module_el8.5.0+2598+6a7729f    40/149 
  Installing       : libomp-devel-12.0.1-1.module_el8.5.0+2598+6a7729    41/149 
  Installing       : perl-Module-CoreList-tools-1:5.20181130-1.el8.no    42/149 
  Installing       : perl-Devel-SelfStubber-1.06-420.el8.noarch          43/149 
  Installing       : lua-term-0.07-9.el8.x86_64                          44/149 
  Installing       : python3-whoosh-2.7.4-9.el8.noarch                   45/149 
  Installing       : python3-sphinx-theme-alabaster-0.7.9-7.el8.noarc    46/149 
  Installing       : python3-snowballstemmer-1.2.1-6.el8.noarch          47/149 
  Installing       : python3-packaging-16.8-9.el8.noarch                 48/149 
  Installing       : python3-mock-2.0.0-11.el8.noarch                    49/149 
  Installing       : python3-imagesize-1.0.0-2.el8.noarch                50/149 
  Installing       : python-sphinx-locale-1:1.7.6-2.el8.noarch           51/149 
  Installing       : lua-posix-33.3.1-9.el8.x86_64                       52/149 
  Installing       : lua-filesystem-1.6.3-7.el8.x86_64                   53/149 
  Installing       : google-roboto-slab-fonts-1.100263-0.7.20150923gi    54/149 
  Installing       : xorg-x11-fonts-ISO8859-1-100dpi-7.5-19.el8.noarc    55/149 
  Running scriptlet: xorg-x11-fonts-ISO8859-1-100dpi-7.5-19.el8.noarc    55/149 
  Installing       : slang-devel-2.3.2-3.el8.x86_64                      56/149 
  Installing       : python3-sqlalchemy-1.3.2-2.module_el8.5.0+2569+5    57/149 
  Installing       : python3-pygments-2.2.0-22.module_el8.5.0+2569+5c    58/149 
  Installing       : python3-markupsafe-0.23-19.el8.x86_64               59/149 
  Installing       : python3-jinja2-2.10.1-3.el8.noarch                  60/149 
  Installing       : perl-utils-5.26.3-420.el8.noarch                    61/149 
  Installing       : perl-perlfaq-5.20180605-1.el8.noarch                62/149 
  Installing       : perl-local-lib-2.000024-2.el8.noarch                63/149 
  Installing       : perl-libnetcfg-4:5.26.3-420.el8.noarch              64/149 
  Installing       : perl-inc-latest-2:0.500-9.el8.noarch                65/149 
  Installing       : perl-experimental-0.019-2.el8.noarch                66/149 
  Installing       : perl-Unicode-Collate-1.25-2.el8.x86_64              67/149 
  Installing       : perl-Time-Piece-1.31-420.el8.x86_64                 68/149 
  Installing       : perl-Thread-Queue-3.13-1.el8.noarch                 69/149 
  Installing       : perl-Text-Template-1.51-1.el8.noarch                70/149 
  Installing       : perl-Text-Glob-0.11-4.el8.noarch                    71/149 
  Installing       : perl-Test-Simple-1:1.302135-1.el8.noarch            72/149 
  Installing       : perl-Test-1.30-420.el8.noarch                       73/149 
  Installing       : perl-Sys-Syslog-0.35-397.el8.x86_64                 74/149 
  Installing       : perl-Pod-Parser-1.63-396.el8.noarch                 75/149 
  Installing       : perl-Pod-Checker-4:1.73-395.el8.noarch              76/149 
  Installing       : perl-PerlIO-via-QuotedPrint-0.08-395.el8.noarch     77/149 
  Installing       : perl-Package-Generator-1.106-11.el8.noarch          78/149 
  Installing       : perl-Sub-Exporter-0.987-15.el8.noarch               79/149 
  Installing       : perl-Module-Loaded-1:0.08-420.el8.noarch            80/149 
  Installing       : perl-Memoize-1.03-420.el8.noarch                    81/149 
  Installing       : perl-Math-BigInt-FastCalc-0.500.600-6.el8.x86_64    82/149 
  Installing       : perl-MRO-Compat-0.13-4.el8.noarch                   83/149 
  Installing       : perl-Data-Section-0.200007-3.el8.noarch             84/149 
  Installing       : perl-Software-License-0.103013-2.el8.noarch         85/149 
  Installing       : perl-Locale-Codes-3.57-1.el8.noarch                 86/149 
  Installing       : perl-IPC-System-Simple-1.25-17.el8.noarch           87/149 
  Installing       : perl-autodie-2.29-396.el8.noarch                    88/149 
  Installing       : perl-IPC-SysV-2.07-397.el8.x86_64                   89/149 
  Installing       : perl-File-Which-1.22-2.el8.noarch                   90/149 
  Installing       : perl-File-HomeDir-1.002-4.el8.noarch                91/149 
  Installing       : perl-ExtUtils-MM-Utils-1:7.34-1.el8.noarch          92/149 
  Installing       : perl-IPC-Cmd-2:1.02-1.el8.noarch                    93/149 
  Installing       : perl-ExtUtils-CBuilder-1:0.280230-2.el8.noarch      94/149 
  Installing       : perl-Module-Build-2:0.42.24-5.el8.noarch            95/149 
  Installing       : perl-File-Fetch-0.56-2.el8.noarch                   96/149 
  Installing       : perl-Env-1.04-395.el8.noarch                        97/149 
  Installing       : perl-Encode-devel-4:2.97-3.el8.x86_64               98/149 
  Installing       : perl-Devel-Size-0.81-2.el8.x86_64                   99/149 
  Installing       : perl-Devel-Peek-1.26-420.el8.x86_64                100/149 
  Installing       : perl-Devel-PPPort-3.36-5.el8.x86_64                101/149 
  Installing       : perl-DB_File-1.842-1.el8.x86_64                    102/149 
  Installing       : perl-Config-Perl-V-0.30-1.el8.noarch               103/149 
  Installing       : perl-Compress-Bzip2-2.26-6.el8.x86_64              104/149 
  Installing       : perl-B-Debug-1.26-2.el8.noarch                     105/149 
  Installing       : perl-Attribute-Handlers-0.99-420.el8.noarch        106/149 
  Installing       : nss-tools-3.67.0-7.el8_5.x86_64                    107/149 
  Installing       : libwmf-lite-0.2.9-8.el8_0.x86_64                   108/149 
  Running scriptlet: libwmf-lite-0.2.9-8.el8_0.x86_64                   108/149 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : libomp-12.0.1-1.module_el8.5.0+2598+6a7729ff.x86   109/149 
  Installing       : clang-libs-12.0.1-4.module_el8.4.0+2600+cefb5d4c   110/149 
  Installing       : libXaw-1.0.13-10.el8.x86_64                        111/149 
  Installing       : graphviz-2.40.1-43.el8.x86_64                      112/149 
  Running scriptlet: graphviz-2.40.1-43.el8.x86_64                      112/149 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : lato-fonts-2.015-5.el8.noarch                      113/149 
  Installing       : python3-sphinx_rtd_theme-0.3.1-3.el8.noarch        114/149 
  Installing       : ctags-5.8-22.el8.x86_64                            115/149 
  Installing       : source-highlight-3.1.8-17.el8.x86_64               116/149 
  Running scriptlet: source-highlight-3.1.8-17.el8.x86_64               116/149 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : LibRaw-0.19.5-3.el8.x86_64                         117/149 
  Installing       : ImageMagick-libs-6.9.10.86-1.el8.x86_64            118/149 
  Installing       : ImageMagick-6.9.10.86-1.el8.x86_64                 119/149 
  Installing       : tcl-1:8.6.8-2.el8.x86_64                           120/149 
  Running scriptlet: tcl-1:8.6.8-2.el8.x86_64                           120/149 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Installing       : Lmod-8.2.7-1.el8.x86_64                            121/149 
  Running scriptlet: Lmod-8.2.7-1.el8.x86_64                            121/149 
  Installing       : python3-sphinxcontrib-websupport-1.0.1-10.201803   122/149 
  Installing       : python3-sphinx-1:1.7.6-2.el8.noarch                123/149 
  Installing       : sgml-common-0.6.3-50.el8.noarch                    124/149 
  Installing       : docbook-dtds-1.0-69.el8.noarch                     125/149 
  Running scriptlet: docbook-dtds-1.0-69.el8.noarch                     125/149 
  Installing       : docbook-style-xsl-1.79.2-9.el8.noarch              126/149 
  Running scriptlet: docbook-style-xsl-1.79.2-9.el8.noarch              126/149 
  Installing       : perl-Algorithm-Diff-1.1903-9.el8.noarch            127/149 
  Installing       : perl-Text-Diff-1.45-2.el8.noarch                   128/149 
  Installing       : perl-Archive-Tar-2.30-1.el8.noarch                 129/149 
  Installing       : perl-CPAN-2.18-397.el8.noarch                      130/149 
  Installing       : ncurses-c++-libs-6.1-9.20180224.el8.x86_64         131/149 
  Installing       : libuuid-devel-2.32.1-28.el8.x86_64                 132/149 
  Installing       : libbabeltrace-devel-1.5.4-3.el8.x86_64             133/149 
  Installing       : ncurses-devel-6.1-9.20180224.el8.x86_64            134/149 
  Installing       : perl-4:5.26.3-420.el8.x86_64                       135/149 
  Installing       : asciidoc-8.6.10-0.5.20180627gitf7c2274.el8.noarc   136/149 
  Installing       : xmlto-0.0.28-7.el8.x86_64                          137/149 
  Installing       : clang-12.0.1-4.module_el8.4.0+2600+cefb5d4c.x86_   138/149 
  Running scriptlet: pesign-0.112-25.el8.alma.x86_64                    139/149 
  Installing       : pesign-0.112-25.el8.alma.x86_64                    139/149 
  Running scriptlet: pesign-0.112-25.el8.alma.x86_64                    139/149 
  Installing       : newt-devel-0.52.20-11.el8.x86_64                   140/149 
  Installing       : libbpf-devel-0.4.0-1.el8.x86_64                    141/149 
  Installing       : llvm-12.0.1-2.module_el8.5.0+2598+6a7729ff.x86_6   142/149 
  Installing       : libmnl-devel-1.0.4-6.el8.x86_64                    143/149 
  Installing       : java-1.8.0-openjdk-devel-1:1.8.0.322.b06-2.el8_5   144/149 
  Running scriptlet: java-1.8.0-openjdk-devel-1:1.8.0.322.b06-2.el8_5   144/149 
  Installing       : binutils-devel-2.30-108.el8_5.1.x86_64             145/149 
  Installing       : pciutils-devel-3.7.0-1.el8.x86_64                  146/149 
  Installing       : libcap-ng-devel-0.7.11-1.el8.x86_64                147/149 
  Installing       : libcap-devel-2.26-5.el8.x86_64                     148/149 
  Installing       : audit-libs-devel-3.0-0.17.20191104git1c2f876.el8   149/149 
  Running scriptlet: java-1.8.0-openjdk-devel-1:1.8.0.322.b06-2.el8_5   149/149 
  Running scriptlet: audit-libs-devel-3.0-0.17.20191104git1c2f876.el8   149/149 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

[/usr/lib/tmpfiles.d/pesign.conf:1] Line references path below legacy directory /var/run/, updating /var/run/pesign → /run/pesign; please update the tmpfiles.d/ drop-in file accordingly.

  Verifying        : audit-libs-devel-3.0-0.17.20191104git1c2f876.el8     1/149 
  Verifying        : libcap-devel-2.26-5.el8.x86_64                       2/149 
  Verifying        : libcap-ng-devel-0.7.11-1.el8.x86_64                  3/149 
  Verifying        : libuuid-devel-2.32.1-28.el8.x86_64                   4/149 
  Verifying        : ncurses-c++-libs-6.1-9.20180224.el8.x86_64           5/149 
  Verifying        : ncurses-devel-6.1-9.20180224.el8.x86_64              6/149 
  Verifying        : pciutils-devel-3.7.0-1.el8.x86_64                    7/149 
  Verifying        : perl-Algorithm-Diff-1.1903-9.el8.noarch              8/149 
  Verifying        : perl-Archive-Tar-2.30-1.el8.noarch                   9/149 
  Verifying        : perl-Compress-Raw-Bzip2-2.081-1.el8.x86_64          10/149 
  Verifying        : perl-Compress-Raw-Zlib-2.081-1.el8.x86_64           11/149 
  Verifying        : perl-IO-Compress-2.081-1.el8.noarch                 12/149 
  Verifying        : perl-IO-Zlib-1:1.10-420.el8.noarch                  13/149 
  Verifying        : perl-Text-Diff-1.45-2.el8.noarch                    14/149 
  Verifying        : sgml-common-0.6.3-50.el8.noarch                     15/149 
  Verifying        : tcl-1:8.6.8-2.el8.x86_64                            16/149 
  Verifying        : LibRaw-0.19.5-3.el8.x86_64                          17/149 
  Verifying        : OpenEXR-libs-2.2.0-12.el8.x86_64                    18/149 
  Verifying        : asciidoc-8.6.10-0.5.20180627gitf7c2274.el8.noarc    19/149 
  Verifying        : binutils-devel-2.30-108.el8_5.1.x86_64              20/149 
  Verifying        : clang-12.0.1-4.module_el8.4.0+2600+cefb5d4c.x86_    21/149 
  Verifying        : clang-libs-12.0.1-4.module_el8.4.0+2600+cefb5d4c    22/149 
  Verifying        : clang-resource-filesystem-12.0.1-4.module_el8.4.    23/149 
  Verifying        : compiler-rt-12.0.1-1.module_el8.5.0+2598+6a7729f    24/149 
  Verifying        : ctags-5.8-22.el8.x86_64                             25/149 
  Verifying        : docbook-dtds-1.0-69.el8.noarch                      26/149 
  Verifying        : docbook-style-xsl-1.79.2-9.el8.noarch               27/149 
  Verifying        : fftw-libs-double-3.3.5-11.el8.x86_64                28/149 
  Verifying        : fontawesome-fonts-4.7.0-4.el8.noarch                29/149 
  Verifying        : gcc-c++-8.5.0-4.el8_5.alma.x86_64                   30/149 
  Verifying        : graphviz-2.40.1-43.el8.x86_64                       31/149 
  Verifying        : ilmbase-2.2.0-13.el8.x86_64                         32/149 
  Verifying        : java-1.8.0-openjdk-devel-1:1.8.0.322.b06-2.el8_5    33/149 
  Verifying        : lato-fonts-2.015-5.el8.noarch                       34/149 
  Verifying        : libXaw-1.0.13-10.el8.x86_64                         35/149 
  Verifying        : libmnl-devel-1.0.4-6.el8.x86_64                     36/149 
  Verifying        : libomp-12.0.1-1.module_el8.5.0+2598+6a7729ff.x86    37/149 
  Verifying        : libomp-devel-12.0.1-1.module_el8.5.0+2598+6a7729    38/149 
  Verifying        : libstdc++-devel-8.5.0-4.el8_5.alma.x86_64           39/149 
  Verifying        : libwmf-lite-0.2.9-8.el8_0.x86_64                    40/149 
  Verifying        : llvm-12.0.1-2.module_el8.5.0+2598+6a7729ff.x86_6    41/149 
  Verifying        : newt-devel-0.52.20-11.el8.x86_64                    42/149 
  Verifying        : nss-tools-3.67.0-7.el8_5.x86_64                     43/149 
  Verifying        : perl-4:5.26.3-420.el8.x86_64                        44/149 
  Verifying        : perl-Archive-Zip-1.60-3.el8.noarch                  45/149 
  Verifying        : perl-Attribute-Handlers-0.99-420.el8.noarch         46/149 
  Verifying        : perl-B-Debug-1.26-2.el8.noarch                      47/149 
  Verifying        : perl-CPAN-2.18-397.el8.noarch                       48/149 
  Verifying        : perl-Compress-Bzip2-2.26-6.el8.x86_64               49/149 
  Verifying        : perl-Config-Perl-V-0.30-1.el8.noarch                50/149 
  Verifying        : perl-DB_File-1.842-1.el8.x86_64                     51/149 
  Verifying        : perl-Data-OptList-0.110-6.el8.noarch                52/149 
  Verifying        : perl-Data-Section-0.200007-3.el8.noarch             53/149 
  Verifying        : perl-Devel-PPPort-3.36-5.el8.x86_64                 54/149 
  Verifying        : perl-Devel-Peek-1.26-420.el8.x86_64                 55/149 
  Verifying        : perl-Devel-SelfStubber-1.06-420.el8.noarch          56/149 
  Verifying        : perl-Devel-Size-0.81-2.el8.x86_64                   57/149 
  Verifying        : perl-Digest-SHA-1:6.02-1.el8.x86_64                 58/149 
  Verifying        : perl-Encode-devel-4:2.97-3.el8.x86_64               59/149 
  Verifying        : perl-Env-1.04-395.el8.noarch                        60/149 
  Verifying        : perl-ExtUtils-CBuilder-1:0.280230-2.el8.noarch      61/149 
  Verifying        : perl-ExtUtils-Embed-1.34-420.el8.noarch             62/149 
  Verifying        : perl-ExtUtils-MM-Utils-1:7.34-1.el8.noarch          63/149 
  Verifying        : perl-ExtUtils-Miniperl-1.06-420.el8.noarch          64/149 
  Verifying        : perl-File-Fetch-0.56-2.el8.noarch                   65/149 
  Verifying        : perl-File-HomeDir-1.002-4.el8.noarch                66/149 
  Verifying        : perl-File-Which-1.22-2.el8.noarch                   67/149 
  Verifying        : perl-Filter-2:1.58-2.el8.x86_64                     68/149 
  Verifying        : perl-Filter-Simple-0.94-2.el8.noarch                69/149 
  Verifying        : perl-IPC-Cmd-2:1.02-1.el8.noarch                    70/149 
  Verifying        : perl-IPC-SysV-2.07-397.el8.x86_64                   71/149 
  Verifying        : perl-IPC-System-Simple-1.25-17.el8.noarch           72/149 
  Verifying        : perl-Locale-Codes-3.57-1.el8.noarch                 73/149 
  Verifying        : perl-Locale-Maketext-1.28-396.el8.noarch            74/149 
  Verifying        : perl-Locale-Maketext-Simple-1:0.21-420.el8.noarc    75/149 
  Verifying        : perl-MRO-Compat-0.13-4.el8.noarch                   76/149 
  Verifying        : perl-Math-BigInt-FastCalc-0.500.600-6.el8.x86_64    77/149 
  Verifying        : perl-Math-BigRat-0.2614-1.el8.noarch                78/149 
  Verifying        : perl-Memoize-1.03-420.el8.noarch                    79/149 
  Verifying        : perl-Module-Build-2:0.42.24-5.el8.noarch            80/149 
  Verifying        : perl-Module-CoreList-1:5.20181130-1.el8.noarch      81/149 
  Verifying        : perl-Module-CoreList-tools-1:5.20181130-1.el8.no    82/149 
  Verifying        : perl-Module-Load-1:0.32-395.el8.noarch              83/149 
  Verifying        : perl-Module-Load-Conditional-0.68-395.el8.noarch    84/149 
  Verifying        : perl-Module-Loaded-1:0.08-420.el8.noarch            85/149 
  Verifying        : perl-Module-Metadata-1.000033-395.el8.noarch        86/149 
  Verifying        : perl-Net-Ping-2.55-420.el8.noarch                   87/149 
  Verifying        : perl-Package-Generator-1.106-11.el8.noarch          88/149 
  Verifying        : perl-Params-Check-1:0.38-395.el8.noarch             89/149 
  Verifying        : perl-Params-Util-1.07-22.el8.x86_64                 90/149 
  Verifying        : perl-Perl-OSType-1.010-396.el8.noarch               91/149 
  Verifying        : perl-PerlIO-via-QuotedPrint-0.08-395.el8.noarch     92/149 
  Verifying        : perl-Pod-Checker-4:1.73-395.el8.noarch              93/149 
  Verifying        : perl-Pod-Html-1.22.02-420.el8.noarch                94/149 
  Verifying        : perl-Pod-Parser-1.63-396.el8.noarch                 95/149 
  Verifying        : perl-SelfLoader-1.23-420.el8.noarch                 96/149 
  Verifying        : perl-Software-License-0.103013-2.el8.noarch         97/149 
  Verifying        : perl-Sub-Exporter-0.987-15.el8.noarch               98/149 
  Verifying        : perl-Sub-Install-0.928-14.el8.noarch                99/149 
  Verifying        : perl-Sys-Syslog-0.35-397.el8.x86_64                100/149 
  Verifying        : perl-Test-1.30-420.el8.noarch                      101/149 
  Verifying        : perl-Test-Simple-1:1.302135-1.el8.noarch           102/149 
  Verifying        : perl-Text-Balanced-2.03-395.el8.noarch             103/149 
  Verifying        : perl-Text-Glob-0.11-4.el8.noarch                   104/149 
  Verifying        : perl-Text-Template-1.51-1.el8.noarch               105/149 
  Verifying        : perl-Thread-Queue-3.13-1.el8.noarch                106/149 
  Verifying        : perl-Time-Piece-1.31-420.el8.x86_64                107/149 
  Verifying        : perl-Unicode-Collate-1.25-2.el8.x86_64             108/149 
  Verifying        : perl-autodie-2.29-396.el8.noarch                   109/149 
  Verifying        : perl-bignum-0.49-2.el8.noarch                      110/149 
  Verifying        : perl-encoding-4:2.22-3.el8.x86_64                  111/149 
  Verifying        : perl-experimental-0.019-2.el8.noarch               112/149 
  Verifying        : perl-inc-latest-2:0.500-9.el8.noarch               113/149 
  Verifying        : perl-libnetcfg-4:5.26.3-420.el8.noarch             114/149 
  Verifying        : perl-local-lib-2.000024-2.el8.noarch               115/149 
  Verifying        : perl-open-1.11-420.el8.noarch                      116/149 
  Verifying        : perl-perlfaq-5.20180605-1.el8.noarch               117/149 
  Verifying        : perl-utils-5.26.3-420.el8.noarch                   118/149 
  Verifying        : pesign-0.112-25.el8.alma.x86_64                    119/149 
  Verifying        : python3-babel-2.5.1-7.el8.noarch                   120/149 
  Verifying        : python3-jinja2-2.10.1-3.el8.noarch                 121/149 
  Verifying        : python3-markupsafe-0.23-19.el8.x86_64              122/149 
  Verifying        : python3-pygments-2.2.0-22.module_el8.5.0+2569+5c   123/149 
  Verifying        : python3-sqlalchemy-1.3.2-2.module_el8.5.0+2569+5   124/149 
  Verifying        : slang-devel-2.3.2-3.el8.x86_64                     125/149 
  Verifying        : source-highlight-3.1.8-17.el8.x86_64               126/149 
  Verifying        : xmlto-0.0.28-7.el8.x86_64                          127/149 
  Verifying        : xorg-x11-fonts-ISO8859-1-100dpi-7.5-19.el8.noarc   128/149 
  Verifying        : fontawesome-fonts-web-4.7.0-4.el8.noarch           129/149 
  Verifying        : google-roboto-slab-fonts-1.100263-0.7.20150923gi   130/149 
  Verifying        : libbabeltrace-devel-1.5.4-3.el8.x86_64             131/149 
  Verifying        : libbpf-devel-0.4.0-1.el8.x86_64                    132/149 
  Verifying        : lua-filesystem-1.6.3-7.el8.x86_64                  133/149 
  Verifying        : lua-posix-33.3.1-9.el8.x86_64                      134/149 
  Verifying        : python-sphinx-locale-1:1.7.6-2.el8.noarch          135/149 
  Verifying        : python3-imagesize-1.0.0-2.el8.noarch               136/149 
  Verifying        : python3-mock-2.0.0-11.el8.noarch                   137/149 
  Verifying        : python3-packaging-16.8-9.el8.noarch                138/149 
  Verifying        : python3-snowballstemmer-1.2.1-6.el8.noarch         139/149 
  Verifying        : python3-sphinx-1:1.7.6-2.el8.noarch                140/149 
  Verifying        : python3-sphinx-theme-alabaster-0.7.9-7.el8.noarc   141/149 
  Verifying        : python3-sphinx_rtd_theme-0.3.1-3.el8.noarch        142/149 
  Verifying        : python3-sphinxcontrib-websupport-1.0.1-10.201803   143/149 
  Verifying        : python3-whoosh-2.7.4-9.el8.noarch                  144/149 
  Verifying        : ImageMagick-6.9.10.86-1.el8.x86_64                 145/149 
  Verifying        : ImageMagick-libs-6.9.10.86-1.el8.x86_64            146/149 
  Verifying        : Lmod-8.2.7-1.el8.x86_64                            147/149 
  Verifying        : libraqm-0.7.0-4.el8.x86_64                         148/149 
  Verifying        : lua-term-0.07-9.el8.x86_64                         149/149 

Installed:
  ImageMagick-6.9.10.86-1.el8.x86_64                                            
  ImageMagick-libs-6.9.10.86-1.el8.x86_64                                       
  LibRaw-0.19.5-3.el8.x86_64                                                    
  Lmod-8.2.7-1.el8.x86_64                                                       
  OpenEXR-libs-2.2.0-12.el8.x86_64                                              
  asciidoc-8.6.10-0.5.20180627gitf7c2274.el8.noarch                             
  audit-libs-devel-3.0-0.17.20191104git1c2f876.el8.x86_64                       
  binutils-devel-2.30-108.el8_5.1.x86_64                                        
  clang-12.0.1-4.module_el8.4.0+2600+cefb5d4c.x86_64                            
  clang-libs-12.0.1-4.module_el8.4.0+2600+cefb5d4c.x86_64                       
  clang-resource-filesystem-12.0.1-4.module_el8.4.0+2600+cefb5d4c.x86_64        
  compiler-rt-12.0.1-1.module_el8.5.0+2598+6a7729ff.x86_64                      
  ctags-5.8-22.el8.x86_64                                                       
  docbook-dtds-1.0-69.el8.noarch                                                
  docbook-style-xsl-1.79.2-9.el8.noarch                                         
  fftw-libs-double-3.3.5-11.el8.x86_64                                          
  fontawesome-fonts-4.7.0-4.el8.noarch                                          
  fontawesome-fonts-web-4.7.0-4.el8.noarch                                      
  gcc-c++-8.5.0-4.el8_5.alma.x86_64                                             
  google-roboto-slab-fonts-1.100263-0.7.20150923git.el8.noarch                  
  graphviz-2.40.1-43.el8.x86_64                                                 
  ilmbase-2.2.0-13.el8.x86_64                                                   
  java-1.8.0-openjdk-devel-1:1.8.0.322.b06-2.el8_5.x86_64                       
  lato-fonts-2.015-5.el8.noarch                                                 
  libXaw-1.0.13-10.el8.x86_64                                                   
  libbabeltrace-devel-1.5.4-3.el8.x86_64                                        
  libbpf-devel-0.4.0-1.el8.x86_64                                               
  libcap-devel-2.26-5.el8.x86_64                                                
  libcap-ng-devel-0.7.11-1.el8.x86_64                                           
  libmnl-devel-1.0.4-6.el8.x86_64                                               
  libomp-12.0.1-1.module_el8.5.0+2598+6a7729ff.x86_64                           
  libomp-devel-12.0.1-1.module_el8.5.0+2598+6a7729ff.x86_64                     
  libraqm-0.7.0-4.el8.x86_64                                                    
  libstdc++-devel-8.5.0-4.el8_5.alma.x86_64                                     
  libuuid-devel-2.32.1-28.el8.x86_64                                            
  libwmf-lite-0.2.9-8.el8_0.x86_64                                              
  llvm-12.0.1-2.module_el8.5.0+2598+6a7729ff.x86_64                             
  lua-filesystem-1.6.3-7.el8.x86_64                                             
  lua-posix-33.3.1-9.el8.x86_64                                                 
  lua-term-0.07-9.el8.x86_64                                                    
  ncurses-c++-libs-6.1-9.20180224.el8.x86_64                                    
  ncurses-devel-6.1-9.20180224.el8.x86_64                                       
  newt-devel-0.52.20-11.el8.x86_64                                              
  nss-tools-3.67.0-7.el8_5.x86_64                                               
  pciutils-devel-3.7.0-1.el8.x86_64                                             
  perl-4:5.26.3-420.el8.x86_64                                                  
  perl-Algorithm-Diff-1.1903-9.el8.noarch                                       
  perl-Archive-Tar-2.30-1.el8.noarch                                            
  perl-Archive-Zip-1.60-3.el8.noarch                                            
  perl-Attribute-Handlers-0.99-420.el8.noarch                                   
  perl-B-Debug-1.26-2.el8.noarch                                                
  perl-CPAN-2.18-397.el8.noarch                                                 
  perl-Compress-Bzip2-2.26-6.el8.x86_64                                         
  perl-Compress-Raw-Bzip2-2.081-1.el8.x86_64                                    
  perl-Compress-Raw-Zlib-2.081-1.el8.x86_64                                     
  perl-Config-Perl-V-0.30-1.el8.noarch                                          
  perl-DB_File-1.842-1.el8.x86_64                                               
  perl-Data-OptList-0.110-6.el8.noarch                                          
  perl-Data-Section-0.200007-3.el8.noarch                                       
  perl-Devel-PPPort-3.36-5.el8.x86_64                                           
  perl-Devel-Peek-1.26-420.el8.x86_64                                           
  perl-Devel-SelfStubber-1.06-420.el8.noarch                                    
  perl-Devel-Size-0.81-2.el8.x86_64                                             
  perl-Digest-SHA-1:6.02-1.el8.x86_64                                           
  perl-Encode-devel-4:2.97-3.el8.x86_64                                         
  perl-Env-1.04-395.el8.noarch                                                  
  perl-ExtUtils-CBuilder-1:0.280230-2.el8.noarch                                
  perl-ExtUtils-Embed-1.34-420.el8.noarch                                       
  perl-ExtUtils-MM-Utils-1:7.34-1.el8.noarch                                    
  perl-ExtUtils-Miniperl-1.06-420.el8.noarch                                    
  perl-File-Fetch-0.56-2.el8.noarch                                             
  perl-File-HomeDir-1.002-4.el8.noarch                                          
  perl-File-Which-1.22-2.el8.noarch                                             
  perl-Filter-2:1.58-2.el8.x86_64                                               
  perl-Filter-Simple-0.94-2.el8.noarch                                          
  perl-IO-Compress-2.081-1.el8.noarch                                           
  perl-IO-Zlib-1:1.10-420.el8.noarch                                            
  perl-IPC-Cmd-2:1.02-1.el8.noarch                                              
  perl-IPC-SysV-2.07-397.el8.x86_64                                             
  perl-IPC-System-Simple-1.25-17.el8.noarch                                     
  perl-Locale-Codes-3.57-1.el8.noarch                                           
  perl-Locale-Maketext-1.28-396.el8.noarch                                      
  perl-Locale-Maketext-Simple-1:0.21-420.el8.noarch                             
  perl-MRO-Compat-0.13-4.el8.noarch                                             
  perl-Math-BigInt-FastCalc-0.500.600-6.el8.x86_64                              
  perl-Math-BigRat-0.2614-1.el8.noarch                                          
  perl-Memoize-1.03-420.el8.noarch                                              
  perl-Module-Build-2:0.42.24-5.el8.noarch                                      
  perl-Module-CoreList-1:5.20181130-1.el8.noarch                                
  perl-Module-CoreList-tools-1:5.20181130-1.el8.noarch                          
  perl-Module-Load-1:0.32-395.el8.noarch                                        
  perl-Module-Load-Conditional-0.68-395.el8.noarch                              
  perl-Module-Loaded-1:0.08-420.el8.noarch                                      
  perl-Module-Metadata-1.000033-395.el8.noarch                                  
  perl-Net-Ping-2.55-420.el8.noarch                                             
  perl-Package-Generator-1.106-11.el8.noarch                                    
  perl-Params-Check-1:0.38-395.el8.noarch                                       
  perl-Params-Util-1.07-22.el8.x86_64                                           
  perl-Perl-OSType-1.010-396.el8.noarch                                         
  perl-PerlIO-via-QuotedPrint-0.08-395.el8.noarch                               
  perl-Pod-Checker-4:1.73-395.el8.noarch                                        
  perl-Pod-Html-1.22.02-420.el8.noarch                                          
  perl-Pod-Parser-1.63-396.el8.noarch                                           
  perl-SelfLoader-1.23-420.el8.noarch                                           
  perl-Software-License-0.103013-2.el8.noarch                                   
  perl-Sub-Exporter-0.987-15.el8.noarch                                         
  perl-Sub-Install-0.928-14.el8.noarch                                          
  perl-Sys-Syslog-0.35-397.el8.x86_64                                           
  perl-Test-1.30-420.el8.noarch                                                 
  perl-Test-Simple-1:1.302135-1.el8.noarch                                      
  perl-Text-Balanced-2.03-395.el8.noarch                                        
  perl-Text-Diff-1.45-2.el8.noarch                                              
  perl-Text-Glob-0.11-4.el8.noarch                                              
  perl-Text-Template-1.51-1.el8.noarch                                          
  perl-Thread-Queue-3.13-1.el8.noarch                                           
  perl-Time-Piece-1.31-420.el8.x86_64                                           
  perl-Unicode-Collate-1.25-2.el8.x86_64                                        
  perl-autodie-2.29-396.el8.noarch                                              
  perl-bignum-0.49-2.el8.noarch                                                 
  perl-encoding-4:2.22-3.el8.x86_64                                             
  perl-experimental-0.019-2.el8.noarch                                          
  perl-inc-latest-2:0.500-9.el8.noarch                                          
  perl-libnetcfg-4:5.26.3-420.el8.noarch                                        
  perl-local-lib-2.000024-2.el8.noarch                                          
  perl-open-1.11-420.el8.noarch                                                 
  perl-perlfaq-5.20180605-1.el8.noarch                                          
  perl-utils-5.26.3-420.el8.noarch                                              
  pesign-0.112-25.el8.alma.x86_64                                               
  python-sphinx-locale-1:1.7.6-2.el8.noarch                                     
  python3-babel-2.5.1-7.el8.noarch                                              
  python3-imagesize-1.0.0-2.el8.noarch                                          
  python3-jinja2-2.10.1-3.el8.noarch                                            
  python3-markupsafe-0.23-19.el8.x86_64                                         
  python3-mock-2.0.0-11.el8.noarch                                              
  python3-packaging-16.8-9.el8.noarch                                           
  python3-pygments-2.2.0-22.module_el8.5.0+2569+5c5719bc.noarch                 
  python3-snowballstemmer-1.2.1-6.el8.noarch                                    
  python3-sphinx-1:1.7.6-2.el8.noarch                                           
  python3-sphinx-theme-alabaster-0.7.9-7.el8.noarch                             
  python3-sphinx_rtd_theme-0.3.1-3.el8.noarch                                   
  python3-sphinxcontrib-websupport-1.0.1-10.20180316git.el8.noarch              
  python3-sqlalchemy-1.3.2-2.module_el8.5.0+2569+5c5719bc.x86_64                
  python3-whoosh-2.7.4-9.el8.noarch                                             
  sgml-common-0.6.3-50.el8.noarch                                               
  slang-devel-2.3.2-3.el8.x86_64                                                
  source-highlight-3.1.8-17.el8.x86_64                                          
  tcl-1:8.6.8-2.el8.x86_64                                                      
  xmlto-0.0.28-7.el8.x86_64                                                     
  xorg-x11-fonts-ISO8859-1-100dpi-7.5-19.el8.noarch                             

Complete!

Prepare the source which this time was successful:

[mr_halfword@haswell-alma SPECS]$ rpmbuild -bp kernel.spec
Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.F0cuYY
+ umask 022
+ cd /home/mr_halfword/rpmbuild/BUILD
+ patch_command='patch -p1 -F1 -s'
+ cd /home/mr_halfword/rpmbuild/BUILD
+ rm -rf kernel-4.18.0-348.20.1.el8_5
+ /usr/bin/mkdir -p kernel-4.18.0-348.20.1.el8_5
+ cd kernel-4.18.0-348.20.1.el8_5
+ /usr/bin/xz -dc /home/mr_halfword/rpmbuild/SOURCES/linux-4.18.0-348.20.1.el8_5.tar.xz
+ /usr/bin/tar -xof -
+ STATUS=0
+ '[' 0 -ne 0 ']'
+ /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w .
+ cp -v /home/mr_halfword/rpmbuild/SOURCES/almalinux.pem linux-4.18.0-348.20.1.el8_5/certs/rhel.pem
'/home/mr_halfword/rpmbuild/SOURCES/almalinux.pem' -> 'linux-4.18.0-348.20.1.el8_5/certs/rhel.pem'
+ mv linux-4.18.0-348.20.1.el8_5 linux-4.18.0-348.20.1.el8.x86_64
+ cd linux-4.18.0-348.20.1.el8.x86_64
+ ApplyOptionalPatch debrand-single-cpu.patch
+ local patch=debrand-single-cpu.patch
+ shift
+ '[' '!' -f /home/mr_halfword/rpmbuild/SOURCES/debrand-single-cpu.patch ']'
++ wc -l /home/mr_halfword/rpmbuild/SOURCES/debrand-single-cpu.patch
++ awk '{print $1}'
+ local C=11
+ '[' 11 -gt 9 ']'
+ ApplyPatch debrand-single-cpu.patch
+ local patch=debrand-single-cpu.patch
+ shift
+ '[' '!' -f /home/mr_halfword/rpmbuild/SOURCES/debrand-single-cpu.patch ']'
Patch1000: debrand-single-cpu.patch
+ case "$patch" in
+ patch -p1 -F1 -s
+ ApplyOptionalPatch debrand-rh_taint.patch
+ local patch=debrand-rh_taint.patch
+ shift
+ '[' '!' -f /home/mr_halfword/rpmbuild/SOURCES/debrand-rh_taint.patch ']'
++ awk '{print $1}'
++ wc -l /home/mr_halfword/rpmbuild/SOURCES/debrand-rh_taint.patch
+ local C=81
+ '[' 81 -gt 9 ']'
+ ApplyPatch debrand-rh_taint.patch
+ local patch=debrand-rh_taint.patch
+ shift
+ '[' '!' -f /home/mr_halfword/rpmbuild/SOURCES/debrand-rh_taint.patch ']'
Patch1001: debrand-rh_taint.patch
+ case "$patch" in
+ patch -p1 -F1 -s
+ ApplyOptionalPatch debrand-rh-i686-cpu.patch
+ local patch=debrand-rh-i686-cpu.patch
+ shift
+ '[' '!' -f /home/mr_halfword/rpmbuild/SOURCES/debrand-rh-i686-cpu.patch ']'
++ wc -l /home/mr_halfword/rpmbuild/SOURCES/debrand-rh-i686-cpu.patch
++ awk '{print $1}'
+ local C=11
+ '[' 11 -gt 9 ']'
+ ApplyPatch debrand-rh-i686-cpu.patch
+ local patch=debrand-rh-i686-cpu.patch
+ shift
+ '[' '!' -f /home/mr_halfword/rpmbuild/SOURCES/debrand-rh-i686-cpu.patch ']'
Patch1002: debrand-rh-i686-cpu.patch
+ case "$patch" in
+ patch -p1 -F1 -s
+ ApplyOptionalPatch linux-kernel-test.patch
+ local patch=linux-kernel-test.patch
+ shift
+ '[' '!' -f /home/mr_halfword/rpmbuild/SOURCES/linux-kernel-test.patch ']'
++ wc -l /home/mr_halfword/rpmbuild/SOURCES/linux-kernel-test.patch
++ awk '{print $1}'
+ local C=0
+ '[' 0 -gt 9 ']'
+ chmod +x scripts/checkpatch.pl
+ mv COPYING COPYING-4.18.0
+ touch .scmversion
+ pathfix.py -i /usr/libexec/platform-python -p -n scripts/show_delta scripts/diffconfig scripts/bloat-o-meter tools/perf/tests/attr.py tools/perf/scripts/python/stat-cpi.py tools/perf/scripts/python/sched-migration.py Documentation
scripts/show_delta: updating
scripts/diffconfig: updating
scripts/bloat-o-meter: updating
tools/perf/tests/attr.py: no change
tools/perf/scripts/python/stat-cpi.py: no change
tools/perf/scripts/python/sched-migration.py: no change
recursedown('Documentation')
Documentation/conf.py: no change
recursedown('Documentation/ABI')
recursedown('Documentation/ABI/RHEL')
recursedown('Documentation/ABI/obsolete')
recursedown('Documentation/ABI/removed')
recursedown('Documentation/ABI/stable')
recursedown('Documentation/ABI/testing')
recursedown('Documentation/EDID')
recursedown('Documentation/PCI')
recursedown('Documentation/PCI/endpoint')
recursedown('Documentation/PCI/endpoint/function')
recursedown('Documentation/PCI/endpoint/function/binding')
recursedown('Documentation/RCU')
recursedown('Documentation/RCU/Design')
recursedown('Documentation/RCU/Design/Data-Structures')
recursedown('Documentation/RCU/Design/Expedited-Grace-Periods')
recursedown('Documentation/RCU/Design/Memory-Ordering')
recursedown('Documentation/RCU/Design/Requirements')
recursedown('Documentation/accelerators')
recursedown('Documentation/accounting')
recursedown('Documentation/acpi')
recursedown('Documentation/acpi/apei')
recursedown('Documentation/acpi/dsd')
recursedown('Documentation/admin-guide')
Documentation/admin-guide/conf.py: no change
recursedown('Documentation/admin-guide/LSM')
recursedown('Documentation/admin-guide/acpi')
recursedown('Documentation/admin-guide/device-mapper')
recursedown('Documentation/admin-guide/hw-vuln')
recursedown('Documentation/admin-guide/kdump')
recursedown('Documentation/admin-guide/mm')
recursedown('Documentation/admin-guide/pm')
recursedown('Documentation/aoe')
recursedown('Documentation/arm')
recursedown('Documentation/arm/Marvell')
recursedown('Documentation/arm/Microchip')
recursedown('Documentation/arm/OMAP')
recursedown('Documentation/arm/SA1100')
recursedown('Documentation/arm/SH-Mobile')
recursedown('Documentation/arm/SPEAr')
recursedown('Documentation/arm/Samsung')
recursedown('Documentation/arm/Samsung-S3C24XX')
recursedown('Documentation/arm/VFP')
recursedown('Documentation/arm/keystone')
recursedown('Documentation/arm/nwfpe')
recursedown('Documentation/arm/pxa')
recursedown('Documentation/arm/sti')
recursedown('Documentation/arm/stm32')
recursedown('Documentation/arm/sunxi')
recursedown('Documentation/arm64')
recursedown('Documentation/auxdisplay')
recursedown('Documentation/backlight')
recursedown('Documentation/block')
recursedown('Documentation/blockdev')
recursedown('Documentation/blockdev/drbd')
recursedown('Documentation/bpf')
recursedown('Documentation/bus-devices')
recursedown('Documentation/cdrom')
recursedown('Documentation/cgroup-v1')
recursedown('Documentation/cma')
recursedown('Documentation/connector')
recursedown('Documentation/console')
recursedown('Documentation/core-api')
Documentation/core-api/conf.py: no change
recursedown('Documentation/cpu-freq')
recursedown('Documentation/cpuidle')
recursedown('Documentation/crypto')
Documentation/crypto/conf.py: no change
recursedown('Documentation/dev-tools')
Documentation/dev-tools/conf.py: no change
recursedown('Documentation/dev-tools/kunit')
recursedown('Documentation/dev-tools/kunit/api')
recursedown('Documentation/devicetree')
recursedown('Documentation/devicetree/bindings')
recursedown('Documentation/devicetree/bindings/arc')
recursedown('Documentation/devicetree/bindings/arm')
recursedown('Documentation/devicetree/bindings/arm/altera')
recursedown('Documentation/devicetree/bindings/arm/amlogic')
recursedown('Documentation/devicetree/bindings/arm/apm')
recursedown('Documentation/devicetree/bindings/arm/bcm')
recursedown('Documentation/devicetree/bindings/arm/calxeda')
recursedown('Documentation/devicetree/bindings/arm/cpu-enable-method')
recursedown('Documentation/devicetree/bindings/arm/firmware')
recursedown('Documentation/devicetree/bindings/arm/freescale')
recursedown('Documentation/devicetree/bindings/arm/hisilicon')
recursedown('Documentation/devicetree/bindings/arm/keystone')
recursedown('Documentation/devicetree/bindings/arm/marvell')
recursedown('Documentation/devicetree/bindings/arm/mediatek')
recursedown('Documentation/devicetree/bindings/arm/mrvl')
recursedown('Documentation/devicetree/bindings/arm/msm')
recursedown('Documentation/devicetree/bindings/arm/npcm')
recursedown('Documentation/devicetree/bindings/arm/nxp')
recursedown('Documentation/devicetree/bindings/arm/omap')
recursedown('Documentation/devicetree/bindings/arm/rockchip')
recursedown('Documentation/devicetree/bindings/arm/samsung')
recursedown('Documentation/devicetree/bindings/arm/stm32')
recursedown('Documentation/devicetree/bindings/arm/sunxi')
recursedown('Documentation/devicetree/bindings/arm/tegra')
recursedown('Documentation/devicetree/bindings/arm/uniphier')
recursedown('Documentation/devicetree/bindings/arm/ux500')
recursedown('Documentation/devicetree/bindings/arm/vt8500')
recursedown('Documentation/devicetree/bindings/ata')
recursedown('Documentation/devicetree/bindings/auxdisplay')
recursedown('Documentation/devicetree/bindings/board')
recursedown('Documentation/devicetree/bindings/bus')
recursedown('Documentation/devicetree/bindings/c6x')
recursedown('Documentation/devicetree/bindings/clock')
recursedown('Documentation/devicetree/bindings/clock/st')
recursedown('Documentation/devicetree/bindings/clock/ti')
recursedown('Documentation/devicetree/bindings/clock/ti/davinci')
recursedown('Documentation/devicetree/bindings/connector')
recursedown('Documentation/devicetree/bindings/cpufreq')
recursedown('Documentation/devicetree/bindings/crypto')
recursedown('Documentation/devicetree/bindings/devfreq')
recursedown('Documentation/devicetree/bindings/devfreq/event')
recursedown('Documentation/devicetree/bindings/display')
recursedown('Documentation/devicetree/bindings/display/armada')
recursedown('Documentation/devicetree/bindings/display/atmel')
recursedown('Documentation/devicetree/bindings/display/bridge')
recursedown('Documentation/devicetree/bindings/display/connector')
recursedown('Documentation/devicetree/bindings/display/etnaviv')
recursedown('Documentation/devicetree/bindings/display/exynos')
recursedown('Documentation/devicetree/bindings/display/hisilicon')
recursedown('Documentation/devicetree/bindings/display/imx')
recursedown('Documentation/devicetree/bindings/display/mediatek')
recursedown('Documentation/devicetree/bindings/display/msm')
recursedown('Documentation/devicetree/bindings/display/panel')
recursedown('Documentation/devicetree/bindings/display/rockchip')
recursedown('Documentation/devicetree/bindings/display/sunxi')
recursedown('Documentation/devicetree/bindings/display/tegra')
recursedown('Documentation/devicetree/bindings/display/ti')
recursedown('Documentation/devicetree/bindings/display/tilcdc')
recursedown('Documentation/devicetree/bindings/dma')
recursedown('Documentation/devicetree/bindings/dma/xilinx')
recursedown('Documentation/devicetree/bindings/edac')
recursedown('Documentation/devicetree/bindings/eeprom')
recursedown('Documentation/devicetree/bindings/extcon')
recursedown('Documentation/devicetree/bindings/firmware')
recursedown('Documentation/devicetree/bindings/firmware/meson')
recursedown('Documentation/devicetree/bindings/fpga')
recursedown('Documentation/devicetree/bindings/fsi')
recursedown('Documentation/devicetree/bindings/fuse')
recursedown('Documentation/devicetree/bindings/goldfish')
recursedown('Documentation/devicetree/bindings/gpio')
recursedown('Documentation/devicetree/bindings/gpu')
recursedown('Documentation/devicetree/bindings/h8300')
recursedown('Documentation/devicetree/bindings/hsi')
recursedown('Documentation/devicetree/bindings/hwlock')
recursedown('Documentation/devicetree/bindings/hwmon')
recursedown('Documentation/devicetree/bindings/i2c')
recursedown('Documentation/devicetree/bindings/iio')
recursedown('Documentation/devicetree/bindings/iio/accel')
recursedown('Documentation/devicetree/bindings/iio/adc')
recursedown('Documentation/devicetree/bindings/iio/afe')
recursedown('Documentation/devicetree/bindings/iio/chemical')
recursedown('Documentation/devicetree/bindings/iio/counter')
recursedown('Documentation/devicetree/bindings/iio/dac')
recursedown('Documentation/devicetree/bindings/iio/frequency')
recursedown('Documentation/devicetree/bindings/iio/gyroscope')
recursedown('Documentation/devicetree/bindings/iio/health')
recursedown('Documentation/devicetree/bindings/iio/humidity')
recursedown('Documentation/devicetree/bindings/iio/imu')
recursedown('Documentation/devicetree/bindings/iio/light')
recursedown('Documentation/devicetree/bindings/iio/magnetometer')
recursedown('Documentation/devicetree/bindings/iio/multiplexer')
recursedown('Documentation/devicetree/bindings/iio/potentiometer')
recursedown('Documentation/devicetree/bindings/iio/potentiostat')
recursedown('Documentation/devicetree/bindings/iio/pressure')
recursedown('Documentation/devicetree/bindings/iio/proximity')
recursedown('Documentation/devicetree/bindings/iio/temperature')
recursedown('Documentation/devicetree/bindings/iio/timer')
recursedown('Documentation/devicetree/bindings/infiniband')
recursedown('Documentation/devicetree/bindings/input')
recursedown('Documentation/devicetree/bindings/input/rmi4')
recursedown('Documentation/devicetree/bindings/input/touchscreen')
recursedown('Documentation/devicetree/bindings/interrupt-controller')
recursedown('Documentation/devicetree/bindings/iommu')
recursedown('Documentation/devicetree/bindings/ipmi')
recursedown('Documentation/devicetree/bindings/leds')
recursedown('Documentation/devicetree/bindings/leds/backlight')
recursedown('Documentation/devicetree/bindings/leds/irled')
recursedown('Documentation/devicetree/bindings/lpddr2')
recursedown('Documentation/devicetree/bindings/mailbox')
recursedown('Documentation/devicetree/bindings/media')
recursedown('Documentation/devicetree/bindings/media/i2c')
recursedown('Documentation/devicetree/bindings/media/spi')
recursedown('Documentation/devicetree/bindings/media/xilinx')
recursedown('Documentation/devicetree/bindings/memory-controllers')
recursedown('Documentation/devicetree/bindings/memory-controllers/fsl')
recursedown('Documentation/devicetree/bindings/memory-controllers/ti')
recursedown('Documentation/devicetree/bindings/mfd')
recursedown('Documentation/devicetree/bindings/mips')
recursedown('Documentation/devicetree/bindings/mips/brcm')
recursedown('Documentation/devicetree/bindings/mips/cavium')
recursedown('Documentation/devicetree/bindings/mips/img')
recursedown('Documentation/devicetree/bindings/mips/lantiq')
recursedown('Documentation/devicetree/bindings/mips/pic32')
recursedown('Documentation/devicetree/bindings/misc')
recursedown('Documentation/devicetree/bindings/mmc')
recursedown('Documentation/devicetree/bindings/mtd')
recursedown('Documentation/devicetree/bindings/mtd/partitions')
recursedown('Documentation/devicetree/bindings/mux')
recursedown('Documentation/devicetree/bindings/nds32')
recursedown('Documentation/devicetree/bindings/net')
recursedown('Documentation/devicetree/bindings/net/can')
recursedown('Documentation/devicetree/bindings/net/dsa')
recursedown('Documentation/devicetree/bindings/net/ieee802154')
recursedown('Documentation/devicetree/bindings/net/nfc')
recursedown('Documentation/devicetree/bindings/net/wireless')
recursedown('Documentation/devicetree/bindings/nios2')
recursedown('Documentation/devicetree/bindings/nvmem')
recursedown('Documentation/devicetree/bindings/openrisc')
recursedown('Documentation/devicetree/bindings/openrisc/opencores')
recursedown('Documentation/devicetree/bindings/opp')
recursedown('Documentation/devicetree/bindings/pci')
recursedown('Documentation/devicetree/bindings/perf')
recursedown('Documentation/devicetree/bindings/phy')
recursedown('Documentation/devicetree/bindings/pinctrl')
recursedown('Documentation/devicetree/bindings/pmem')
recursedown('Documentation/devicetree/bindings/power')
recursedown('Documentation/devicetree/bindings/power/reset')
recursedown('Documentation/devicetree/bindings/power/supply')
recursedown('Documentation/devicetree/bindings/power/supply/ab8500')
recursedown('Documentation/devicetree/bindings/powerpc')
recursedown('Documentation/devicetree/bindings/powerpc/4xx')
recursedown('Documentation/devicetree/bindings/powerpc/fsl')
recursedown('Documentation/devicetree/bindings/powerpc/nintendo')
recursedown('Documentation/devicetree/bindings/powerpc/opal')
recursedown('Documentation/devicetree/bindings/pps')
recursedown('Documentation/devicetree/bindings/ptp')
recursedown('Documentation/devicetree/bindings/pwm')
recursedown('Documentation/devicetree/bindings/regmap')
recursedown('Documentation/devicetree/bindings/regulator')
recursedown('Documentation/devicetree/bindings/remoteproc')
recursedown('Documentation/devicetree/bindings/reserved-memory')
recursedown('Documentation/devicetree/bindings/reset')
recursedown('Documentation/devicetree/bindings/riscv')
recursedown('Documentation/devicetree/bindings/rng')
recursedown('Documentation/devicetree/bindings/rtc')
recursedown('Documentation/devicetree/bindings/scsi')
recursedown('Documentation/devicetree/bindings/security')
recursedown('Documentation/devicetree/bindings/security/tpm')
recursedown('Documentation/devicetree/bindings/serial')
recursedown('Documentation/devicetree/bindings/serio')
recursedown('Documentation/devicetree/bindings/siox')
recursedown('Documentation/devicetree/bindings/slimbus')
recursedown('Documentation/devicetree/bindings/soc')
recursedown('Documentation/devicetree/bindings/soc/bcm')
recursedown('Documentation/devicetree/bindings/soc/dove')
recursedown('Documentation/devicetree/bindings/soc/fsl')
recursedown('Documentation/devicetree/bindings/soc/fsl/cpm_qe')
recursedown('Documentation/devicetree/bindings/soc/fsl/cpm_qe/cpm')
recursedown('Documentation/devicetree/bindings/soc/fsl/cpm_qe/qe')
recursedown('Documentation/devicetree/bindings/soc/mediatek')
recursedown('Documentation/devicetree/bindings/soc/qcom')
recursedown('Documentation/devicetree/bindings/soc/rockchip')
recursedown('Documentation/devicetree/bindings/soc/ti')
recursedown('Documentation/devicetree/bindings/soc/xilinx')
recursedown('Documentation/devicetree/bindings/soc/zte')
recursedown('Documentation/devicetree/bindings/sound')
recursedown('Documentation/devicetree/bindings/soundwire')
recursedown('Documentation/devicetree/bindings/spi')
recursedown('Documentation/devicetree/bindings/spmi')
recursedown('Documentation/devicetree/bindings/sram')
recursedown('Documentation/devicetree/bindings/staging')
recursedown('Documentation/devicetree/bindings/staging/iio')
recursedown('Documentation/devicetree/bindings/staging/iio/adc')
recursedown('Documentation/devicetree/bindings/thermal')
recursedown('Documentation/devicetree/bindings/timer')
recursedown('Documentation/devicetree/bindings/ufs')
recursedown('Documentation/devicetree/bindings/usb')
recursedown('Documentation/devicetree/bindings/virtio')
recursedown('Documentation/devicetree/bindings/w1')
recursedown('Documentation/devicetree/bindings/watchdog')
recursedown('Documentation/devicetree/bindings/x86')
recursedown('Documentation/devicetree/bindings/xillybus')
recursedown('Documentation/doc-guide')
Documentation/doc-guide/conf.py: no change
recursedown('Documentation/driver-api')
Documentation/driver-api/conf.py: no change
recursedown('Documentation/driver-api/80211')
Documentation/driver-api/80211/conf.py: no change
recursedown('Documentation/driver-api/dmaengine')
recursedown('Documentation/driver-api/firmware')
recursedown('Documentation/driver-api/fpga')
recursedown('Documentation/driver-api/gpio')
recursedown('Documentation/driver-api/iio')
recursedown('Documentation/driver-api/mei')
recursedown('Documentation/driver-api/pci')
recursedown('Documentation/driver-api/pldmfw')
recursedown('Documentation/driver-api/pm')
Documentation/driver-api/pm/conf.py: no change
recursedown('Documentation/driver-api/soundwire')
recursedown('Documentation/driver-api/usb')
recursedown('Documentation/driver-model')
recursedown('Documentation/early-userspace')
recursedown('Documentation/extcon')
recursedown('Documentation/fault-injection')
recursedown('Documentation/fb')
recursedown('Documentation/features')
recursedown('Documentation/features/core')
recursedown('Documentation/features/core/cBPF-JIT')
recursedown('Documentation/features/core/eBPF-JIT')
recursedown('Documentation/features/core/generic-idle-thread')
recursedown('Documentation/features/core/jump-labels')
recursedown('Documentation/features/core/tracehook')
recursedown('Documentation/features/debug')
recursedown('Documentation/features/debug/KASAN')
recursedown('Documentation/features/debug/gcov-profile-all')
recursedown('Documentation/features/debug/kgdb')
recursedown('Documentation/features/debug/kprobes')
recursedown('Documentation/features/debug/kprobes-on-ftrace')
recursedown('Documentation/features/debug/kretprobes')
recursedown('Documentation/features/debug/optprobes')
recursedown('Documentation/features/debug/stackprotector')
recursedown('Documentation/features/debug/uprobes')
recursedown('Documentation/features/debug/user-ret-profiler')
recursedown('Documentation/features/io')
recursedown('Documentation/features/io/dma-contiguous')
recursedown('Documentation/features/io/sg-chain')
recursedown('Documentation/features/locking')
recursedown('Documentation/features/locking/cmpxchg-local')
recursedown('Documentation/features/locking/lockdep')
recursedown('Documentation/features/locking/queued-rwlocks')
recursedown('Documentation/features/locking/queued-spinlocks')
recursedown('Documentation/features/locking/rwsem-optimized')
recursedown('Documentation/features/perf')
recursedown('Documentation/features/perf/kprobes-event')
recursedown('Documentation/features/perf/perf-regs')
recursedown('Documentation/features/perf/perf-stackdump')
recursedown('Documentation/features/sched')
recursedown('Documentation/features/sched/membarrier-sync-core')
recursedown('Documentation/features/sched/numa-balancing')
recursedown('Documentation/features/scripts')
recursedown('Documentation/features/seccomp')
recursedown('Documentation/features/seccomp/seccomp-filter')
recursedown('Documentation/features/time')
recursedown('Documentation/features/time/arch-tick-broadcast')
recursedown('Documentation/features/time/clockevents')
recursedown('Documentation/features/time/context-tracking')
recursedown('Documentation/features/time/irq-time-acct')
recursedown('Documentation/features/time/modern-timekeeping')
recursedown('Documentation/features/time/virt-cpuacct')
recursedown('Documentation/features/vm')
recursedown('Documentation/features/vm/ELF-ASLR')
recursedown('Documentation/features/vm/PG_uncached')
recursedown('Documentation/features/vm/THP')
recursedown('Documentation/features/vm/TLB')
recursedown('Documentation/features/vm/huge-vmap')
recursedown('Documentation/features/vm/ioremap_prot')
recursedown('Documentation/features/vm/pte_special')
recursedown('Documentation/filesystems')
Documentation/filesystems/conf.py: no change
recursedown('Documentation/filesystems/caching')
recursedown('Documentation/filesystems/cifs')
recursedown('Documentation/filesystems/configfs')
recursedown('Documentation/filesystems/nfs')
recursedown('Documentation/filesystems/pohmelfs')
recursedown('Documentation/firmware_class')
recursedown('Documentation/fmc')
recursedown('Documentation/fpga')
recursedown('Documentation/gpio')
recursedown('Documentation/gpu')
Documentation/gpu/conf.py: no change
recursedown('Documentation/gpu/bridge')
recursedown('Documentation/hid')
recursedown('Documentation/hwmon')
recursedown('Documentation/i2c')
recursedown('Documentation/i2c/busses')
recursedown('Documentation/i2c/muxes')
recursedown('Documentation/ia64')
recursedown('Documentation/ide')
recursedown('Documentation/iio')
recursedown('Documentation/infiniband')
recursedown('Documentation/input')
Documentation/input/conf.py: no change
recursedown('Documentation/input/devices')
recursedown('Documentation/input/joydev')
recursedown('Documentation/ioctl')
recursedown('Documentation/isdn')
recursedown('Documentation/kbuild')
recursedown('Documentation/kernel-hacking')
Documentation/kernel-hacking/conf.py: no change
recursedown('Documentation/laptops')
recursedown('Documentation/leds')
recursedown('Documentation/lightnvm')
recursedown('Documentation/livepatch')
recursedown('Documentation/locking')
recursedown('Documentation/m68k')
recursedown('Documentation/maintainer')
Documentation/maintainer/conf.py: no change
recursedown('Documentation/md')
recursedown('Documentation/media')
Documentation/media/conf.py: no change
Documentation/media/conf_nitpick.py: no change
recursedown('Documentation/media/cec-drivers')
recursedown('Documentation/media/dvb-drivers')
recursedown('Documentation/media/kapi')
recursedown('Documentation/media/uapi')
recursedown('Documentation/media/uapi/cec')
recursedown('Documentation/media/uapi/dvb')
recursedown('Documentation/media/uapi/mediactl')
recursedown('Documentation/media/uapi/rc')
recursedown('Documentation/media/uapi/v4l')
recursedown('Documentation/media/v4l-drivers')
recursedown('Documentation/memory-devices')
recursedown('Documentation/mic')
recursedown('Documentation/mips')
recursedown('Documentation/misc-devices')
recursedown('Documentation/mmc')
recursedown('Documentation/mtd')
recursedown('Documentation/mtd/nand')
recursedown('Documentation/namespaces')
recursedown('Documentation/netlabel')
recursedown('Documentation/networking')
Documentation/networking/conf.py: no change
recursedown('Documentation/networking/caif')
recursedown('Documentation/networking/device_drivers')
recursedown('Documentation/networking/device_drivers/ethernet')
recursedown('Documentation/networking/device_drivers/ethernet/amazon')
recursedown('Documentation/networking/device_drivers/ethernet/intel')
recursedown('Documentation/networking/device_drivers/google')
recursedown('Documentation/networking/device_drivers/netronome')
recursedown('Documentation/networking/device_drivers/pensando')
recursedown('Documentation/networking/devlink')
recursedown('Documentation/networking/dpaa2')
recursedown('Documentation/networking/dsa')
recursedown('Documentation/networking/mac80211_hwsim')
recursedown('Documentation/nfc')
recursedown('Documentation/nios2')
recursedown('Documentation/nvdimm')
recursedown('Documentation/nvmem')
recursedown('Documentation/openrisc')
recursedown('Documentation/parisc')
recursedown('Documentation/pcmcia')
recursedown('Documentation/perf')
recursedown('Documentation/phy')
recursedown('Documentation/platform')
recursedown('Documentation/power')
recursedown('Documentation/power/powercap')
recursedown('Documentation/power/regulator')
recursedown('Documentation/powerpc')
recursedown('Documentation/pps')
recursedown('Documentation/process')
Documentation/process/conf.py: no change
recursedown('Documentation/pti')
recursedown('Documentation/ptp')
recursedown('Documentation/rapidio')
recursedown('Documentation/riscv')
recursedown('Documentation/s390')
recursedown('Documentation/scheduler')
recursedown('Documentation/scsi')
recursedown('Documentation/scsi/scsi_transport_srp')
recursedown('Documentation/security')
recursedown('Documentation/security/keys')
recursedown('Documentation/security/tpm')
recursedown('Documentation/serial')
recursedown('Documentation/sh')
Documentation/sh/conf.py: no change
recursedown('Documentation/sound')
Documentation/sound/conf.py: no change
recursedown('Documentation/sound/cards')
recursedown('Documentation/sound/designs')
recursedown('Documentation/sound/hd-audio')
recursedown('Documentation/sound/kernel-api')
recursedown('Documentation/sound/soc')
recursedown('Documentation/sparc')
recursedown('Documentation/sparc/oradax')
recursedown('Documentation/sphinx')
Documentation/sphinx/cdomain.py: no change
Documentation/sphinx/kernel_include.py: updating
Documentation/sphinx/kerneldoc.py: no change
Documentation/sphinx/kfigure.py: no change
Documentation/sphinx/load_config.py: no change
Documentation/sphinx/rstFlatTable.py: updating
recursedown('Documentation/sphinx-static')
recursedown('Documentation/spi')
recursedown('Documentation/sysctl')
recursedown('Documentation/target')
Documentation/target/tcm_mod_builder.py: updating
recursedown('Documentation/thermal')
recursedown('Documentation/timers')
recursedown('Documentation/trace')
recursedown('Documentation/trace/postprocess')
Documentation/trace/postprocess/decode_msr.py: updating
recursedown('Documentation/translations')
recursedown('Documentation/translations/ja_JP')
recursedown('Documentation/translations/ko_KR')
recursedown('Documentation/translations/zh_CN')
recursedown('Documentation/translations/zh_CN/arm')
recursedown('Documentation/translations/zh_CN/arm64')
recursedown('Documentation/translations/zh_CN/filesystems')
recursedown('Documentation/translations/zh_CN/video4linux')
recursedown('Documentation/usb')
recursedown('Documentation/userspace-api')
Documentation/userspace-api/conf.py: no change
recursedown('Documentation/virt')
recursedown('Documentation/virt/kvm')
recursedown('Documentation/virt/kvm/arm')
recursedown('Documentation/virt/kvm/devices')
recursedown('Documentation/virt/uml')
recursedown('Documentation/vm')
Documentation/vm/conf.py: no change
recursedown('Documentation/w1')
recursedown('Documentation/w1/masters')
recursedown('Documentation/w1/slaves')
recursedown('Documentation/watchdog')
recursedown('Documentation/wimax')
recursedown('Documentation/x86')
Documentation/x86/conf.py: no change
recursedown('Documentation/x86/i386')
recursedown('Documentation/x86/x86_64')
recursedown('Documentation/xtensa')
+ '[' -L configs ']'
+ rm -f configs
+ mkdir configs
+ cd configs
+ cp /home/mr_halfword/rpmbuild/SOURCES/kernel-aarch64-debug.config /home/mr_halfword/rpmbuild/SOURCES/kernel-aarch64.config /home/mr_halfword/rpmbuild/SOURCES/kernel-ppc64le-debug.config /home/mr_halfword/rpmbuild/SOURCES/kernel-ppc64le.config /home/mr_halfword/rpmbuild/SOURCES/kernel-s390x-debug.config /home/mr_halfword/rpmbuild/SOURCES/kernel-s390x-zfcpdump.config /home/mr_halfword/rpmbuild/SOURCES/kernel-s390x.config /home/mr_halfword/rpmbuild/SOURCES/kernel-x86_64-debug.config /home/mr_halfword/rpmbuild/SOURCES/kernel-x86_64.config .
+ cp /home/mr_halfword/rpmbuild/SOURCES/generate_all_configs.sh .
+ VERSION=4.18.0
+ NAME=kernel
+ ./generate_all_configs.sh
+ for i in *.config
+ sed -i 's@CONFIG_SYSTEM_TRUSTED_KEYS=""@CONFIG_SYSTEM_TRUSTED_KEYS="certs/rhel.pem"@' kernel-4.18.0-aarch64-debug.config
+ for i in *.config
+ sed -i 's@CONFIG_SYSTEM_TRUSTED_KEYS=""@CONFIG_SYSTEM_TRUSTED_KEYS="certs/rhel.pem"@' kernel-4.18.0-aarch64.config
+ for i in *.config
+ sed -i 's@CONFIG_SYSTEM_TRUSTED_KEYS=""@CONFIG_SYSTEM_TRUSTED_KEYS="certs/rhel.pem"@' kernel-4.18.0-ppc64le-debug.config
+ for i in *.config
+ sed -i 's@CONFIG_SYSTEM_TRUSTED_KEYS=""@CONFIG_SYSTEM_TRUSTED_KEYS="certs/rhel.pem"@' kernel-4.18.0-ppc64le.config
+ for i in *.config
+ sed -i 's@CONFIG_SYSTEM_TRUSTED_KEYS=""@CONFIG_SYSTEM_TRUSTED_KEYS="certs/rhel.pem"@' kernel-4.18.0-s390x-debug.config
+ for i in *.config
+ sed -i 's@CONFIG_SYSTEM_TRUSTED_KEYS=""@CONFIG_SYSTEM_TRUSTED_KEYS="certs/rhel.pem"@' kernel-4.18.0-s390x-zfcpdump.config
+ for i in *.config
+ sed -i 's@CONFIG_SYSTEM_TRUSTED_KEYS=""@CONFIG_SYSTEM_TRUSTED_KEYS="certs/rhel.pem"@' kernel-4.18.0-s390x.config
+ for i in *.config
+ sed -i 's@CONFIG_SYSTEM_TRUSTED_KEYS=""@CONFIG_SYSTEM_TRUSTED_KEYS="certs/rhel.pem"@' kernel-4.18.0-x86_64-debug.config
+ for i in *.config
+ sed -i 's@CONFIG_SYSTEM_TRUSTED_KEYS=""@CONFIG_SYSTEM_TRUSTED_KEYS="certs/rhel.pem"@' kernel-4.18.0-x86_64.config
+ cp /home/mr_halfword/rpmbuild/SOURCES/process_configs.sh .
+ ./process_configs.sh -w -c kernel 4.18.0
Processing /home/mr_halfword/rpmbuild/BUILD/kernel-4.18.0-348.20.1.el8_5/linux-4.18.0-348.20.1.el8.x86_64/configs/kernel-4.18.0-aarch64-debug.config ... done
Processing /home/mr_halfword/rpmbuild/BUILD/kernel-4.18.0-348.20.1.el8_5/linux-4.18.0-348.20.1.el8.x86_64/configs/kernel-4.18.0-aarch64.config ... done
Processing /home/mr_halfword/rpmbuild/BUILD/kernel-4.18.0-348.20.1.el8_5/linux-4.18.0-348.20.1.el8.x86_64/configs/kernel-4.18.0-ppc64le-debug.config ... done
Processing /home/mr_halfword/rpmbuild/BUILD/kernel-4.18.0-348.20.1.el8_5/linux-4.18.0-348.20.1.el8.x86_64/configs/kernel-4.18.0-ppc64le.config ... done
Processing /home/mr_halfword/rpmbuild/BUILD/kernel-4.18.0-348.20.1.el8_5/linux-4.18.0-348.20.1.el8.x86_64/configs/kernel-4.18.0-s390x-debug.config ... done
Processing /home/mr_halfword/rpmbuild/BUILD/kernel-4.18.0-348.20.1.el8_5/linux-4.18.0-348.20.1.el8.x86_64/configs/kernel-4.18.0-s390x-zfcpdump.config ... done
Processing /home/mr_halfword/rpmbuild/BUILD/kernel-4.18.0-348.20.1.el8_5/linux-4.18.0-348.20.1.el8.x86_64/configs/kernel-4.18.0-s390x.config ... done
Processing /home/mr_halfword/rpmbuild/BUILD/kernel-4.18.0-348.20.1.el8_5/linux-4.18.0-348.20.1.el8.x86_64/configs/kernel-4.18.0-x86_64-debug.config ... done
Processing /home/mr_halfword/rpmbuild/BUILD/kernel-4.18.0-348.20.1.el8_5/linux-4.18.0-348.20.1.el8.x86_64/configs/kernel-4.18.0-x86_64.config ... done
Processed config files are in /home/mr_halfword/rpmbuild/BUILD/kernel-4.18.0-348.20.1.el8_5/linux-4.18.0-348.20.1.el8.x86_64/configs
+ cd ..
+ find . '(' -name '*.orig' -o -name '*~' ')' -exec rm -f '{}' ';'
+ find . -name .gitignore -exec rm -f '{}' ';'
+ cd ..
+ exit 0

19. Install Kernel debuginfo

Installed the Kernel debuginfo with:

[mr_halfword@haswell-alma ~]$ sudo yum --enablerepo=baseos-debuginfo install kernel-debuginfo
AlmaLinux 8 - BaseOS debuginfo                  3.2 MB/s | 3.0 MB     00:00    
Last metadata expiration check: 0:00:01 ago on Sun 27 Mar 2022 18:55:21 BST.
Dependencies resolved.
================================================================================
 Package                    Arch   Version               Repository        Size
================================================================================
Installing:
 kernel-debuginfo           x86_64 4.18.0-348.20.1.el8_5 baseos-debuginfo 596 M
Installing dependencies:
 kernel-debuginfo-common-x86_64
                            x86_64 4.18.0-348.20.1.el8_5 baseos-debuginfo  88 M

Transaction Summary
================================================================================
Install  2 Packages

Total download size: 684 M
Installed size: 3.5 G
Is this ok [y/N]: y
Downloading Packages:
(1/2): kernel-debuginfo-common-x86_64-4.18.0-34 4.2 MB/s |  88 MB     00:21    
(2/2): kernel-debuginfo-4.18.0-348.20.1.el8_5.x 6.2 MB/s | 596 MB     01:36    
--------------------------------------------------------------------------------
Total                                           7.1 MB/s | 684 MB     01:36     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : kernel-debuginfo-common-x86_64-4.18.0-348.20.1.el8_5   1/2 
  Installing       : kernel-debuginfo-4.18.0-348.20.1.el8_5.x86_64          2/2 
  Running scriptlet: kernel-debuginfo-4.18.0-348.20.1.el8_5.x86_64          2/2 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : kernel-debuginfo-4.18.0-348.20.1.el8_5.x86_64          1/2 
  Verifying        : kernel-debuginfo-common-x86_64-4.18.0-348.20.1.el8_5   2/2 

Installed:
  kernel-debuginfo-4.18.0-348.20.1.el8_5.x86_64                                 
  kernel-debuginfo-common-x86_64-4.18.0-348.20.1.el8_5.x86_64                   

Complete!

With that debuginfo installed, when debugged a program in Eclipse was able to step into the source into the __vdso_clock_gettime function in /usr/src/debug/kernel-4.18.0-348.20.1.el8_5/linux-4.18.0-348.20.1.el8_5.x86_64/arch/x86/entry/vdso/vclock_gettime.c when the program called clock_gettime (CLOCK_MONOTONIC).

20. Install mstflint

Install the mstflint package for Mellanox tools for network adapters:

[mr_halfword@haswell-alma ~]$ sudo yum install mstflint
[sudo] password for mr_halfword: 
AlmaLinux 8 - BaseOS                            7.7 kB/s | 4.3 kB     00:00    
AlmaLinux 8 - AppStream                          10 kB/s | 4.7 kB     00:00    
AlmaLinux 8 - Extras                            8.4 kB/s | 3.9 kB     00:00    
AlmaLinux 8 - devel                             5.9 kB/s | 3.5 kB     00:00    
AlmaLinux 8 - PowerTools                         11 kB/s | 4.7 kB     00:00    
ELRepo.org Community Enterprise Linux Repositor 7.2 kB/s | 3.0 kB     00:00    
ELRepo.org Community Enterprise Linux Repositor 260 kB/s | 171 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64   38 kB/s |  21 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64  5.6 MB/s |  11 MB     00:02    
Extra Packages for Enterprise Linux Modular 8 -  85 kB/s |  32 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 -  13 kB/s | 1.0 MB     01:17    
Scooter Software                                5.8 kB/s | 2.9 kB     00:00    
Dependencies resolved.
================================================================================
 Package          Architecture   Version                Repository         Size
================================================================================
Installing:
 mstflint         x86_64         4.17.0-1.el8           appstream         4.1 M

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

Total download size: 4.1 M
Installed size: 19 M
Is this ok [y/N]: y
Downloading Packages:
mstflint-4.17.0-1.el8.x86_64.rpm                6.4 MB/s | 4.1 MB     00:00    
--------------------------------------------------------------------------------
Total                                           3.9 MB/s | 4.1 MB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : mstflint-4.17.0-1.el8.x86_64                           1/1 
  Running scriptlet: mstflint-4.17.0-1.el8.x86_64                           1/1 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : mstflint-4.17.0-1.el8.x86_64                           1/1 

Installed:
  mstflint-4.17.0-1.el8.x86_64                                                  

Complete!

21. Install nvme-cli and nvmetcli packages

Install the nvme-cli and nvmetcli packages for investigating NVMe over fabrics using RDMA:

$ sudo yum install nvme-cli
[sudo] password for mr_halfword: 
Last metadata expiration check: 1:11:08 ago on Sun 10 Apr 2022 16:30:24 BST.
Dependencies resolved.
================================================================================
 Package           Architecture    Version                Repository       Size
================================================================================
Installing:
 nvme-cli          x86_64          1.14-3.el8             baseos          462 k

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

Total download size: 462 k
Installed size: 905 k
Is this ok [y/N]: y
Downloading Packages:
nvme-cli-1.14-3.el8.x86_64.rpm                  944 kB/s | 462 kB     00:00    
--------------------------------------------------------------------------------
Total                                           467 kB/s | 462 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : nvme-cli-1.14-3.el8.x86_64                             1/1 
  Running scriptlet: nvme-cli-1.14-3.el8.x86_64                             1/1 
Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service.

/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : nvme-cli-1.14-3.el8.x86_64                             1/1 

Installed:
  nvme-cli-1.14-3.el8.x86_64                                                    

Complete!
$ sudo yum install nvmetcli
Last metadata expiration check: 1:18:25 ago on Sun 10 Apr 2022 16:30:24 BST.
Dependencies resolved.
================================================================================
 Package                   Architecture Version              Repository    Size
================================================================================
Installing:
 nvmetcli                  noarch       0.7-3.el8            baseos        42 k
Installing dependencies:
 python3-configshell       noarch       1:1.1.28-1.el8       baseos        71 k
 python3-kmod              x86_64       0.9-20.el8           baseos        90 k
 python3-urwid             x86_64       1.3.1-4.el8          baseos       783 k

Transaction Summary
================================================================================
Install  4 Packages

Total download size: 986 k
Installed size: 3.4 M
Is this ok [y/N]: y
Downloading Packages:
(1/4): nvmetcli-0.7-3.el8.noarch.rpm            463 kB/s |  42 kB     00:00    
(2/4): python3-configshell-1.1.28-1.el8.noarch. 558 kB/s |  71 kB     00:00    
(3/4): python3-kmod-0.9-20.el8.x86_64.rpm       674 kB/s |  90 kB     00:00    
(4/4): python3-urwid-1.3.1-4.el8.x86_64.rpm     816 kB/s | 783 kB     00:00    
--------------------------------------------------------------------------------
Total                                           615 kB/s | 986 kB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : python3-urwid-1.3.1-4.el8.x86_64                       1/4 
  Installing       : python3-configshell-1:1.1.28-1.el8.noarch              2/4 
  Installing       : python3-kmod-0.9-20.el8.x86_64                         3/4 
  Installing       : nvmetcli-0.7-3.el8.noarch                              4/4 
  Running scriptlet: nvmetcli-0.7-3.el8.noarch                              4/4 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : nvmetcli-0.7-3.el8.noarch                              1/4 
  Verifying        : python3-configshell-1:1.1.28-1.el8.noarch              2/4 
  Verifying        : python3-kmod-0.9-20.el8.x86_64                         3/4 
  Verifying        : python3-urwid-1.3.1-4.el8.x86_64                       4/4 

Installed:
  nvmetcli-0.7-3.el8.noarch         python3-configshell-1:1.1.28-1.el8.noarch   
  python3-kmod-0.9-20.el8.x86_64    python3-urwid-1.3.1-4.el8.x86_64            

Complete!

With no NVME devices in the PC wasn't able to test anything.

However, HowTo Configure NVMe over Fabrics does mention using a NULL block device as a backing store for benchmarking.

22. Eclipse Oxygen displaying white text on white background in Editor file list

Copied an Eclipse Oxygen 4.7.3a installation from a different PC. Noticed that the editor Show List was displaying the non-select file as white text on white background which makes it difficult to select the required file: eclipse_editor_file_list_white_text_on_white_background

In the workspace preferences under General -> Appearance the following were used, which matched that from a Ubuntu installation which didn't show the issue (displayed black text on a white background in the Show List):

  • Enable theming (requires restart) ticked
  • Theme: Light
  • Color and Font Theme: Default (current)

21.1 Installing libcanberra-gtk2 didn't help

At startup Eclipse was reporting:

Gtk-Message: 10:29:44.291: Failed to load module "canberra-gtk-module"
Gtk-Message: 10:29:44.531: Failed to load module "canberra-gtk-module"

Installed libcanberra-gtk2:

[mr_halfword@haswell-alma ibv_message_passing]$ sudo yum install libcanberra-gtk3 libcanberra-gtk2
[sudo] password for mr_halfword: 
Last metadata expiration check: 0:13:28 ago on Fri 15 Apr 2022 10:20:07 BST.
Package libcanberra-gtk3-0.30-18.el8.x86_64 is already installed.
Dependencies resolved.
================================================================================
 Package                Architecture Version              Repository       Size
================================================================================
Installing:
 libcanberra-gtk2       x86_64       0.30-18.el8          appstream        32 k

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

Total download size: 32 k
Installed size: 51 k
Is this ok [y/N]: y
Downloading Packages:
libcanberra-gtk2-0.30-18.el8.x86_64.rpm         239 kB/s |  32 kB     00:00    
--------------------------------------------------------------------------------
Total                                            56 kB/s |  32 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : libcanberra-gtk2-0.30-18.el8.x86_64                    1/1 
  Running scriptlet: libcanberra-gtk2-0.30-18.el8.x86_64                    1/1 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : libcanberra-gtk2-0.30-18.el8.x86_64                    1/1 

Installed:
  libcanberra-gtk2-0.30-18.el8.x86_64                                           

Complete!

That removed the warning about being unable to load "canberra-gtk-module" but didn't fix the issue.

22.2 Installed gnome-tweaks and changed theme to fix issue

Installed gnome-tweaks:

[mr_halfword@haswell-alma ibv_message_passing]$ sudo yum install gnome-tweaks
[sudo] password for mr_halfword: 
Last metadata expiration check: 1:17:34 ago on Fri 15 Apr 2022 10:20:07 BST.
Dependencies resolved.
================================================================================
 Package                           Arch    Version             Repository  Size
================================================================================
Installing:
 gnome-tweaks                      noarch  3.28.1-7.el8        appstream  331 k
Installing dependencies:
 gnome-shell-extension-user-theme  noarch  3.32.1-22.el8_5     appstream   26 k

Transaction Summary
================================================================================
Install  2 Packages

Total download size: 357 k
Installed size: 1.4 M
Is this ok [y/N]: y
Downloading Packages:
(1/2): gnome-shell-extension-user-theme-3.32.1- 557 kB/s |  26 kB     00:00    
(2/2): gnome-tweaks-3.28.1-7.el8.noarch.rpm     3.4 MB/s | 331 kB     00:00    
--------------------------------------------------------------------------------
Total                                           578 kB/s | 357 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : gnome-shell-extension-user-theme-3.32.1-22.el8_5.noa   1/2 
  Installing       : gnome-tweaks-3.28.1-7.el8.noarch                       2/2 
  Running scriptlet: gnome-tweaks-3.28.1-7.el8.noarch                       2/2 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : gnome-shell-extension-user-theme-3.32.1-22.el8_5.noa   1/2 
  Verifying        : gnome-tweaks-3.28.1-7.el8.noarch                       2/2 

Installed:
  gnome-shell-extension-user-theme-3.32.1-22.el8_5.noarch                       
  gnome-tweaks-3.28.1-7.el8.noarch                                              

Complete!
[mr_halfword@haswell-alma ibv_message_passing]$ 

In gnome-tweaks under Appearance -> Themes changed Applications from Adwaita (default) to HighContrastInverse and that fixed the issue in Eclipse.

22.3. Following change to application theme smartgit reported unsupported GTK theme

After changing the application theme to HighContrastInverse starting smartgit version 21.2.2 #18125 reported 2/2: Unsupported GTK theme detected.:

Following GTK3 theme was detected: HighContrastInverse (GTK version: 3.22.30).

If you experience some strange GUI problems, please try to add following line to ~/.config/smartgit/21.2/smartgit.properties:

org.eclipse.swt.internal.gtk.noThemingFixes=true

Starting smartgit with the following removed the warning, by causing smartgit to run with the Adwaita theme:

( GTK_THEME=Adwaita /opt/syntevo/smartgit/bin/smartgit.sh )

23. rdma-core API differences between versions

Some notes about API functionality differences between rdma-core versions.

23.1. RDMA_OPTION_ID_ACK_TIMEOUT

NVIDIA MLNX_OFED Documentation Rev 5.4-3.1.0.0 describes the RDMA_OPTION_ID_ACK_TIMEOUT option for rdma_set_option which is useful to control the QP timeout for QPs created with RDMA-CM.

Looking at some rdma-core versions for rdma_cma.h:

  1. The rdma_cma.h from rdma-core v35.0 and v39.0 have RDMA_OPTION_ID_ACK_TIMEOUT. These were downloaded from the rdma-core github page.
  2. The rdma_cma.h from rdma-core 17.1 in Ubuntu 18.04 package doesn't have RDMA_OPTION_ID_ACK_TIMEOUT.

23.2 rate_limit support

  1. libibverbs-1.1.8 from Scientific Linux 6.10 doesn't have any support for rate_limit.
  2. rdma-core 17.1 in Ubuntu 18.04 has IBV_QP_RATE_LIMIT but not ibv_modify_qp_rate_limit.
  3. rdma-core v35.0 and v39.0 have IBV_QP_RATE_LIMIT and ibv_modify_qp_rate_limit.

23.3 ibv_rate

Looking at the max value of the ibv_rate enumeration in infiniband/verbs.h:

  1. IBV_RATE_300_GBPS in rdma-core 17.1 in Ubuntu 18.04
  2. IBV_RATE_600_GBPS in rdma-core v35.0
  3. IBV_RATE_1200_GBPS in rdma-core v39.0

24. mlx5_core supported devices

This looks at the supported PCI device IDs reported by modinfo mlx5_core in the module installed with Kernel 4.18.0-348.23.1.el8_5.x86_64 by AlmaLinux 8.5. The PCI IDs were decoded using http://pci-ids.ucw.cz/read/PC/15b3

modinfo device ID Device name
pci:v000015B3d0000A2DCsv*sd*bc*sc*i* MT43244 BlueField-3 integrated ConnectX-7 network controller
pci:v000015B3d0000A2D6sv*sd*bc*sc*i* MT42822 BlueField-2 integrated ConnectX-6 Dx network controller
pci:v000015B3d0000A2D3sv*sd*bc*sc*i* MT416842 BlueField multicore SoC family VF
pci:v000015B3d0000A2D2sv*sd*bc*sc*i* MT416842 BlueField integrated ConnectX-5 network controller
pci:v000015B3d00001021sv*sd*bc*sc*i* MT2910 Family [ConnectX-7]
pci:v000015B3d0000101Fsv*sd*bc*sc*i* MT2894 Family [ConnectX-6 Lx]
pci:v000015B3d0000101Esv*sd*bc*sc*i* ConnectX Family mlx5Gen Virtual Function
pci:v000015B3d0000101Dsv*sd*bc*sc*i* MT2892 Family [ConnectX-6 Dx]
pci:v000015B3d0000101Csv*sd*bc*sc*i* MT28908 Family [ConnectX-6 Virtual Function]
pci:v000015B3d0000101Bsv*sd*bc*sc*i* MT28908 Family [ConnectX-6]
pci:v000015B3d0000101Asv*sd*bc*sc*i* MT28800 Family [ConnectX-5 Ex Virtual Function]
pci:v000015B3d00001019sv*sd*bc*sc*i* MT28800 Family [ConnectX-5 Ex]
pci:v000015B3d00001018sv*sd*bc*sc*i* MT27800 Family [ConnectX-5 Virtual Function]
pci:v000015B3d00001017sv*sd*bc*sc*i* MT27800 Family [ConnectX-5]
pci:v000015B3d00001016sv*sd*bc*sc*i* MT27710 Family [ConnectX-4 Lx Virtual Function]
pci:v000015B3d00001015sv*sd*bc*sc*i* MT27710 Family [ConnectX-4 Lx]
pci:v000015B3d00001014sv*sd*bc*sc*i* MT27700 Family [ConnectX-4 Virtual Function]
pci:v000015B3d00001013sv*sd*bc*sc*i* MT27700 Family [ConnectX-4]
pci:v000015B3d00001012sv*sd*bc*sc*i* MT27600 Family [Connect-IB Virtual Function]
pci:v000015B3d00001011sv*sd*bc*sc*i* MT27600 [Connect-IB]

The list of devices supported by mlx5_core is the same with the AlmaLinux 8.6 Kernels 4.18.0-372.9.1.el8.x86_64 and 4.18.0-372.9.1.rt7.166.el8.x86_64.

25. Adding locally administrated udev file to control RDMA device names

The rdma-core 32.0 initially installed with AlmaLinux 8.5 had /usr/lib/udev/rules.d/60-rdma-persistent-naming.rules which specified NAME_KERNEL to leave the RDMA device names as kernel provided. E.g. with a dual-port ConnectX-4 Lx the device names were mlx5_0 and mlx5_1.

When installed a rdma-core built from source to get Intel irdma support the naming rule in /usr/lib/udev/rules.d/60-rdma-persistent-naming.rules specified NAME_FALLBACK and with the ConnectX-4 Lx the device names were rocep1s0f0 and rocep1s0f1. The fallback names seemed an improvement since:

  • The name includes the transport used
  • The includes the PCI/slot/function location which is independent of the device enumeration order

When the PC was automatically updated from AlmaLinux 8.5 to AlmaLinux 8.6 the rdma-core packages built from source were replaced with the AlmaLinux packaged rdma-core rdma-core-37.2-1 and the naming rule in /usr/lib/udev/rules.d/60-rdma-persistent-naming.rules was back to NAME_KERNEL.

To get NAME_FALLBACK without modifying the AlmaLinux provide file, add a locally administrated udev file:

$ cat /etc/udev/rules.d/60-rdma-persistent-naming.rules
# This is a locally administrated file to specify the RDMA device names using
# NAME_FALLBACK instead of the backwards compability NAME_KERNEL used by the
# AlmaLinux packaged rdma-core
ACTION=="add", SUBSYSTEM=="infiniband", PROGRAM="rdma_rename %k NAME_FALLBACK"

26. Install debuginfo for AlmaLinux 8.6

Wanted to step into ibv_create_cq_ex to check which flags were used, using the rdma-core-37.2-1 installed by AlmaLinux 8.6

Initially installed the rdma-core-debuginfo packages:

[mr_halfword@haswell-alma ibv_message_passing]$ sudo yum --enablerepo=baseos-debuginfo install rdma-core-debuginfo
Last metadata expiration check: 0:00:34 ago on Sat 11 Jun 2022 15:32:07 BST.
Package rdma-core-debuginfo-35.0-1.el8.x86_64 is already installed.
Dependencies resolved.
================================================================================
 Package                      Arch     Version         Repository          Size
================================================================================
Upgrading:
 ibacm-debuginfo              x86_64   37.2-1.el8      baseos-debuginfo   198 k
 infiniband-diags-debuginfo   x86_64   37.2-1.el8      baseos-debuginfo   604 k
 iwpmd-debuginfo              x86_64   37.2-1.el8      baseos-debuginfo    60 k
 libibumad-debuginfo          x86_64   37.2-1.el8      baseos-debuginfo    48 k
 libibverbs-debuginfo         x86_64   37.2-1.el8      baseos-debuginfo   1.7 M
 libibverbs-utils-debuginfo   x86_64   37.2-1.el8      baseos-debuginfo   164 k
 librdmacm-debuginfo          x86_64   37.2-1.el8      baseos-debuginfo   194 k
 librdmacm-utils-debuginfo    x86_64   37.2-1.el8      baseos-debuginfo   203 k
 python3-pyverbs-debuginfo    x86_64   37.2-1.el8      baseos-debuginfo   2.9 M
 rdma-core-debuginfo          x86_64   37.2-1.el8      baseos-debuginfo   133 k
 srp_daemon-debuginfo         x86_64   37.2-1.el8      baseos-debuginfo    87 k

Transaction Summary
================================================================================
Upgrade  11 Packages

Total download size: 6.2 M
Is this ok [y/N]: y
Downloading Packages:
(1/11): iwpmd-debuginfo-37.2-1.el8.x86_64.rpm   419 kB/s |  60 kB     00:00    
(2/11): libibumad-debuginfo-37.2-1.el8.x86_64.r 1.1 MB/s |  48 kB     00:00    
(3/11): ibacm-debuginfo-37.2-1.el8.x86_64.rpm   966 kB/s | 198 kB     00:00    
(4/11): libibverbs-utils-debuginfo-37.2-1.el8.x 1.9 MB/s | 164 kB     00:00    
(5/11): infiniband-diags-debuginfo-37.2-1.el8.x 1.9 MB/s | 604 kB     00:00    
(6/11): librdmacm-debuginfo-37.2-1.el8.x86_64.r 2.2 MB/s | 194 kB     00:00    
(7/11): librdmacm-utils-debuginfo-37.2-1.el8.x8 2.2 MB/s | 203 kB     00:00    
(8/11): rdma-core-debuginfo-37.2-1.el8.x86_64.r 2.3 MB/s | 133 kB     00:00    
(9/11): srp_daemon-debuginfo-37.2-1.el8.x86_64. 1.8 MB/s |  87 kB     00:00    
(10/11): libibverbs-debuginfo-37.2-1.el8.x86_64 3.1 MB/s | 1.7 MB     00:00    
(11/11): python3-pyverbs-debuginfo-37.2-1.el8.x 4.1 MB/s | 2.9 MB     00:00    
--------------------------------------------------------------------------------
Total                                           4.1 MB/s | 6.2 MB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Upgrading        : rdma-core-debuginfo-37.2-1.el8.x86_64                 1/22 
  Upgrading        : ibacm-debuginfo-37.2-1.el8.x86_64                     2/22 
  Upgrading        : infiniband-diags-debuginfo-37.2-1.el8.x86_64          3/22 
  Upgrading        : iwpmd-debuginfo-37.2-1.el8.x86_64                     4/22 
  Upgrading        : libibumad-debuginfo-37.2-1.el8.x86_64                 5/22 
  Upgrading        : libibverbs-debuginfo-37.2-1.el8.x86_64                6/22 
  Upgrading        : libibverbs-utils-debuginfo-37.2-1.el8.x86_64          7/22 
  Upgrading        : librdmacm-debuginfo-37.2-1.el8.x86_64                 8/22 
  Upgrading        : librdmacm-utils-debuginfo-37.2-1.el8.x86_64           9/22 
  Upgrading        : python3-pyverbs-debuginfo-37.2-1.el8.x86_64          10/22 
  Upgrading        : srp_daemon-debuginfo-37.2-1.el8.x86_64               11/22 
  Cleanup          : srp_daemon-debuginfo-35.0-1.el8.x86_64               12/22 
  Cleanup          : python3-pyverbs-debuginfo-35.0-1.el8.x86_64          13/22 
  Cleanup          : librdmacm-utils-debuginfo-35.0-1.el8.x86_64          14/22 
  Cleanup          : librdmacm-debuginfo-35.0-1.el8.x86_64                15/22 
  Cleanup          : libibverbs-utils-debuginfo-35.0-1.el8.x86_64         16/22 
  Cleanup          : libibverbs-debuginfo-35.0-1.el8.x86_64               17/22 
  Cleanup          : libibumad-debuginfo-35.0-1.el8.x86_64                18/22 
  Cleanup          : iwpmd-debuginfo-35.0-1.el8.x86_64                    19/22 
  Cleanup          : infiniband-diags-debuginfo-35.0-1.el8.x86_64         20/22 
  Cleanup          : ibacm-debuginfo-35.0-1.el8.x86_64                    21/22 
  Cleanup          : rdma-core-debuginfo-35.0-1.el8.x86_64                22/22 
  Running scriptlet: rdma-core-debuginfo-35.0-1.el8.x86_64                22/22 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : ibacm-debuginfo-37.2-1.el8.x86_64                     1/22 
  Verifying        : ibacm-debuginfo-35.0-1.el8.x86_64                     2/22 
  Verifying        : infiniband-diags-debuginfo-37.2-1.el8.x86_64          3/22 
  Verifying        : infiniband-diags-debuginfo-35.0-1.el8.x86_64          4/22 
  Verifying        : iwpmd-debuginfo-37.2-1.el8.x86_64                     5/22 
  Verifying        : iwpmd-debuginfo-35.0-1.el8.x86_64                     6/22 
  Verifying        : libibumad-debuginfo-37.2-1.el8.x86_64                 7/22 
  Verifying        : libibumad-debuginfo-35.0-1.el8.x86_64                 8/22 
  Verifying        : libibverbs-debuginfo-37.2-1.el8.x86_64                9/22 
  Verifying        : libibverbs-debuginfo-35.0-1.el8.x86_64               10/22 
  Verifying        : libibverbs-utils-debuginfo-37.2-1.el8.x86_64         11/22 
  Verifying        : libibverbs-utils-debuginfo-35.0-1.el8.x86_64         12/22 
  Verifying        : librdmacm-debuginfo-37.2-1.el8.x86_64                13/22 
  Verifying        : librdmacm-debuginfo-35.0-1.el8.x86_64                14/22 
  Verifying        : librdmacm-utils-debuginfo-37.2-1.el8.x86_64          15/22 
  Verifying        : librdmacm-utils-debuginfo-35.0-1.el8.x86_64          16/22 
  Verifying        : python3-pyverbs-debuginfo-37.2-1.el8.x86_64          17/22 
  Verifying        : python3-pyverbs-debuginfo-35.0-1.el8.x86_64          18/22 
  Verifying        : rdma-core-debuginfo-37.2-1.el8.x86_64                19/22 
  Verifying        : rdma-core-debuginfo-35.0-1.el8.x86_64                20/22 
  Verifying        : srp_daemon-debuginfo-37.2-1.el8.x86_64               21/22 
  Verifying        : srp_daemon-debuginfo-35.0-1.el8.x86_64               22/22 

Upgraded:
  ibacm-debuginfo-37.2-1.el8.x86_64                                             
  infiniband-diags-debuginfo-37.2-1.el8.x86_64                                  
  iwpmd-debuginfo-37.2-1.el8.x86_64                                             
  libibumad-debuginfo-37.2-1.el8.x86_64                                         
  libibverbs-debuginfo-37.2-1.el8.x86_64                                        
  libibverbs-utils-debuginfo-37.2-1.el8.x86_64                                  
  librdmacm-debuginfo-37.2-1.el8.x86_64                                         
  librdmacm-utils-debuginfo-37.2-1.el8.x86_64                                   
  python3-pyverbs-debuginfo-37.2-1.el8.x86_64                                   
  rdma-core-debuginfo-37.2-1.el8.x86_64                                         
  srp_daemon-debuginfo-37.2-1.el8.x86_64                                        

Complete!

When attempted to step into a rdma-core function the debuginfo was recognised by gdb, but the Eclipse debugger reported that was unable to find the source code:

Can't find a source file at "/usr/src/debug/rdma-core-37.2-1.el8.x86_64/libibverbs/device.c" 
Locate the file or edit the source lookup path to include its location.

Also needed to install the rdma-core-debugsource package:

[mr_halfword@haswell-alma ibv_message_passing]$ sudo yum --enablerepo=baseos-debuginfo install rdma-core-debugsource
Last metadata expiration check: 0:04:53 ago on Sat 11 Jun 2022 15:32:07 BST.
Package rdma-core-debugsource-35.0-1.el8.x86_64 is already installed.
Dependencies resolved.
================================================================================
 Package                   Arch       Version        Repository            Size
================================================================================
Upgrading:
 rdma-core-debugsource     x86_64     37.2-1.el8     baseos-debuginfo     1.9 M

Transaction Summary
================================================================================
Upgrade  1 Package

Total download size: 1.9 M
Is this ok [y/N]: y
Downloading Packages:
rdma-core-debugsource-37.2-1.el8.x86_64.rpm     4.4 MB/s | 1.9 MB     00:00    
--------------------------------------------------------------------------------
Total                                           1.7 MB/s | 1.9 MB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Upgrading        : rdma-core-debugsource-37.2-1.el8.x86_64                1/2 
  Cleanup          : rdma-core-debugsource-35.0-1.el8.x86_64                2/2 
  Verifying        : rdma-core-debugsource-37.2-1.el8.x86_64                1/2 
  Verifying        : rdma-core-debugsource-35.0-1.el8.x86_64                2/2 

Upgraded:
  rdma-core-debugsource-37.2-1.el8.x86_64                                       

Complete!

The above was debugging a native application. If debugging a remote application then think need to:

  1. Install the debuginfo package on the remote machine, on which the application is being debugged.
  2. Install the debugsource package on the local machine running the Eclipse debugger.

26.1 Upgrade removed previous debugsource

The above was actually a upgrade rather than install

Prior to upgrade there was a source directory for rdma-core-35:

[mr_halfword@haswell-alma ibv_message_passing]$ ls /usr/src/debug/
kernel-4.18.0-348.20.1.el8_5/ rdma-core-35.0-1.el8.x86_64/

After the upgrade there was only a source directory for rdma-core-37:

[mr_halfword@haswell-alma ibv_message_passing]$ ls /usr/src/debug/
kernel-4.18.0-348.20.1.el8_5  rdma-core-37.2-1.el8.x86_64

This suggests that by default yum won't keep multiple the debug source for multiple version of rdma-core, which could be problematic if trying to debug different versions. While the local machine will only one version of the rdma-core runtime packages installed, a remote machine being debugged might have different rdma-core runtime version installed.

26.2 Use of debuginfo-install

Watned to install the gblic debuginfo to step into a bind call. Used debuginfo-install to perform the install:

[mr_halfword@haswell-alma ~]$ sudo debuginfo-install glibc
enabling baseos-debuginfo repository
enabling appstream-debuginfo repository
enabling extras-debuginfo repository
enabling devel-debuginfo repository
enabling powertools-debuginfo repository
enabling epel-debuginfo repository
enabling epel-modular-debuginfo repository
Last metadata expiration check: 0:02:43 ago on Sat 10 Sep 2022 13:51:44 BST.
Dependencies resolved.
================================================================================
 Package              Arch      Version               Repository           Size
================================================================================
Installing:
 glibc-debuginfo      i686      2.28-189.5.el8_6      baseos-debuginfo    4.2 M
 glibc-debuginfo      x86_64    2.28-189.5.el8_6      baseos-debuginfo    4.5 M
 glibc-debugsource    i686      2.28-189.5.el8_6      baseos-debuginfo    5.4 M
 glibc-debugsource    x86_64    2.28-189.5.el8_6      baseos-debuginfo    5.7 M

Transaction Summary
================================================================================
Install  4 Packages

Total download size: 20 M
Installed size: 104 M
Is this ok [y/N]: y
Downloading Packages:
(1/4): glibc-debuginfo-2.28-189.5.el8_6.i686.rp 1.4 MB/s | 4.2 MB     00:03    
(2/4): glibc-debuginfo-2.28-189.5.el8_6.x86_64. 1.4 MB/s | 4.5 MB     00:03    
(3/4): glibc-debugsource-2.28-189.5.el8_6.i686. 1.3 MB/s | 5.4 MB     00:04    
(4/4): glibc-debugsource-2.28-189.5.el8_6.x86_6 1.0 MB/s | 5.7 MB     00:05    
--------------------------------------------------------------------------------
Total                                           2.2 MB/s |  20 MB     00:08     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : glibc-debugsource-2.28-189.5.el8_6.x86_64              1/4 
  Installing       : glibc-debugsource-2.28-189.5.el8_6.i686                2/4 
  Installing       : glibc-debuginfo-2.28-189.5.el8_6.i686                  3/4 
  Installing       : glibc-debuginfo-2.28-189.5.el8_6.x86_64                4/4 
  Running scriptlet: glibc-debuginfo-2.28-189.5.el8_6.x86_64                4/4 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : glibc-debuginfo-2.28-189.5.el8_6.i686                  1/4 
  Verifying        : glibc-debuginfo-2.28-189.5.el8_6.x86_64                2/4 
  Verifying        : glibc-debugsource-2.28-189.5.el8_6.i686                3/4 
  Verifying        : glibc-debugsource-2.28-189.5.el8_6.x86_64              4/4 

Installed:
  glibc-debuginfo-2.28-189.5.el8_6.i686                                         
  glibc-debuginfo-2.28-189.5.el8_6.x86_64                                       
  glibc-debugsource-2.28-189.5.el8_6.i686                                       
  glibc-debugsource-2.28-189.5.el8_6.x86_64                                     

Complete!

In the case of bind is just a system call, so unable to see why an error occurs in a call.

27. mlx4_core supported devices

This looks at the supported PCI device IDs reported by modinfo mlx4_core in the module installed with Kernel 4.18.0-372.9.1.rt7.166.el8.x86_64 or 4.18.0-372.9.1.el8.x86_64 by AlmaLinux 8.6 (both the realtime and non-realtime Kernels have the same device IDs). The PCI IDs were decoded using http://pci-ids.ucw.cz/read/PC/15b3

modinfo device ID Device name
pci:v000015B3d00001010sv*sd*bc*sc*i* MT27561 Family
pci:v000015B3d0000100Fsv*sd*bc*sc*i* MT27560 Family
pci:v000015B3d0000100Esv*sd*bc*sc*i* MT27551 Family
pci:v000015B3d0000100Dsv*sd*bc*sc*i* MT27550 Family
pci:v000015B3d0000100Csv*sd*bc*sc*i* MT27541 Family
pci:v000015B3d0000100Bsv*sd*bc*sc*i* MT27540 Family
pci:v000015B3d0000100Asv*sd*bc*sc*i* MT27531 Family
pci:v000015B3d00001009sv*sd*bc*sc*i* MT27530 Family
pci:v000015B3d00001008sv*sd*bc*sc*i* Not Specified
pci:v000015B3d00001007sv*sd*bc*sc*i* MT27520 Family [ConnectX-3 Pro]
pci:v000015B3d00001006sv*sd*bc*sc*i* MT27511 Family
pci:v000015B3d00001005sv*sd*bc*sc*i* MT27510 Family
pci:v000015B3d00001004sv*sd*bc*sc*i* MT27500/MT27520 Family [ConnectX-3/ConnectX-3 Pro Virtual Function]
pci:v000015B3d00001003sv*sd*bc*sc*i* MT27500 Family [ConnectX-3]

28. Allow 32-bit executables to run

Attempting to run the following 32-bit exectuable:

[mr_halfword@haswell-alma Downloads]$ file ./tirtos_tivac_setuplinux_2_16_01_14.bin
./tirtos_tivac_setuplinux_2_16_01_14.bin: ELF 32-bit LSB executable, Intel 80386, version 1 (GNU/Linux), statically linked, stripped

Silently fails:

[mr_halfword@haswell-alma Downloads]$  ./tirtos_tivac_setuplinux_2_16_01_14.bin
<<< no output >>>

Running under strace indicates can't open /lib/ld-linux.so.2:

[mr_halfword@haswell-alma Downloads]$ strace  ./tirtos_tivac_setuplinux_2_16_01_14.bin
execve("./tirtos_tivac_setuplinux_2_16_01_14.bin", ["./tirtos_tivac_setuplinux_2_16_0"...], 0x7ffde76597d0 /* 60 vars */) = 0
[ Process PID=7692 runs in 32 bit mode. ]
mmap(0xc6d000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0xc6d000) = 0xc6d000
readlink("/proc/self/exe", "/home/mr_halfword/Downloads/tirt"..., 4096) = 66
mmap(0x8048000, 1107425, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x8048000
mprotect(0x8048000, 1107422, PROT_READ|PROT_EXEC) = 0
mmap(0x8157000, 46339, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x8157000
mprotect(0x8157000, 46336, PROT_READ|PROT_WRITE) = 0
mmap(0x8163000, 15000, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x8163000
brk(0x8167000)                          = 0x8d37000
open("/lib/ld-linux.so.2", O_RDONLY)    = -1 ENOENT (No such file or directory)
exit(127)                               = ?
+++ exited with 127 +++

Installed the 32-bit glibc:

[mr_halfword@haswell-alma Downloads]$ sudo yum install glibc.i686
[sudo] password for mr_halfword: 
Last metadata expiration check: 0:18:55 ago on Sat 23 Jul 2022 19:57:29 BST.
Dependencies resolved.
================================================================================
 Package                 Arch       Version                  Repository    Size
================================================================================
Installing:
 glibc                   i686       2.28-189.5.el8_6         baseos       2.0 M
Installing weak dependencies:
 glibc-gconv-extra       i686       2.28-189.5.el8_6         baseos       1.6 M

Transaction Summary
================================================================================
Install  2 Packages

Total download size: 3.5 M
Installed size: 11 M
Is this ok [y/N]: y
Downloading Packages:
(1/2): glibc-2.28-189.5.el8_6.i686.rpm          3.2 MB/s | 2.0 MB     00:00    
(2/2): glibc-gconv-extra-2.28-189.5.el8_6.i686. 2.3 MB/s | 1.6 MB     00:00    
--------------------------------------------------------------------------------
Total                                           3.0 MB/s | 3.5 MB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : glibc-gconv-extra-2.28-189.5.el8_6.i686                1/2 
  Running scriptlet: glibc-gconv-extra-2.28-189.5.el8_6.i686                1/2 
  Running scriptlet: glibc-2.28-189.5.el8_6.i686                            2/2 
  Installing       : glibc-2.28-189.5.el8_6.i686                            2/2 
  Running scriptlet: glibc-2.28-189.5.el8_6.i686                            2/2 
/usr/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : glibc-2.28-189.5.el8_6.i686                            1/2 
  Verifying        : glibc-gconv-extra-2.28-189.5.el8_6.i686                2/2 

Installed:
  glibc-2.28-189.5.el8_6.i686      glibc-gconv-extra-2.28-189.5.el8_6.i686     

Complete!

Following the above the tirtos_tivac_setuplinux_2_16_01_14.bin install then ran successfull (entirely from the commande line - no GUI).

29. Building libpciaccess from source

Cloned the source with:

$ git clone https://gitlab.freedesktop.org/xorg/lib/libpciaccess.git

Attempting to run autogen.sh fails with:

[mr_halfword@haswell-alma libpciaccess]$ ./autogen.sh 
./autogen.sh: line 9: autoreconf: command not found
[mr_halfword@haswell-alma libpciaccess]$ autoreconf
bash: autoreconf: command not found...
Install package 'autoconf' to provide command 'autoreconf'? [N/y] n

Install autoconf:

[mr_halfword@haswell-alma libpciaccess]$ sudo yum install autoconf
[sudo] password for mr_halfword: 
Last metadata expiration check: 0:04:09 ago on Sat 30 Jul 2022 16:18:43 BST.
Dependencies resolved.
================================================================================
 Package          Architecture   Version                Repository         Size
================================================================================
Installing:
 autoconf         noarch         2.69-29.el8            appstream         710 k

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

Total download size: 710 k
Installed size: 2.2 M
Is this ok [y/N]: y
Downloading Packages:
autoconf-2.69-29.el8.noarch.rpm                 4.3 MB/s | 710 kB     00:00    
--------------------------------------------------------------------------------
Total                                           1.0 MB/s | 710 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : autoconf-2.69-29.el8.noarch                            1/1 
  Running scriptlet: autoconf-2.69-29.el8.noarch                            1/1 
  Verifying        : autoconf-2.69-29.el8.noarch                            1/1 

Installed:
  autoconf-2.69-29.el8.noarch                                                   

Complete!

aclocal is then reported as not found:

[mr_halfword@haswell-alma libpciaccess]$ ./autogen.sh 
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal -I m4 --output=aclocal.m4t
Can't exec "aclocal": No such file or directory at /usr/share/autoconf/Autom4te/FileUtils.pm line 326.
autoreconf: failed to run aclocal: No such file or directory
[mr_halfword@haswell-alma libpciaccess]$ aclocal
bash: aclocal: command not found...
Install package 'automake' to provide command 'aclocal'? [N/y] n

Install automake:

[mr_halfword@haswell-alma libpciaccess]$ sudo yum install automake
Last metadata expiration check: 0:05:56 ago on Sat 30 Jul 2022 16:18:43 BST.
Dependencies resolved.
================================================================================
 Package          Architecture   Version                Repository         Size
================================================================================
Installing:
 automake         noarch         1.16.1-7.el8           appstream         712 k

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

Total download size: 712 k
Installed size: 1.7 M
Is this ok [y/N]: y
Downloading Packages:
automake-1.16.1-7.el8.noarch.rpm                2.9 MB/s | 712 kB     00:00    
--------------------------------------------------------------------------------
Total                                           1.0 MB/s | 712 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : automake-1.16.1-7.el8.noarch                           1/1 
  Running scriptlet: automake-1.16.1-7.el8.noarch                           1/1 
  Verifying        : automake-1.16.1-7.el8.noarch                           1/1 

Installed:
  automake-1.16.1-7.el8.noarch                                                  

Complete!

xorg-macros is then reported as not found:

[mr_halfword@haswell-alma libpciaccess]$ ./autogen.sh 
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
configure.ac:39: error: must install xorg-macros 1.8 or later before running autoconf/autogen
configure.ac:39: the top level
autom4te: /usr/bin/m4 failed with exit status: 1
aclocal: error: echo failed with exit status: 1
autoreconf: aclocal failed with exit status: 1

On AlmaLinux 8.6 can't find a xorg-macros package. Searching for must install xorg-macros 1.8 or later before running autoconf/autogen found How do I install xorg-macros?. AlmaLinux 8.6 doesn't have the suggested xutils-dev package. However looking for the source of the xorg-macros.pc package finds a package xorg-x11-util-macros:

[mr_halfword@haswell-alma libpciaccess]$ yum provides "*/xorg-macros.pc"
Last metadata expiration check: 0:04:29 ago on Sat 30 Jul 2022 16:26:40 BST.
xorg-x11-util-macros-1.19.2-1.el8.noarch : X.Org X11 Autotools macros
Repo        : powertools
Matched from:
Filename    : /usr/share/pkgconfig/xorg-macros.pc

Which was installed:

[mr_halfword@haswell-alma libpciaccess]$ sudo yum install xorg-x11-util-macros
[sudo] password for mr_halfword: 
Last metadata expiration check: 0:18:37 ago on Sat 30 Jul 2022 16:18:43 BST.
Dependencies resolved.
================================================================================
 Package                   Arch        Version            Repository       Size
================================================================================
Installing:
 xorg-x11-util-macros      noarch      1.19.2-1.el8       powertools       58 k
Installing dependencies:
 libtool                   x86_64      2.4.6-25.el8       appstream       708 k

Transaction Summary
================================================================================
Install  2 Packages

Total download size: 766 k
Installed size: 2.7 M
Is this ok [y/N]: y
Downloading Packages:
(1/2): xorg-x11-util-macros-1.19.2-1.el8.noarch 516 kB/s |  58 kB     00:00    
(2/2): libtool-2.4.6-25.el8.x86_64.rpm          3.5 MB/s | 708 kB     00:00    
--------------------------------------------------------------------------------
Total                                           733 kB/s | 766 kB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : libtool-2.4.6-25.el8.x86_64                            1/2 
  Running scriptlet: libtool-2.4.6-25.el8.x86_64                            1/2 
  Installing       : xorg-x11-util-macros-1.19.2-1.el8.noarch               2/2 
  Running scriptlet: xorg-x11-util-macros-1.19.2-1.el8.noarch               2/2 
  Verifying        : libtool-2.4.6-25.el8.x86_64                            1/2 
  Verifying        : xorg-x11-util-macros-1.19.2-1.el8.noarch               2/2 

Installed:
  libtool-2.4.6-25.el8.x86_64      xorg-x11-util-macros-1.19.2-1.el8.noarch     

Complete!

autogen.sh is then successful:

[mr_halfword@haswell-alma libpciaccess]$ ./autogen.sh 
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy --force
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, '.'.
libtoolize: copying file './ltmain.sh'
libtoolize: putting macros in 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
libtoolize: and rerunning libtoolize and aclocal.
autoreconf: running: /usr/bin/autoconf --force
autoreconf: running: /usr/bin/autoheader --force
autoreconf: running: automake --add-missing --copy --force-missing
configure.ac:33: installing './compile'
configure.ac:36: installing './config.guess'
configure.ac:36: installing './config.sub'
configure.ac:32: installing './install-sh'
configure.ac:32: installing './missing'
scanpci/Makefile.am: installing './depcomp'
autoreconf: Leaving directory `.'
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for gcc option to accept ISO C99... none needed
checking whether __clang__ is declared... no
checking whether __INTEL_COMPILER is declared... no
checking whether __SUNPRO_C is declared... no
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking if gcc supports -Werror=unknown-warning-option... no
checking if gcc supports -Werror=unused-command-line-argument... no
checking if gcc supports -Wall... yes
checking if gcc supports -Wpointer-arith... yes
checking if gcc supports -Wmissing-declarations... yes
checking if gcc supports -Wformat=2... yes
checking if gcc supports -Wstrict-prototypes... yes
checking if gcc supports -Wmissing-prototypes... yes
checking if gcc supports -Wnested-externs... yes
checking if gcc supports -Wbad-function-cast... yes
checking if gcc supports -Wold-style-definition... yes
checking if gcc supports -Wdeclaration-after-statement... yes
checking if gcc supports -Wunused... yes
checking if gcc supports -Wuninitialized... yes
checking if gcc supports -Wshadow... yes
checking if gcc supports -Wmissing-noreturn... yes
checking if gcc supports -Wmissing-format-attribute... yes
checking if gcc supports -Wredundant-decls... yes
checking if gcc supports -Wlogical-op... yes
checking if gcc supports -Werror=implicit... yes
checking if gcc supports -Werror=nonnull... yes
checking if gcc supports -Werror=init-self... yes
checking if gcc supports -Werror=main... yes
checking if gcc supports -Werror=missing-braces... yes
checking if gcc supports -Werror=sequence-point... yes
checking if gcc supports -Werror=return-type... yes
checking if gcc supports -Werror=trigraphs... yes
checking if gcc supports -Werror=array-bounds... yes
checking if gcc supports -Werror=write-strings... yes
checking if gcc supports -Werror=address... yes
checking if gcc supports -Werror=int-to-pointer-cast... yes
checking if gcc supports -Werror=pointer-to-int-cast... yes
checking if gcc supports -pedantic... yes
checking if gcc supports -Werror... yes
checking if gcc supports -Werror=attributes... yes
checking whether make supports nested variables... (cached) yes
checking for pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking err.h usability... yes
checking err.h presence... yes
checking for err.h... yes
checking asm/mtrr.h usability... yes
checking asm/mtrr.h presence... yes
checking for asm/mtrr.h... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating include/Makefile
config.status: creating man/Makefile
config.status: creating src/Makefile
config.status: creating scanpci/Makefile
config.status: creating pciaccess.pc
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands

A build is then successful (didn't perform an install as want to leave the ALmaLinux package installed):

[mr_halfword@haswell-alma libpciaccess]$ make
make  all-recursive
make[1]: Entering directory '/home/mr_halfword/libpciaccess'
Making all in include
make[2]: Entering directory '/home/mr_halfword/libpciaccess/include'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/home/mr_halfword/libpciaccess/include'
Making all in man
make[2]: Entering directory '/home/mr_halfword/libpciaccess/man'
  GEN      scanpci.1
make[2]: Leaving directory '/home/mr_halfword/libpciaccess/man'
Making all in src
make[2]: Entering directory '/home/mr_halfword/libpciaccess/src'
  CC       common_bridge.lo
  CC       common_iterator.lo
  CC       common_init.lo
common_init.c: In function ‘pci_system_cleanup’:
common_init.c:110:3: warning: ‘pci_device_unmap_region’ is deprecated [-Wdeprecated-declarations]
   (void) pci_device_unmap_region( & pci_sys->devices[i].base, j );
   ^
In file included from common_init.c:38:
../include/pciaccess.h:88:18: note: declared here
 int __deprecated pci_device_unmap_region(struct pci_device *dev,
                  ^~~~~~~~~~~~~~~~~~~~~~~
  CC       common_interface.lo
  CC       common_io.lo
  CC       common_capability.lo
  CC       common_device_name.lo
  CC       common_map.lo
  CC       common_vgaarb.lo
  CC       linux_sysfs.lo
  CC       linux_devmem.lo
  CCLD     libpciaccess.la
make[2]: Leaving directory '/home/mr_halfword/libpciaccess/src'
Making all in scanpci
make[2]: Entering directory '/home/mr_halfword/libpciaccess/scanpci'
  CC       scanpci.o
  CCLD     scanpci
make[2]: Leaving directory '/home/mr_halfword/libpciaccess/scanpci'
make[2]: Entering directory '/home/mr_halfword/libpciaccess'
make[2]: Leaving directory '/home/mr_halfword/libpciaccess'
make[1]: Leaving directory '/home/mr_halfword/libpciaccess'
[mr_halfword@haswell-alma libpciaccess]$ ind . -name '*.so'
bash: ind: command not found...
Similar command is: 'idn'
[mr_halfword@haswell-alma libpciaccess]$ find . -name '*.so'
./src/.libs/libpciaccess.so

And a shared library has been created:

[mr_halfword@haswell-alma libpciaccess]$ find . -name '*.so'
./src/.libs/libpciaccess.so

30. Install kernel-doc

[mr_halfword@haswell-alma eclipse_project]$ sudo yum install kernel-doc
[sudo] password for mr_halfword: 
Last metadata expiration check: 2:21:19 ago on Sun 31 Jul 2022 12:30:38 BST.
Dependencies resolved.
================================================================================
 Package          Architecture Version                       Repository    Size
================================================================================
Installing:
 kernel-doc       noarch       4.18.0-372.16.1.el8_6         baseos        26 M

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

Total download size: 26 M
Installed size: 90 M
Is this ok [y/N]: y
Downloading Packages:
kernel-doc-4.18.0-372.16.1.el8_6.noarch.rpm     6.3 MB/s |  26 MB     00:04    
--------------------------------------------------------------------------------
Total                                           5.6 MB/s |  26 MB     00:04     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : kernel-doc-4.18.0-372.16.1.el8_6.noarch                1/1 
  Verifying        : kernel-doc-4.18.0-372.16.1.el8_6.noarch                1/1 

Installed:
  kernel-doc-4.18.0-372.16.1.el8_6.noarch                                       

Complete!

This is to get documentation for the Kernel locally installed. E.g. /usr/share/doc/kernel-doc-4.18.0-372.16.1.el8_6/Documentation/output/admin-guide/mm/pagemap.html

31. Install dpdk-devel

Install dpdk-devel to test using DPDK:

[mr_halfword@haswell-alma ~]$ sudo yum install dpdk-devel
AlmaLinux 8 - BaseOS                            3.2 kB/s | 3.8 kB     00:01    
AlmaLinux 8 - BaseOS                            1.5 MB/s | 2.9 MB     00:01    
AlmaLinux 8 - AppStream                         5.9 kB/s | 4.1 kB     00:00    
AlmaLinux 8 - AppStream                         3.8 MB/s |  10 MB     00:02    
AlmaLinux 8 - Extras                            6.7 kB/s | 3.8 kB     00:00    
AlmaLinux 8 - Extras                             13 kB/s |  18 kB     00:01    
determining the fastest mirror (10 hosts).. done..3 kB/s | 628  B     00:00 ETA
AlmaLinux 8 - devel                             2.7 kB/s | 3.8 kB     00:01    
done.inux 8 - devel 100% [====================] 1.6 kB/s | 628  B     00:00 ETA
AlmaLinux 8 - devel                             2.9 MB/s | 3.4 MB     00:01    
AlmaLinux 8 - PowerTools                        7.0 kB/s | 4.1 kB     00:00    
AlmaLinux 8 - PowerTools                        2.2 MB/s | 2.8 MB     00:01    
ELRepo.org Community Enterprise Linux Repositor  10 kB/s | 3.0 kB     00:00    
ELRepo.org Community Enterprise Linux Repositor 544 kB/s | 238 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64   51 kB/s |  31 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64  3.2 MB/s |  13 MB     00:04    
Extra Packages for Enterprise Linux Modular 8 -  57 kB/s |  31 kB     00:00    
Scooter Software                                5.6 kB/s | 2.9 kB     00:00    
Scooter Software                                2.8 kB/s | 4.6 kB     00:01    
Dependencies resolved.
================================================================================
 Package            Architecture   Version              Repository         Size
================================================================================
Installing:
 dpdk-devel         x86_64         21.11-1.el8          appstream         1.1 M
Installing dependencies:
 dpdk               x86_64         21.11-1.el8          appstream         3.8 M

Transaction Summary
================================================================================
Install  2 Packages

Total download size: 4.9 M
Installed size: 20 M
Is this ok [y/N]: y
Downloading Packages:
(1/2): dpdk-devel-21.11-1.el8.x86_64.rpm        1.6 MB/s | 1.1 MB     00:00    
(2/2): dpdk-21.11-1.el8.x86_64.rpm              3.4 MB/s | 3.8 MB     00:01    
--------------------------------------------------------------------------------
Total                                           3.0 MB/s | 4.9 MB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : dpdk-21.11-1.el8.x86_64                                1/2 
  Installing       : dpdk-devel-21.11-1.el8.x86_64                          2/2 
  Running scriptlet: dpdk-devel-21.11-1.el8.x86_64                          2/2 
/sbin/ldconfig: /etc/ld.so.conf.d/kernel-ml-5.16.4-1.el8.elrepo.x86_64.conf:6: hwcap directive ignored

  Verifying        : dpdk-21.11-1.el8.x86_64                                1/2 
  Verifying        : dpdk-devel-21.11-1.el8.x86_64                          2/2 

Installed:
  dpdk-21.11-1.el8.x86_64             dpdk-devel-21.11-1.el8.x86_64            

Complete!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment