Difference between revisions of "NewLinuxInfo"

From TheBestLinux.com
Jump to navigation Jump to search
Line 3,253: Line 3,253:
 
Complete!
 
Complete!
 
[root@rocky9kvm31 yum.repos.d]#  
 
[root@rocky9kvm31 yum.repos.d]#  
 +
</pre>
 +
<br /><br />
 +
 +
As this update including some "Kernel" packages, the system needs to be rebooted for the new kernel to be booted up and used.
 +
<br /><br />
 +
A simple "sudo reboot" command, without the quotes of course, will force an immediate reboot of the system.
 +
<br /><br />
  
 +
=== '''Using DNF to Install New Software Packages''' ===
 +
In this example, I will demonstrate not only how to install a new package, but a package that actually installs a new software repository as well!
 +
<br /><br />
 +
There is a common repository containing many extra packages for RPM-based system, known as the "Extra Packages for Enterprise Linux", shorted to "EPEL".  This is how to install the "EPEL" software repository.
 +
<br /><br />
 +
Before installing ANY software on a system, it's good practice to ALWAYS first check for all available new software packages, using the "dnf check-update" command, with the "--refresh" switch, as shown here first:
 +
<pre style="color:blue">
 +
[root@rocky9kvm31 ~]# dnf check-update --refresh
 +
Rocky Linux 9 - BaseOS                          3.6 kB/s | 4.1 kB    00:01   
 +
Rocky Linux 9 - AppStream                      7.9 kB/s | 4.5 kB    00:00   
 +
Rocky Linux 9 - Extras                          1.1 kB/s | 2.9 kB    00:02   
 +
[root@rocky9kvm31 ~]#
 
</pre>
 
</pre>
 
<br /><br />
 
<br /><br />
 +
Now, on to the actual installation of the EPEL-Release package, which sets up the EPEL software repository in the required locacation, in the "/etc/yum.repos.d/" directory, as shown here:
 +
<pre style="color:blue">
 +
[root@rocky9kvm31 ~]# dnf install epel-release
 +
Last metadata expiration check: 0:00:15 ago on Fri 15 Nov 2024 04:25:42 PM PST.
 +
Dependencies resolved.
 +
================================================================================
 +
Package              Architecture    Version            Repository      Size
 +
================================================================================
 +
Installing:
 +
epel-release          noarch          9-7.el9            extras          19 k
 +
 +
Transaction Summary
 +
================================================================================
 +
Install  1 Package
 +
 +
Total download size: 19 k
 +
Installed size: 26 k
 +
Is this ok [y/N]: y
 +
Downloading Packages:
 +
epel-release-9-7.el9.noarch.rpm                  40 kB/s |  19 kB    00:00   
 +
--------------------------------------------------------------------------------
 +
Total                                            25 kB/s |  19 kB    00:00   
 +
Running transaction check
 +
Transaction check succeeded.
 +
Running transaction test
 +
Transaction test succeeded.
 +
Running transaction
 +
  Preparing        :                                                        1/1
 +
  Installing      : epel-release-9-7.el9.noarch                            1/1
 +
  Running scriptlet: epel-release-9-7.el9.noarch                            1/1
 +
Many EPEL packages require the CodeReady Builder (CRB) repository.
 +
It is recommended that you run /usr/bin/crb enable to enable the CRB repository.
 +
 +
  Verifying        : epel-release-9-7.el9.noarch                            1/1
 +
 +
Installed:
 +
  epel-release-9-7.el9.noarch                                                 
 +
 +
Complete!
 +
[root@rocky9kvm31 ~]#
 +
</pre>
 +
<br /><br />
 +
  
 
Here is an example of how to use '''dnf''' to first search for, and then install over the internet, Blender, a very powerful tool to create your own custom animation, simulations and movies:
 
Here is an example of how to use '''dnf''' to first search for, and then install over the internet, Blender, a very powerful tool to create your own custom animation, simulations and movies:

Revision as of 01:48, 16 November 2024

Guides, Info & Tips on New Modern Linux Server Administration

Modern Server Administration of Critical Systems


This information pertains to very modern recent relases of Redhat based distributions, including the latest releases of CentOS and Fedora, which has had most of these service upgrades and replacements for the last few years now!



Basic Linux System Commands - System Management


TMUX - Terminal Multiplexer

TMUX is what I consider one of the most invaluable tools when it comes to managing and administering Linux servers from the command line. Among it's many features is it's ability to keep your shell connection running in the event of beding disconnected from a remote SSH session. If used properly, it allows you to reconnect to your SSH session you had running, along with whatever applicatoins, scripts, etc, you had running, without losing a beat! It's really handhy to be able to reconnect to a remote session that was inadvertently disconnected! TMUX has saved my butt many times over the years! It also can be used to open multiple shell connections all in the same window, allowing you to split one terminal into two, four, and so on! Plus, you can share the terminal with other remote users, so they can see waht you are typing, and they can also type and you control the same shell! That comes in very handy when you need to show someone how to do something within a shell.

Here is the very simple installation process on a Red Hat based distribution, on Rocky Linux 9.2:


[jamie@rocky9vm32.dawgland.com:~]$ sudo dnf install tmux
Last metadata expiration check: 1:30:38 ago on Thu 05 Oct 2023 12:25:59 AM PDT.
Dependencies resolved.
================================================================================
 Package        Architecture     Version                 Repository        Size
================================================================================
Installing:
 tmux           x86_64           3.2a-4.el9              baseos           474 k

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

Total download size: 474 k
Installed size: 1.1 M
Is this ok [y/N]: y
Downloading Packages:
tmux-3.2a-4.el9.x86_64.rpm                      612 kB/s | 474 kB     00:00    
--------------------------------------------------------------------------------
Total                                           270 kB/s | 474 kB     00:01     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : tmux-3.2a-4.el9.x86_64                                 1/1 
  Running scriptlet: tmux-3.2a-4.el9.x86_64                                 1/1 
  Verifying        : tmux-3.2a-4.el9.x86_64                                 1/1 

Installed:
  tmux-3.2a-4.el9.x86_64                                                        

Complete!
[jamie@rocky9vm32.dawgland.com:~]$



Using TMUX

Using TMUX is as simple as just typing it's name. It will change the color and look of your prompt to indicate it's running.


System Power Off & Reboot

The "shutdown" command has a number of arguments that control how it behaves, such as shutting completely down, or rebooting, with options to send system-wide broadcast messages to all logged in users, apply a delay before shutting down, and other options.

For a simple quick reboot, the alias "reboot" causes an immediate shutdown and startup, resulting in a reboot, hence the name of the command!

As with most all system control commands, you must have eleveated privilges to be the root user, or a memeber of the correct group to allow for usage of sudo to run commands as the root, aka, superuser/administrator. So, as the root user, just typing "reboot" from the command line causes in immediate system reboot without warning or options! If you are not logged in as the root user, then using sudo, assuming you are in the corect sudoers group, to allow you to run the command as if you were logged in as the root user. The command "sudo reboot" then causes an immediate reboot without warning.

The real command to shutdown and reboot the system is the "shutdown" command, with appropriate switches and/or arguments. For instance, to reboot the system now, just as before, but using the shutdown command, the full command to reboot using the shutdown command is as follows:

[jamie@rocky9vm35.dawgland2.com:~]$ sudo shutdown -r now
[jamie@rocky9vm35.dawgland2.com:~]$ Connection to rocky9vm35 closed by remote host.
Connection to rocky9vm35 closed.



To shut down a system completely, without starting it back up, instead of using the "-r" switch without the quotes, as in the previous example, you use the "-h" switch, without the quotes, as in this example:

[jamie@rocky9vm35.dawgland2.com:~]$ sudo shutdown -h now
[jamie@rocky9vm35.dawgland2.com:~]$ Connection to rocky9vm35 closed by remote host.
Connection to rocky9vm35 closed.



To add a time deley to the shutdown command, so as to allow logged in userrs to have time to log out cleanly, modify the command as follows to include a 30 second time delay before actually shutting down, as show here:

[jamie@rocky9vm35.dawgland2.com:~]$ sudo shutdown -h -t 30
Shutdown scheduled for Mon 2023-09-11 19:15:53 PDT, use 'shutdown -c' to cancel.
[jamie@rocky9vm35.dawgland2.com:~]$ Connection to rocky9vm35 closed by remote host.
Connection to rocky9vm35 closed.



Users logged into the same machine will see messages similiar to this when a time delay is given to the shutdown command:

[jamie@rocky9vm35.dawgland2.com:~]$ 
Broadcast message from root@rocky9vm35.dawgland2.com on pts/0 (Mon 2023-09-11 19:14:53 PDT):

The system will power off at Mon 2023-09-11 19:15:53 PDT!


Broadcast message from root@rocky9vm35.dawgland2.com on pts/0 (Mon 2023-09-11 19:15:53 PDT):

The system will power off now!

Connection to rocky9vm35 closed by remote host.
Connection to rocky9vm35 closed.



And last, but certently not lease, here is an example to reboot a system in ONE minute, while broadcasting a custom message to all logged on users:

[jamie@rocky9vm35.dawgland2.com:~]$ sudo shutdown -r +1 "This Server, Rocky9VM35, will be going down in ONE MINUTE for a quick reboot. Please finish up your work and log off immediatelly!"



This produces these messages in the terminal that called the command:

Reboot scheduled for Mon 2023-09-11 19:33:46 PDT, use 'shutdown -c' to cancel.
[jamie@rocky9vm35.dawgland2.com:~]$ Connection to rocky9vm35 closed by remote host.
Connection to rocky9vm35 closed.



Other users logged into the same system will receive messages similar to these:

[jamie@rocky9vm35.dawgland2.com:~]$ 
Broadcast message from root@rocky9vm35.dawgland2.com on pts/0 (Mon 2023-09-11 19:32:46 PDT):

This Server, Rocky9VM35, will be going down in ONE MINUTE for a quick reboot. Please finish up your work and log off immediatelly!
The system will reboot at Mon 2023-09-11 19:33:46 PDT!


Broadcast message from root@rocky9vm35.dawgland2.com on pts/0 (Mon 2023-09-11 19:33:46 PDT):

This Server, Rocky9VM35, will be going down in ONE MINUTE for a quick reboot. Please finish up your work and log off immediatelly!
The system will reboot now!

Connection to rocky9vm35 closed by remote host.
Connection to rocky9vm35 closed.



systemctl

init.d Retired!

The first such service upgrade actually replaced most, if not all of the service init.d startup & shutdown scripts with a very different way of managing the startup, status and shutdown of services, such as the Apache webserver, the CUPS print server, the secure shell, aka the SSH server, and all of the other services that used to be controlled by shell scripts located in the /etc/init.d/ directory. This directory still exists so that in the event that an old legacy service needs to still be managed by the init.d shell scripts, due to the service not yet having the required setup to be managed by the replacement of all of those scripts:



Query Service Status

For instance, here is an example of systemctl being used to query the Secure Shell Server(SSH):

[root@fc24 ~]# systemctl status sshd.service
● sshd.service - OpenSSH server daemon
   Loaded: loaded (/usr/lib/systemd/system/sshd.service; enabled; vendor pres
   Active: active (running) since Sun 2016-09-11 01:12:21 PDT; 1h 20min ago
     Docs: man:sshd(8)
           man:sshd_config(5)
  Process: 791 ExecStart=/usr/sbin/sshd $OPTIONS (code=exited, status=0/SUCCE
 Main PID: 810 (sshd)
    Tasks: 1 (limit: 512)
   CGroup: /system.slice/sshd.service
           └─810 /usr/sbin/sshd

Sep 11 01:12:20 fc24.dawgland.com systemd[1]: Starting OpenSSH server daemon.
Sep 11 01:12:21 fc24.dawgland.com systemd[1]: sshd.service: PID file /var/run
Sep 11 01:12:21 fc24.dawgland.com sshd[810]: Server listening on 0.0.0.0 port
Sep 11 01:12:21 fc24.dawgland.com systemd[1]: Started OpenSSH server daemon.
lines 1-15/15 (END)



Stopping a Service

This is what is looks like after stopping the SSH server:

[root@fc24 ~]# systemctl stop sshd.service
[root@fc24 ~]# systemctl status sshd.service
● sshd.service - OpenSSH server daemon
   Loaded: loaded (/usr/lib/systemd/system/sshd.service; enabled; vendor pres
   Active: inactive (dead) since Sun 2016-09-11 02:38:55 PDT; 10s ago
     Docs: man:sshd(8)
           man:sshd_config(5)
  Process: 791 ExecStart=/usr/sbin/sshd $OPTIONS (code=exited, status=0/SUCCE
 Main PID: 810 (code=exited, status=0/SUCCESS)

Sep 11 01:12:20 fc24.dawgland.com systemd[1]: Starting OpenSSH server daemon.
Sep 11 01:12:21 fc24.dawgland.com systemd[1]: sshd.service: PID file /var/run
Sep 11 01:12:21 fc24.dawgland.com sshd[810]: Server listening on 0.0.0.0 port
Sep 11 01:12:21 fc24.dawgland.com systemd[1]: Started OpenSSH server daemon.
Sep 11 02:38:55 fc24.dawgland.com systemd[1]: Stopping OpenSSH server daemon.
Sep 11 02:38:55 fc24.dawgland.com systemd[1]: Stopped OpenSSH server daemon.
lines 1-14/14 (END)



Starting a Service Back Up

And this is the command to start it back up, and because there is no output after starting it, I've also included the output of the status once again after starting the Secure Shell Server back up:

[root@fc24 ~]# systemctl start sshd.service
[root@fc24 ~]# systemctl status sshd.service
● sshd.service - OpenSSH server daemon
   Loaded: loaded (/usr/lib/systemd/system/sshd.service; enabled; vendor pres
   Active: active (running) since Sun 2016-09-11 02:42:38 PDT; 9s ago
     Docs: man:sshd(8)
           man:sshd_config(5)
  Process: 2801 ExecStart=/usr/sbin/sshd $OPTIONS (code=exited, status=0/SUCC
 Main PID: 2803 (sshd)
    Tasks: 1 (limit: 512)
   CGroup: /system.slice/sshd.service
           └─2803 /usr/sbin/sshd

Sep 11 02:42:38 fc24.dawgland.com systemd[1]: Starting OpenSSH server daemon.
Sep 11 02:42:38 fc24.dawgland.com systemd[1]: sshd.service: PID file /var/run
Sep 11 02:42:38 fc24.dawgland.com sshd[2803]: Server listening on 0.0.0.0 por
Sep 11 02:42:38 fc24.dawgland.com systemd[1]: Started OpenSSH server daemon.
lines 1-15/15 (END)



Disabling a Service


To Disable a service, usually replacing status, start, or stop with "disable" works to disable most services, but sometimes, it doesn't always work, and you also need to "mask" the service as well.

Using Mask to Forcefully Disable a Service

This proved to be the case with the RPCBIND.service. After stopping and disabling the service, a reboot caused the service to be re-enabled and started back up. To have the service disabled and that state saved after a reboot, the "mask" argument is given to the systemctl command. For instance, in the case of RPCBIND.service, this is how to disable it:
(In the below example, ONLY the 3 commands starting with systemctl are typed by the root superuser)

[root@vm1 ~]# systemctl stop rpcbind.service
Warning: Stopping rpcbind.service, but it can still be activated by:
  rpcbind.socket
[root@vm1 ~]# systemctl disable rpcbind.service
[root@vm1 ~]# systemctl mask rpcbind.service
ln -s '/dev/null' '/etc/systemd/system/rpcbind.service



Changing the Default Run Level the Systemd Way


To change the default run-level from booting up into the Graphical User Interface(GUI) into straight text multi-user, which is preferable on a server, the old method involved editing the /etc/inittab file changing the default runlevel from 5 to 3, as shown here:

id:3:initdefault:



On modern RPM based systems, this has been replaced by using the systemctl command to create/change the symlink /etc/systemd/system/default.target to point to /lib/systemd/multi-user.target, and visa-versa to switch back to the GUI bootup mode. This can be done manually using the shell "ln -sf" symlink creation command, or more easily, and more importantly, more standardized with the systemctl command, as shown here. The following 3 commands show how to first check the default runlevel target, then change it from graphical to text-based multi-user, and then the 3rd command show's confirmation the command was successful.

[root@fc21 ~]# systemctl get-default
graphical.target
[root@fc21 ~]# systemctl set-default multi-user.target
Removed symlink /etc/systemd/system/default.target.
Created symlink from /etc/systemd/system/default.target to /usr/lib/systemd/system/multi-user.target.
[root@fc21 ~]# systemctl get-default
multi-user.target

DNF - Software Package Management - Update Your System & Install New Software


Another BIG change to a "more modern" way of managing all of the software packages on your Linux machine, is the dnf command that is a direct drop-in replacement for yum, the old, tried and true RPM package manager that for going on 20 years has been the main interface to manage Linux software installations, taking into account all of the required dependencies, as well as uninstalling, more commonly referred to "removing" software packages.

Basic Updates - Using DNF to manually check for and then install updates to currently install software packages on the system

This is extremely important to ensure any and all security patches are installed as soon as they are released. I run this command manually every day on my "active" servers I am currently working on. Other servers and workstations should be setup to automatically install security updates without user intervention. That is a totally different topic to be covered in a later section.

Here is an example of how to manually check for available updates to currently install software on a virtual Rocky Linux 9 server:

[root@rocky9kvm31 yum.repos.d]# dnf check-update --refresh
Rocky Linux 9 - BaseOS                          4.2 kB/s | 4.1 kB     00:00    
Rocky Linux 9 - AppStream                       6.5 kB/s | 4.5 kB     00:00    
Rocky Linux 9 - Extras                          3.9 kB/s | 2.9 kB     00:00    

NetworkManager.x86_64                 1:1.46.0-19.el9_4                baseos   
NetworkManager-libnm.x86_64           1:1.46.0-19.el9_4                baseos   
NetworkManager-team.x86_64            1:1.46.0-19.el9_4                baseos   
NetworkManager-tui.x86_64             1:1.46.0-19.el9_4                baseos   
PackageKit.x86_64                     1.2.6-1.el9                      appstream
PackageKit-glib.x86_64                1.2.6-1.el9                      appstream
acl.x86_64                            2.3.1-4.el9                      baseos   
alternatives.x86_64                   1.24-1.el9                       baseos   
audit.x86_64                          3.1.2-2.el9                      baseos   
audit-libs.x86_64                     3.1.2-2.el9                      baseos   
authselect.x86_64                     1.2.6-2.el9                      baseos   
authselect-libs.x86_64                1.2.6-2.el9                      baseos   
avahi-libs.x86_64                     0.8-20.el9                       baseos   
basesystem.noarch                     11-13.el9.0.1                    baseos   
bash.x86_64                           5.1.8-9.el9                      baseos   
bash-completion.noarch                1:2.11-5.el9                     baseos   
bind-libs.x86_64                      32:9.16.23-18.el9_4.6            appstream
bind-license.noarch                   32:9.16.23-18.el9_4.6            appstream
bind-utils.x86_64                     32:9.16.23-18.el9_4.6            appstream
binutils.x86_64                       2.35.2-43.el9                    baseos   
binutils-gold.x86_64                  2.35.2-43.el9                    baseos   
bpftool.x86_64                        7.3.0-427.42.1.el9_4             baseos   
c-ares.x86_64                         1.19.1-2.el9_4                   baseos   
ca-certificates.noarch                2024.2.69_v8.0.303-91.4.el9_4    baseos   
checkpolicy.x86_64                    3.6-1.el9                        appstream
chrony.x86_64                         4.5-1.el9                        baseos   
cockpit.x86_64                        311.2-1.el9_4                    baseos   
cockpit-bridge.x86_64                 311.2-1.el9_4                    baseos   
cockpit-packagekit.noarch             311.2-1.el9_4                    appstream
cockpit-system.noarch                 311.2-1.el9_4                    baseos   
cockpit-ws.x86_64                     311.2-1.el9_4                    baseos   
coreutils.x86_64                      8.32-35.el9                      baseos   
coreutils-common.x86_64               8.32-35.el9                      baseos   
cronie.x86_64                         1.5.7-11.el9                     baseos   
cronie-anacron.x86_64                 1.5.7-11.el9                     baseos   
crypto-policies.noarch                20240202-1.git283706d.el9        baseos   
crypto-policies-scripts.noarch        20240202-1.git283706d.el9        baseos   
cryptsetup.x86_64                     2.6.0-3.el9                      baseos   
cryptsetup-libs.x86_64                2.6.0-3.el9                      baseos   
curl.x86_64                           7.76.1-29.el9_4.1                baseos   
dbus.x86_64                           1:1.12.20-8.el9                  baseos   
dbus-common.noarch                    1:1.12.20-8.el9                  baseos   
dbus-libs.x86_64                      1:1.12.20-8.el9                  baseos   
device-mapper.x86_64                  9:1.02.197-2.el9                 baseos   
device-mapper-event.x86_64            9:1.02.197-2.el9                 baseos   
device-mapper-event-libs.x86_64       9:1.02.197-2.el9                 baseos   
device-mapper-libs.x86_64             9:1.02.197-2.el9                 baseos   
device-mapper-persistent-data.x86_64  1.0.9-3.el9_4                    baseos   
dmidecode.x86_64                      1:3.5-3.el9                      baseos   
dnf-plugins-core.noarch               4.3.0-13.el9                     baseos   
dracut.x86_64                         057-53.git20240104.el9           baseos   
dracut-config-rescue.x86_64           057-53.git20240104.el9           baseos   
dracut-network.x86_64                 057-53.git20240104.el9           baseos   
dracut-squash.x86_64                  057-53.git20240104.el9           baseos   
e2fsprogs.x86_64                      1.46.5-5.el9                     baseos   
e2fsprogs-libs.x86_64                 1.46.5-5.el9                     baseos   
elfutils-debuginfod-client.x86_64     0.190-2.el9                      baseos   
elfutils-default-yama-scope.noarch    0.190-2.el9                      baseos   
elfutils-libelf.x86_64                0.190-2.el9                      baseos   
elfutils-libs.x86_64                  0.190-2.el9                      baseos   
emacs-filesystem.noarch               1:27.2-10.el9_4                  appstream
ethtool.x86_64                        2:6.2-1.el9                      baseos   
expat.x86_64                          2.5.0-2.el9_4.1                  baseos   
file.x86_64                           5.39-16.el9                      baseos   
file-libs.x86_64                      5.39-16.el9                      baseos   
findutils.x86_64                      1:4.8.0-6.el9                    baseos   
firewalld.noarch                      1.3.4-1.el9                      baseos   
firewalld-filesystem.noarch           1.3.4-1.el9                      baseos   
fuse-common.x86_64                    3.10.2-8.el9                     baseos   
gdk-pixbuf2.x86_64                    2.42.6-4.el9_4                   appstream
gettext.x86_64                        0.21-8.el9                       baseos   
gettext-libs.x86_64                   0.21-8.el9                       baseos   
glib2.x86_64                          2.68.4-14.el9_4.1                baseos   
glibc.x86_64                          2.34-100.el9_4.4                 baseos   
glibc-common.x86_64                   2.34-100.el9_4.4                 baseos   
glibc-gconv-extra.x86_64              2.34-100.el9_4.4                 baseos   
glibc-langpack-en.x86_64              2.34-100.el9_4.4                 baseos   
gmp.x86_64                            1:6.2.0-13.el9                   baseos   
gnupg2.x86_64                         2.3.3-4.el9                      baseos   
gnutls.x86_64                         3.8.3-4.el9_4                    baseos   
grub2-common.noarch                   1:2.06-82.el9_4                  baseos   
grub2-pc.x86_64                       1:2.06-82.el9_4                  baseos   
grub2-pc-modules.noarch               1:2.06-82.el9_4                  baseos   
grub2-tools.x86_64                    1:2.06-82.el9_4                  baseos   
grub2-tools-minimal.x86_64            1:2.06-82.el9_4                  baseos   
grubby.x86_64                         8.40-64.el9                      baseos   
harfbuzz.x86_64                       2.7.4-10.el9                     baseos   
hwdata.noarch                         0.348-9.13.el9                   baseos   
hyperv-daemons.x86_64                 0-0.42.20190303git.el9           appstream
hyperv-daemons-license.noarch         0-0.42.20190303git.el9           appstream
hypervfcopyd.x86_64                   0-0.42.20190303git.el9           appstream
hypervkvpd.x86_64                     0-0.42.20190303git.el9           appstream
hypervvssd.x86_64                     0-0.42.20190303git.el9           appstream
initscripts-rename-device.x86_64      10.11.6-1.el9                    baseos   
initscripts-service.noarch            10.11.6-1.el9                    baseos   
iproute.x86_64                        6.2.0-6.el9_4                    baseos   
iproute-tc.x86_64                     6.2.0-6.el9_4                    baseos   
iptables-libs.x86_64                  1.8.10-4.el9_4                   baseos   
iptables-nft.x86_64                   1.8.10-4.el9_4                   baseos   
iputils.x86_64                        20210202-9.el9                   baseos   
irqbalance.x86_64                     2:1.9.2-3.el9                    baseos   
iwl100-firmware.noarch                39.31.5.1-143.3.el9_4            baseos   
iwl1000-firmware.noarch               1:39.31.5.1-143.3.el9_4          baseos   
iwl105-firmware.noarch                18.168.6.1-143.3.el9_4           baseos   
iwl135-firmware.noarch                18.168.6.1-143.3.el9_4           baseos   
iwl2000-firmware.noarch               18.168.6.1-143.3.el9_4           baseos   
iwl2030-firmware.noarch               18.168.6.1-143.3.el9_4           baseos   
iwl3160-firmware.noarch               1:25.30.13.0-143.3.el9_4         baseos   
iwl5000-firmware.noarch               8.83.5.1_1-143.3.el9_4           baseos   
iwl5150-firmware.noarch               8.24.2.2-143.3.el9_4             baseos   
iwl6000g2a-firmware.noarch            18.168.6.1-143.3.el9_4           baseos   
iwl6050-firmware.noarch               41.28.5.1-143.3.el9_4            baseos   
iwl7260-firmware.noarch               1:25.30.13.0-143.3.el9_4         baseos   
kbd.x86_64                            2.4.0-9.el9                      baseos   
kbd-misc.noarch                       2.4.0-9.el9                      baseos   
kernel.x86_64                         5.14.0-427.42.1.el9_4            baseos   
kernel-core.x86_64                    5.14.0-427.42.1.el9_4            baseos   
kernel-modules.x86_64                 5.14.0-427.42.1.el9_4            baseos   
kernel-modules-core.x86_64            5.14.0-427.42.1.el9_4            baseos   
kernel-tools.x86_64                   5.14.0-427.42.1.el9_4            baseos   
kernel-tools-libs.x86_64              5.14.0-427.42.1.el9_4            baseos   
kexec-tools.x86_64                    2.0.27-8.el9_4.3                 baseos   
kmod.x86_64                           28-9.el9                         baseos   
kmod-kvdo.x86_64                      8.2.3.3-117.el9                  baseos   
kmod-libs.x86_64                      28-9.el9                         baseos   
kpartx.x86_64                         0.8.7-27.el9                     baseos   
krb5-libs.x86_64                      1.21.1-2.el9_4                   baseos   
ledmon.x86_64                         0.97-1.el9                       baseos   
less.x86_64                           590-4.el9_4                      baseos   
libX11.x86_64                         1.7.0-9.el9                      appstream
libX11-common.noarch                  1.7.0-9.el9                      appstream
libacl.x86_64                         2.3.1-4.el9                      baseos   
libappstream-glib.x86_64              0.7.18-5.el9_4                   appstream
libarchive.x86_64                     3.5.3-4.el9.0.1                  baseos   
libatomic.x86_64                      11.4.1-3.el9                     baseos   
libblkid.x86_64                       2.37.4-18.el9                    baseos   
libbpf.x86_64                         2:1.3.0-2.el9                    baseos   
libcap.x86_64                         2.48-9.el9_2                     baseos   
libcom_err.x86_64                     1.46.5-5.el9                     baseos   
libcurl.x86_64                        7.76.1-29.el9_4.1                baseos   
libdnf.x86_64                         0.69.0-8.el9_4.1                 baseos   
libdrm.x86_64                         2.4.117-1.el9                    appstream
libeconf.x86_64                       0.4.1-3.el9_2                    baseos   
libedit.x86_64                        3.1-38.20210216cvs.el9           baseos   
libevent.x86_64                       2.1.12-8.el9_4                   baseos   
libfastjson.x86_64                    0.99.9-5.el9                     appstream
libfdisk.x86_64                       2.37.4-18.el9                    baseos   
libffi.x86_64                         3.4.2-8.el9                      baseos   
libfido2.x86_64                       1.13.0-2.el9                     baseos   
libfprint.x86_64                      1.94.6-1.el9                     appstream
libgcc.x86_64                         11.4.1-3.el9                     baseos   
libgomp.x86_64                        11.4.1-3.el9                     baseos   
libgusb.x86_64                        0.3.8-2.el9                      baseos   
libibverbs.x86_64                     48.0-1.el9                       baseos   
libipa_hbac.x86_64                    2.9.4-6.el9_4.1                  baseos   
libjpeg-turbo.x86_64                  2.0.90-7.el9                     appstream
libkcapi.x86_64                       1.4.0-2.el9                      baseos   
libkcapi-hmaccalc.x86_64              1.4.0-2.el9                      baseos   
libldb.x86_64                         2.8.0-2.el9_4                    baseos   
libmnl.x86_64                         1.0.4-16.el9_4                   baseos   
libmount.x86_64                       2.37.4-18.el9                    baseos   
libndp.x86_64                         1.8-6.el9_4                      baseos   
libnftnl.x86_64                       1.2.6-4.el9_4                    baseos   
libnghttp2.x86_64                     1.43.0-5.el9_4.3                 baseos   
libnl3.x86_64                         3.9.0-1.el9                      baseos   
libnl3-cli.x86_64                     3.9.0-1.el9                      baseos   
libnvme.x86_64                        1.6-1.el9                        baseos   
librelp.x86_64                        1.10.0-5.el9                     appstream
librepo.x86_64                        1.14.5-2.el9                     baseos   
librsvg2.x86_64                       2.50.7-3.el9                     appstream
librsvg2-tools.x86_64                 2.50.7-3.el9                     appstream
libselinux.x86_64                     3.6-1.el9                        baseos   
libselinux-utils.x86_64               3.6-1.el9                        baseos   
libsemanage.x86_64                    3.6-1.el9                        baseos   
libsepol.x86_64                       3.6-1.el9                        baseos   
libsmartcols.x86_64                   2.37.4-18.el9                    baseos   
libsmbclient.x86_64                   4.19.4-105.el9_4                 baseos   
libsolv.x86_64                        0.7.24-2.el9                     baseos   
libss.x86_64                          1.46.5-5.el9                     baseos   
libssh.x86_64                         0.10.4-13.el9                    baseos   
libssh-config.noarch                  0.10.4-13.el9                    baseos   
libsss_certmap.x86_64                 2.9.4-6.el9_4.1                  baseos   
libsss_idmap.x86_64                   2.9.4-6.el9_4.1                  baseos   
libsss_nss_idmap.x86_64               2.9.4-6.el9_4.1                  baseos   
libsss_sudo.x86_64                    2.9.4-6.el9_4.1                  baseos   
libstdc++.x86_64                      11.4.1-3.el9                     baseos   
libstoragemgmt.x86_64                 1.9.7-2.el9                      appstream
libtalloc.x86_64                      2.4.1-1.el9                      baseos   
libtdb.x86_64                         1.4.9-1.el9                      baseos   
libtevent.x86_64                      0.16.0-1.el9                     baseos   
libtirpc.x86_64                       1.3.3-8.el9_4                    baseos   
libuser.x86_64                        0.63-13.el9                      baseos   
libuuid.x86_64                        2.37.4-18.el9                    baseos   
libuv.x86_64                          1:1.42.0-2.el9_4                 appstream
libwbclient.x86_64                    4.19.4-105.el9_4                 baseos   
libxml2.x86_64                        2.9.13-6.el9_4                   baseos   
linux-firmware.noarch                 20240905-143.3.el9_4             baseos   
linux-firmware-whence.noarch          20240905-143.3.el9_4             baseos   
lshw.x86_64                           B.02.19.2-10.el9                 baseos   
lua-libs.x86_64                       5.4.4-4.el9                      baseos   
lvm2.x86_64                           9:2.03.23-2.el9                  baseos   
lvm2-libs.x86_64                      9:2.03.23-2.el9                  baseos   
man-pages.noarch                      6.04-1.el9                       baseos   
mcelog.x86_64                         3:195-0.el9                      baseos   
mdadm.x86_64                          4.2-14.el9_4                     baseos   
microcode_ctl.noarch                  4:20230808-2.20240910.1.el9_4    baseos   
mtr.x86_64                            2:0.94-6.el9_4                   baseos   
ncurses.x86_64                        6.2-10.20210508.el9              baseos   
ncurses-base.noarch                   6.2-10.20210508.el9              baseos   
ncurses-libs.x86_64                   6.2-10.20210508.el9              baseos   
nettle.x86_64                         3.9.1-1.el9                      baseos   
nftables.x86_64                       1:1.0.9-1.el9                    baseos   
nmap-ncat.x86_64                      3:7.92-1.el9                     appstream
nspr.x86_64                           4.35.0-14.el9_4                  appstream
nss.x86_64                            3.101.0-7.el9_4                  appstream
nss-softokn.x86_64                    3.101.0-7.el9_4                  appstream
nss-softokn-freebl.x86_64             3.101.0-7.el9_4                  appstream
nss-sysinit.x86_64                    3.101.0-7.el9_4                  appstream
nss-util.x86_64                       3.101.0-7.el9_4                  appstream
numactl-libs.x86_64                   2.0.16-3.el9                     baseos   
nvme-cli.x86_64                       2.6-5.el9                        baseos   
open-vm-tools.x86_64                  12.3.5-2.el9                     appstream
openldap.x86_64                       2.6.6-3.el9                      baseos   
openssh.x86_64                        8.7p1-38.el9_4.4                 baseos   
openssh-clients.x86_64                8.7p1-38.el9_4.4                 baseos   
openssh-server.x86_64                 8.7p1-38.el9_4.4                 baseos   
openssl.x86_64                        1:3.0.7-28.el9_4                 baseos   
openssl-libs.x86_64                   1:3.0.7-28.el9_4                 baseos   
p11-kit.x86_64                        0.25.3-2.el9                     baseos   
p11-kit-trust.x86_64                  0.25.3-2.el9                     baseos   
p11-kit-trust.x86_64                  0.25.3-2.el9                     appstream
pam.x86_64                            1.5.1-19.el9                     baseos   
pcre2.x86_64                          10.40-5.el9                      baseos   
pcre2-syntax.noarch                   10.40-5.el9                      baseos   
pixman.x86_64                         0.40.0-6.el9_3                   appstream
plymouth.x86_64                       0.9.5-7.20210331git1ea1020.el9   appstream
plymouth-core-libs.x86_64             0.9.5-7.20210331git1ea1020.el9   appstream
plymouth-scripts.x86_64               0.9.5-7.20210331git1ea1020.el9   appstream
policycoreutils.x86_64                3.6-2.1.el9                      baseos   
policycoreutils-python-utils.noarch   3.6-2.1.el9                      appstream
procps-ng.x86_64                      3.3.17-14.el9                    baseos   
protobuf-c.x86_64                     1.3.3-13.el9                     baseos   
python-unversioned-command.noarch     3.9.18-3.el9_4.6                 appstream
python3.x86_64                        3.9.18-3.el9_4.6                 baseos   
python3-audit.x86_64                  3.1.2-2.el9                      appstream
python3-dateutil.noarch               1:2.8.1-7.el9                    baseos   
python3-dbus.x86_64                   1.2.18-2.el9.0.1                 baseos   
python3-dnf-plugins-core.noarch       4.3.0-13.el9                     baseos   
python3-file-magic.noarch             5.39-16.el9                      appstream
python3-firewall.noarch               1.3.4-1.el9                      baseos   
python3-hawkey.x86_64                 0.69.0-8.el9_4.1                 baseos   
python3-idna.noarch                   2.10-7.el9_4.1                   baseos   
python3-libdnf.x86_64                 0.69.0-8.el9_4.1                 baseos   
python3-libs.x86_64                   3.9.18-3.el9_4.6                 baseos   
python3-libselinux.x86_64             3.6-1.el9                        appstream
python3-libsemanage.x86_64            3.6-1.el9                        appstream
python3-libstoragemgmt.x86_64         1.9.7-2.el9                      appstream
python3-libxml2.x86_64                2.9.13-6.el9_4                   baseos   
python3-linux-procfs.noarch           0.7.3-1.el9                      baseos   
python3-nftables.x86_64               1:1.0.9-1.el9                    baseos   
python3-perf.x86_64                   5.14.0-427.42.1.el9_4            baseos   
python3-pip-wheel.noarch              21.2.3-8.el9                     baseos   
python3-policycoreutils.noarch        3.6-2.1.el9                      appstream
python3-requests.noarch               2.25.1-8.el9                     baseos   
python3-rpm.x86_64                    4.16.1.3-29.el9                  baseos   
python3-setools.x86_64                4.4.4-1.el9                      baseos   
python3-setuptools.noarch             53.0.0-12.el9_4.1                baseos   
python3-setuptools-wheel.noarch       53.0.0-12.el9_4.1                baseos   
python3-tracer.noarch                 1.1-2.el9                        appstream
python3-urllib3.noarch                1.26.5-5.el9_4.1                 baseos   
qemu-guest-agent.x86_64               17:8.2.0-11.el9_4.6              appstream
realmd.x86_64                         0.17.1-2.el9                     baseos   
rocky-gpg-keys.noarch                 9.4-1.7.el9                      baseos   
rocky-logos.x86_64                    90.15-2.el9                      appstream
rocky-release.noarch                  9.4-1.7.el9                      baseos   
rocky-repos.noarch                    9.4-1.7.el9                      baseos   
rpm.x86_64                            4.16.1.3-29.el9                  baseos   
rpm-build-libs.x86_64                 4.16.1.3-29.el9                  baseos   
rpm-libs.x86_64                       4.16.1.3-29.el9                  baseos   
rpm-plugin-audit.x86_64               4.16.1.3-29.el9                  baseos   
rpm-plugin-selinux.x86_64             4.16.1.3-29.el9                  baseos   
rpm-plugin-systemd-inhibit.x86_64     4.16.1.3-29.el9                  appstream
rpm-sign-libs.x86_64                  4.16.1.3-29.el9                  baseos   
rsyslog.x86_64                        8.2310.0-4.el9                   appstream
rsyslog-gnutls.x86_64                 8.2310.0-4.el9                   appstream
rsyslog-gssapi.x86_64                 8.2310.0-4.el9                   appstream
rsyslog-logrotate.x86_64              8.2310.0-4.el9                   appstream
rsyslog-relp.x86_64                   8.2310.0-4.el9                   appstream
samba-client-libs.x86_64              4.19.4-105.el9_4                 baseos   
samba-common.noarch                   4.19.4-105.el9_4                 baseos   
samba-common-libs.x86_64              4.19.4-105.el9_4                 baseos   
selinux-policy.noarch                 38.1.35-2.el9_4.2.0.2            baseos   
selinux-policy-targeted.noarch        38.1.35-2.el9_4.2.0.2            baseos   
setroubleshoot-server.x86_64          3.3.32-1.el9                     appstream
setup.noarch                          2.13.7-10.el9                    baseos   
shadow-utils.x86_64                   2:4.9-8.el9                      baseos   
smartmontools.x86_64                  1:7.2-9.el9                      baseos   
sos.noarch                            4.7.2-3.el9                      baseos   
sqlite-libs.x86_64                    3.34.1-7.el9_3                   baseos   
squashfs-tools.x86_64                 4.4-10.git1.el9                  baseos   
sssd.x86_64                           2.9.4-6.el9_4.1                  baseos   
sssd-ad.x86_64                        2.9.4-6.el9_4.1                  baseos   
sssd-client.x86_64                    2.9.4-6.el9_4.1                  baseos   
sssd-common.x86_64                    2.9.4-6.el9_4.1                  baseos   
sssd-common-pac.x86_64                2.9.4-6.el9_4.1                  baseos   
sssd-ipa.x86_64                       2.9.4-6.el9_4.1                  baseos   
sssd-kcm.x86_64                       2.9.4-6.el9_4.1                  baseos   
sssd-krb5.x86_64                      2.9.4-6.el9_4.1                  baseos   
sssd-krb5-common.x86_64               2.9.4-6.el9_4.1                  baseos   
sssd-ldap.x86_64                      2.9.4-6.el9_4.1                  baseos   
sssd-proxy.x86_64                     2.9.4-6.el9_4.1                  baseos   
sudo.x86_64                           1.9.5p2-10.el9_3                 baseos   
systemd.x86_64                        252-32.el9_4.7                   baseos   
systemd-libs.x86_64                   252-32.el9_4.7                   baseos   
systemd-pam.x86_64                    252-32.el9_4.7                   baseos   
systemd-rpm-macros.noarch             252-32.el9_4.7                   baseos   
systemd-udev.x86_64                   252-32.el9_4.7                   baseos   
tar.x86_64                            2:1.34-6.el9_4.1                 baseos   
tcpdump.x86_64                        14:4.99.0-9.el9                  appstream
tpm2-tss.x86_64                       3.2.2-2.el9                      baseos   
tracer-common.noarch                  1.1-2.el9                        appstream
tuned.noarch                          2.22.1-1.el9                     baseos   
tzdata.noarch                         2024b-2.el9                      baseos   
usbutils.x86_64                       015-1.el9                        baseos   
util-linux.x86_64                     2.37.4-18.el9                    baseos   
util-linux-core.x86_64                2.37.4-18.el9                    baseos   
util-linux-user.x86_64                2.37.4-18.el9                    baseos   
vdo.x86_64                            8.2.2.2-1.el9                    baseos   
virt-what.x86_64                      1.25-5.el9                       baseos   
webkit2gtk3-jsc.x86_64                2.46.1-2.el9_4                   appstream
wget.x86_64                           1.21.1-8.el9_4                   appstream
which.x86_64                          2.21-29.el9                      baseos   
xfsdump.x86_64                        3.1.12-4.el9_3                   baseos   
xfsprogs.x86_64                       6.3.0-1.el9                      baseos   
zlib.x86_64                           1.2.11-40.el9                    baseos   
Obsoleting Packages
grub2-tools.x86_64                    1:2.06-82.el9_4                  baseos   
    grub2-tools.x86_64                1:2.06-61.el9.rocky.0.1          @minimal 
grub2-tools-efi.x86_64                1:2.06-82.el9_4                  baseos   
    grub2-tools.x86_64                1:2.06-61.el9.rocky.0.1          @minimal 
grub2-tools-extra.x86_64              1:2.06-82.el9_4                  baseos   
    grub2-tools.x86_64                1:2.06-61.el9.rocky.0.1          @minimal 
grub2-tools-minimal.x86_64            1:2.06-82.el9_4                  baseos   
    grub2-tools.x86_64                1:2.06-61.el9.rocky.0.1          @minimal 
[root@rocky9kvm31 yum.repos.d]#



This example is using a brand-new base installation of a minimal installation of Rocky Linux 9, without any extra software repositories configured, which is why it's only showing the base 3 repos.
As this is a brand new fresh installation of a base minimal install of Rocky Linux 9, there are a LOT of packages available for updating! Usually, there are no where near as many packages available for updates, after the first initial updates.

This is the command to now install the available software package updates:

[root@rocky9kvm31 yum.repos.d]# dnf update
Last metadata expiration check: 0:00:05 ago on Fri 15 Nov 2024 04:11:27 PM PST.
Dependencies resolved.
================================================================================
 Package                       Arch   Version                   Repo       Size
================================================================================
Installing:
 kernel                        x86_64 5.14.0-427.42.1.el9_4     baseos    4.3 M
Upgrading:
 NetworkManager                x86_64 1:1.46.0-19.el9_4         baseos    2.3 M
 NetworkManager-libnm          x86_64 1:1.46.0-19.el9_4         baseos    1.8 M
 NetworkManager-team           x86_64 1:1.46.0-19.el9_4         baseos     40 k
 NetworkManager-tui            x86_64 1:1.46.0-19.el9_4         baseos    245 k
 PackageKit                    x86_64 1.2.6-1.el9               appstream 618 k
 PackageKit-glib               x86_64 1.2.6-1.el9               appstream 156 k
 acl                           x86_64 2.3.1-4.el9               baseos     69 k
 alternatives                  x86_64 1.24-1.el9                baseos     38 k
 audit                         x86_64 3.1.2-2.el9               baseos    253 k
 audit-libs                    x86_64 3.1.2-2.el9               baseos    117 k
 authselect                    x86_64 1.2.6-2.el9               baseos    140 k
 authselect-libs               x86_64 1.2.6-2.el9               baseos    236 k
 avahi-libs                    x86_64 0.8-20.el9                baseos     67 k
 basesystem                    noarch 11-13.el9.0.1             baseos    6.4 k
 bash                          x86_64 5.1.8-9.el9               baseos    1.7 M
 bash-completion               noarch 1:2.11-5.el9              baseos    291 k
 bind-libs                     x86_64 32:9.16.23-18.el9_4.6     appstream 1.2 M
 bind-license                  noarch 32:9.16.23-18.el9_4.6     appstream  13 k
 bind-utils                    x86_64 32:9.16.23-18.el9_4.6     appstream 201 k
 binutils                      x86_64 2.35.2-43.el9             baseos    4.5 M
 binutils-gold                 x86_64 2.35.2-43.el9             baseos    733 k
 bpftool                       x86_64 7.3.0-427.42.1.el9_4      baseos    5.1 M
 c-ares                        x86_64 1.19.1-2.el9_4            baseos    110 k
 ca-certificates               noarch 2024.2.69_v8.0.303-91.4.el9_4
                                                                baseos    911 k
 checkpolicy                   x86_64 3.6-1.el9                 appstream 352 k
 chrony                        x86_64 4.5-1.el9                 baseos    333 k
 cockpit                       x86_64 311.2-1.el9_4             baseos     40 k
 cockpit-bridge                x86_64 311.2-1.el9_4             baseos    500 k
 cockpit-packagekit            noarch 311.2-1.el9_4             appstream 923 k
 cockpit-system                noarch 311.2-1.el9_4             baseos    5.1 M
 cockpit-ws                    x86_64 311.2-1.el9_4             baseos    915 k
 coreutils                     x86_64 8.32-35.el9               baseos    1.1 M
 coreutils-common              x86_64 8.32-35.el9               baseos    2.0 M
 cronie                        x86_64 1.5.7-11.el9              baseos    115 k
 cronie-anacron                x86_64 1.5.7-11.el9              baseos     31 k
 crypto-policies               noarch 20240202-1.git283706d.el9 baseos     52 k
 crypto-policies-scripts       noarch 20240202-1.git283706d.el9 baseos     80 k
 cryptsetup                    x86_64 2.6.0-3.el9               baseos    296 k
 cryptsetup-libs               x86_64 2.6.0-3.el9               baseos    470 k
 curl                          x86_64 7.76.1-29.el9_4.1         baseos    293 k
 dbus                          x86_64 1:1.12.20-8.el9           baseos    6.8 k
 dbus-common                   noarch 1:1.12.20-8.el9           baseos     14 k
 dbus-libs                     x86_64 1:1.12.20-8.el9           baseos    151 k
 device-mapper                 x86_64 9:1.02.197-2.el9          baseos    139 k
 device-mapper-event           x86_64 9:1.02.197-2.el9          baseos     33 k
 device-mapper-event-libs      x86_64 9:1.02.197-2.el9          baseos     31 k
 device-mapper-libs            x86_64 9:1.02.197-2.el9          baseos    177 k
 device-mapper-persistent-data x86_64 1.0.9-3.el9_4             baseos    1.0 M
 dmidecode                     x86_64 1:3.5-3.el9               baseos     95 k
 dnf-plugins-core              noarch 4.3.0-13.el9              baseos     36 k
 dracut                        x86_64 057-53.git20240104.el9    baseos    375 k
 dracut-config-rescue          x86_64 057-53.git20240104.el9    baseos     12 k
 dracut-network                x86_64 057-53.git20240104.el9    baseos     68 k
 dracut-squash                 x86_64 057-53.git20240104.el9    baseos     12 k
 e2fsprogs                     x86_64 1.46.5-5.el9              baseos    1.0 M
 e2fsprogs-libs                x86_64 1.46.5-5.el9              baseos    221 k
 elfutils-debuginfod-client    x86_64 0.190-2.el9               baseos     35 k
 elfutils-default-yama-scope   noarch 0.190-2.el9               baseos     11 k
 elfutils-libelf               x86_64 0.190-2.el9               baseos    191 k
 elfutils-libs                 x86_64 0.190-2.el9               baseos    254 k
 emacs-filesystem              noarch 1:27.2-10.el9_4           appstream 7.6 k
 ethtool                       x86_64 2:6.2-1.el9               baseos    229 k
 expat                         x86_64 2.5.0-2.el9_4.1           baseos    115 k
 file                          x86_64 5.39-16.el9               baseos     48 k
 file-libs                     x86_64 5.39-16.el9               baseos    588 k
 findutils                     x86_64 1:4.8.0-6.el9             baseos    536 k
 firewalld                     noarch 1.3.4-1.el9               baseos    450 k
 firewalld-filesystem          noarch 1.3.4-1.el9               baseos    8.3 k
 fuse-common                   x86_64 3.10.2-8.el9              baseos    7.3 k
 gdk-pixbuf2                   x86_64 2.42.6-4.el9_4            appstream 466 k
 gettext                       x86_64 0.21-8.el9                baseos    1.1 M
 gettext-libs                  x86_64 0.21-8.el9                baseos    302 k
 glib2                         x86_64 2.68.4-14.el9_4.1         baseos    2.6 M
 glibc                         x86_64 2.34-100.el9_4.4          baseos    1.9 M
 glibc-common                  x86_64 2.34-100.el9_4.4          baseos    295 k
 glibc-gconv-extra             x86_64 2.34-100.el9_4.4          baseos    1.6 M
 glibc-langpack-en             x86_64 2.34-100.el9_4.4          baseos    550 k
 gmp                           x86_64 1:6.2.0-13.el9            baseos    314 k
 gnupg2                        x86_64 2.3.3-4.el9               baseos    2.5 M
 gnutls                        x86_64 3.8.3-4.el9_4             baseos    1.1 M
 grub2-common                  noarch 1:2.06-82.el9_4           baseos    903 k
 grub2-pc                      x86_64 1:2.06-82.el9_4           baseos     12 k
 grub2-pc-modules              noarch 1:2.06-82.el9_4           baseos    909 k
 grub2-tools                   x86_64 1:2.06-82.el9_4           baseos    1.8 M
 grub2-tools-minimal           x86_64 1:2.06-82.el9_4           baseos    603 k
 grubby                        x86_64 8.40-64.el9               baseos     32 k
 harfbuzz                      x86_64 2.7.4-10.el9              baseos    623 k
 hwdata                        noarch 0.348-9.13.el9            baseos    1.6 M
 hyperv-daemons                x86_64 0-0.42.20190303git.el9    appstream 8.0 k
 hyperv-daemons-license        noarch 0-0.42.20190303git.el9    appstream  15 k
 hypervfcopyd                  x86_64 0-0.42.20190303git.el9    appstream  15 k
 hypervkvpd                    x86_64 0-0.42.20190303git.el9    appstream  24 k
 hypervvssd                    x86_64 0-0.42.20190303git.el9    appstream  16 k
 initscripts-rename-device     x86_64 10.11.6-1.el9             baseos     14 k
 initscripts-service           noarch 10.11.6-1.el9             baseos     11 k
 iproute                       x86_64 6.2.0-6.el9_4             baseos    786 k
 iproute-tc                    x86_64 6.2.0-6.el9_4             baseos    448 k
 iptables-libs                 x86_64 1.8.10-4.el9_4            baseos    396 k
 iptables-nft                  x86_64 1.8.10-4.el9_4            baseos    186 k
 iputils                       x86_64 20210202-9.el9            baseos    167 k
 irqbalance                    x86_64 2:1.9.2-3.el9             baseos     62 k
 iwl100-firmware               noarch 39.31.5.1-143.3.el9_4     baseos    181 k
 iwl1000-firmware              noarch 1:39.31.5.1-143.3.el9_4   baseos    182 k
 iwl105-firmware               noarch 18.168.6.1-143.3.el9_4    baseos    260 k
 iwl135-firmware               noarch 18.168.6.1-143.3.el9_4    baseos    269 k
 iwl2000-firmware              noarch 18.168.6.1-143.3.el9_4    baseos    263 k
 iwl2030-firmware              noarch 18.168.6.1-143.3.el9_4    baseos    271 k
 iwl3160-firmware              noarch 1:25.30.13.0-143.3.el9_4  baseos    538 k
 iwl5000-firmware              noarch 8.83.5.1_1-143.3.el9_4    baseos    179 k
 iwl5150-firmware              noarch 8.24.2.2-143.3.el9_4      baseos    178 k
 iwl6000g2a-firmware           noarch 18.168.6.1-143.3.el9_4    baseos    246 k
 iwl6050-firmware              noarch 41.28.5.1-143.3.el9_4     baseos    204 k
 iwl7260-firmware              noarch 1:25.30.13.0-143.3.el9_4  baseos     55 M
 kbd                           x86_64 2.4.0-9.el9               baseos    378 k
 kbd-misc                      noarch 2.4.0-9.el9               baseos    1.5 M
 kernel-tools                  x86_64 5.14.0-427.42.1.el9_4     baseos    4.5 M
 kernel-tools-libs             x86_64 5.14.0-427.42.1.el9_4     baseos    4.3 M
 kexec-tools                   x86_64 2.0.27-8.el9_4.3          baseos    476 k
 kmod                          x86_64 28-9.el9                  baseos    121 k
 kmod-kvdo                     x86_64 8.2.3.3-117.el9           baseos    334 k
 kmod-libs                     x86_64 28-9.el9                  baseos     63 k
 kpartx                        x86_64 0.8.7-27.el9              baseos     47 k
 krb5-libs                     x86_64 1.21.1-2.el9_4            baseos    755 k
 ledmon                        x86_64 0.97-1.el9                baseos     86 k
 less                          x86_64 590-4.el9_4               baseos    160 k
 libX11                        x86_64 1.7.0-9.el9               appstream 650 k
 libX11-common                 noarch 1.7.0-9.el9               appstream 151 k
 libacl                        x86_64 2.3.1-4.el9               baseos     22 k
 libappstream-glib             x86_64 0.7.18-5.el9_4            appstream 386 k
 libarchive                    x86_64 3.5.3-4.el9.0.1           baseos    387 k
 libatomic                     x86_64 11.4.1-3.el9              baseos     33 k
 libblkid                      x86_64 2.37.4-18.el9             baseos    107 k
 libbpf                        x86_64 2:1.3.0-2.el9             baseos    172 k
 libcap                        x86_64 2.48-9.el9_2              baseos     67 k
 libcom_err                    x86_64 1.46.5-5.el9              baseos     25 k
 libcurl                       x86_64 7.76.1-29.el9_4.1         baseos    283 k
 libdnf                        x86_64 0.69.0-8.el9_4.1          baseos    652 k
 libdrm                        x86_64 2.4.117-1.el9             appstream 157 k
 libeconf                      x86_64 0.4.1-3.el9_2             baseos     26 k
 libedit                       x86_64 3.1-38.20210216cvs.el9    baseos    103 k
 libevent                      x86_64 2.1.12-8.el9_4            baseos    262 k
 libfastjson                   x86_64 0.99.9-5.el9              appstream  37 k
 libfdisk                      x86_64 2.37.4-18.el9             baseos    154 k
 libffi                        x86_64 3.4.2-8.el9               baseos     37 k
 libfido2                      x86_64 1.13.0-2.el9              baseos     97 k
 libfprint                     x86_64 1.94.6-1.el9              appstream 319 k
 libgcc                        x86_64 11.4.1-3.el9              baseos     91 k
 libgomp                       x86_64 11.4.1-3.el9              baseos    267 k
 libgusb                       x86_64 0.3.8-2.el9               baseos     50 k
 libibverbs                    x86_64 48.0-1.el9                baseos    390 k
 libipa_hbac                   x86_64 2.9.4-6.el9_4.1           baseos     37 k
 libjpeg-turbo                 x86_64 2.0.90-7.el9              appstream 174 k
 libkcapi                      x86_64 1.4.0-2.el9               baseos     45 k
 libkcapi-hmaccalc             x86_64 1.4.0-2.el9               baseos     23 k
 libldb                        x86_64 2.8.0-2.el9_4             baseos    182 k
 libmnl                        x86_64 1.0.4-16.el9_4            baseos     27 k
 libmount                      x86_64 2.37.4-18.el9             baseos    135 k
 libndp                        x86_64 1.8-6.el9_4               baseos     36 k
 libnftnl                      x86_64 1.2.6-4.el9_4             baseos     87 k
 libnghttp2                    x86_64 1.43.0-5.el9_4.3          baseos     72 k
 libnl3                        x86_64 3.9.0-1.el9               baseos    351 k
 libnl3-cli                    x86_64 3.9.0-1.el9               baseos    195 k
 libnvme                       x86_64 1.6-1.el9                 baseos     96 k
 librelp                       x86_64 1.10.0-5.el9              appstream  69 k
 librepo                       x86_64 1.14.5-2.el9              baseos     87 k
 librsvg2                      x86_64 2.50.7-3.el9              appstream 2.8 M
 librsvg2-tools                x86_64 2.50.7-3.el9              appstream  18 k
 libselinux                    x86_64 3.6-1.el9                 baseos     85 k
 libselinux-utils              x86_64 3.6-1.el9                 baseos    164 k
 libsemanage                   x86_64 3.6-1.el9                 baseos    117 k
 libsepol                      x86_64 3.6-1.el9                 baseos    329 k
 libsmartcols                  x86_64 2.37.4-18.el9             baseos     63 k
 libsmbclient                  x86_64 4.19.4-105.el9_4          baseos     73 k
 libsolv                       x86_64 0.7.24-2.el9              baseos    404 k
 libss                         x86_64 1.46.5-5.el9              baseos     31 k
 libssh                        x86_64 0.10.4-13.el9             baseos    215 k
 libssh-config                 noarch 0.10.4-13.el9             baseos    9.5 k
 libsss_certmap                x86_64 2.9.4-6.el9_4.1           baseos     92 k
 libsss_idmap                  x86_64 2.9.4-6.el9_4.1           baseos     43 k
 libsss_nss_idmap              x86_64 2.9.4-6.el9_4.1           baseos     47 k
 libsss_sudo                   x86_64 2.9.4-6.el9_4.1           baseos     37 k
 libstdc++                     x86_64 11.4.1-3.el9              baseos    739 k
 libstoragemgmt                x86_64 1.9.7-2.el9               appstream 244 k
 libtalloc                     x86_64 2.4.1-1.el9               baseos     30 k
 libtdb                        x86_64 1.4.9-1.el9               baseos     50 k
 libtevent                     x86_64 0.16.0-1.el9              baseos     47 k
 libtirpc                      x86_64 1.3.3-8.el9_4             baseos     93 k
 libuser                       x86_64 0.63-13.el9               baseos    380 k
 libuuid                       x86_64 2.37.4-18.el9             baseos     28 k
 libuv                         x86_64 1:1.42.0-2.el9_4          appstream 146 k
 libwbclient                   x86_64 4.19.4-105.el9_4          baseos     42 k
 libxml2                       x86_64 2.9.13-6.el9_4            baseos    746 k
 linux-firmware                noarch 20240905-143.3.el9_4      baseos    387 M
 linux-firmware-whence         noarch 20240905-143.3.el9_4      baseos     99 k
 lshw                          x86_64 B.02.19.2-10.el9          baseos    328 k
 lua-libs                      x86_64 5.4.4-4.el9               baseos    129 k
 lvm2                          x86_64 9:2.03.23-2.el9           baseos    1.5 M
 lvm2-libs                     x86_64 9:2.03.23-2.el9           baseos    1.0 M
 man-pages                     noarch 6.04-1.el9                baseos    5.7 M
 mcelog                        x86_64 3:195-0.el9               baseos     77 k
 mdadm                         x86_64 4.2-14.el9_4              baseos    425 k
 microcode_ctl                 noarch 4:20230808-2.20240910.1.el9_4
                                                                baseos    8.5 M
 mtr                           x86_64 2:0.94-6.el9_4            baseos     86 k
 ncurses                       x86_64 6.2-10.20210508.el9       baseos    399 k
 ncurses-base                  noarch 6.2-10.20210508.el9       baseos     60 k
 ncurses-libs                  x86_64 6.2-10.20210508.el9       baseos    321 k
 nettle                        x86_64 3.9.1-1.el9               baseos    558 k
 nftables                      x86_64 1:1.0.9-1.el9             baseos    422 k
 nmap-ncat                     x86_64 3:7.92-1.el9              appstream 222 k
 nspr                          x86_64 4.35.0-14.el9_4           appstream 133 k
 nss                           x86_64 3.101.0-7.el9_4           appstream 715 k
 nss-softokn                   x86_64 3.101.0-7.el9_4           appstream 386 k
 nss-softokn-freebl            x86_64 3.101.0-7.el9_4           appstream 309 k
 nss-sysinit                   x86_64 3.101.0-7.el9_4           appstream  18 k
 nss-util                      x86_64 3.101.0-7.el9_4           appstream  88 k
 numactl-libs                  x86_64 2.0.16-3.el9              baseos     29 k
 nvme-cli                      x86_64 2.6-5.el9                 baseos    757 k
 open-vm-tools                 x86_64 12.3.5-2.el9              appstream 860 k
 openldap                      x86_64 2.6.6-3.el9               baseos    254 k
 openssh                       x86_64 8.7p1-38.el9_4.4          baseos    457 k
 openssh-clients               x86_64 8.7p1-38.el9_4.4          baseos    713 k
 openssh-server                x86_64 8.7p1-38.el9_4.4          baseos    458 k
 openssl                       x86_64 1:3.0.7-28.el9_4          baseos    1.1 M
 openssl-libs                  x86_64 1:3.0.7-28.el9_4          baseos    2.1 M
 p11-kit                       x86_64 0.25.3-2.el9              baseos    514 k
 p11-kit-trust                 x86_64 0.25.3-2.el9              baseos    142 k
 pam                           x86_64 1.5.1-19.el9              baseos    547 k
 pcre2                         x86_64 10.40-5.el9               baseos    233 k
 pcre2-syntax                  noarch 10.40-5.el9               baseos    140 k
 pixman                        x86_64 0.40.0-6.el9_3            appstream 269 k
 plymouth                      x86_64 0.9.5-7.20210331git1ea1020.el9
                                                                appstream 107 k
 plymouth-core-libs            x86_64 0.9.5-7.20210331git1ea1020.el9
                                                                appstream  95 k
 plymouth-scripts              x86_64 0.9.5-7.20210331git1ea1020.el9
                                                                appstream  14 k
 policycoreutils               x86_64 3.6-2.1.el9               baseos    208 k
 policycoreutils-python-utils  noarch 3.6-2.1.el9               appstream  71 k
 procps-ng                     x86_64 3.3.17-14.el9             baseos    332 k
 protobuf-c                    x86_64 1.3.3-13.el9              baseos     34 k
 python-unversioned-command    noarch 3.9.18-3.el9_4.6          appstream 8.5 k
 python3                       x86_64 3.9.18-3.el9_4.6          baseos     25 k
 python3-audit                 x86_64 3.1.2-2.el9               appstream  82 k
 python3-dateutil              noarch 1:2.8.1-7.el9             baseos    287 k
 python3-dbus                  x86_64 1.2.18-2.el9.0.1          baseos    131 k
 python3-dnf-plugins-core      noarch 4.3.0-13.el9              baseos    246 k
 python3-file-magic            noarch 5.39-16.el9               appstream  17 k
 python3-firewall              noarch 1.3.4-1.el9               baseos    348 k
 python3-hawkey                x86_64 0.69.0-8.el9_4.1          baseos    101 k
 python3-idna                  noarch 2.10-7.el9_4.1            baseos     97 k
 python3-libdnf                x86_64 0.69.0-8.el9_4.1          baseos    770 k
 python3-libs                  x86_64 3.9.18-3.el9_4.6          baseos    7.3 M
 python3-libselinux            x86_64 3.6-1.el9                 appstream 187 k
 python3-libsemanage           x86_64 3.6-1.el9                 appstream  79 k
 python3-libstoragemgmt        x86_64 1.9.7-2.el9               appstream 162 k
 python3-libxml2               x86_64 2.9.13-6.el9_4            baseos    225 k
 python3-linux-procfs          noarch 0.7.3-1.el9               baseos     30 k
 python3-nftables              x86_64 1:1.0.9-1.el9             baseos     22 k
 python3-perf                  x86_64 5.14.0-427.42.1.el9_4     baseos    4.4 M
 python3-pip-wheel             noarch 21.2.3-8.el9              baseos    1.1 M
 python3-policycoreutils       noarch 3.6-2.1.el9               appstream 2.0 M
 python3-requests              noarch 2.25.1-8.el9              baseos    113 k
 python3-rpm                   x86_64 4.16.1.3-29.el9           baseos     65 k
 python3-setools               x86_64 4.4.4-1.el9               baseos    551 k
 python3-setuptools            noarch 53.0.0-12.el9_4.1         baseos    838 k
 python3-setuptools-wheel      noarch 53.0.0-12.el9_4.1         baseos    467 k
 python3-tracer                noarch 1.1-2.el9                 appstream 111 k
 python3-urllib3               noarch 1.26.5-5.el9_4.1          baseos    187 k
 qemu-guest-agent              x86_64 17:8.2.0-11.el9_4.6       appstream 486 k
 realmd                        x86_64 0.17.1-2.el9              baseos    233 k
 rocky-gpg-keys                noarch 9.4-1.7.el9               baseos     13 k
 rocky-logos                   x86_64 90.15-2.el9               appstream 715 k
 rocky-release                 noarch 9.4-1.7.el9               baseos     24 k
 rocky-repos                   noarch 9.4-1.7.el9               baseos     13 k
 rpm                           x86_64 4.16.1.3-29.el9           baseos    485 k
 rpm-build-libs                x86_64 4.16.1.3-29.el9           baseos     88 k
 rpm-libs                      x86_64 4.16.1.3-29.el9           baseos    308 k
 rpm-plugin-audit              x86_64 4.16.1.3-29.el9           baseos     15 k
 rpm-plugin-selinux            x86_64 4.16.1.3-29.el9           baseos     16 k
 rpm-plugin-systemd-inhibit    x86_64 4.16.1.3-29.el9           appstream  16 k
 rpm-sign-libs                 x86_64 4.16.1.3-29.el9           baseos     20 k
 rsyslog                       x86_64 8.2310.0-4.el9            appstream 781 k
 rsyslog-gnutls                x86_64 8.2310.0-4.el9            appstream  30 k
 rsyslog-gssapi                x86_64 8.2310.0-4.el9            appstream  30 k
 rsyslog-logrotate             x86_64 8.2310.0-4.el9            appstream  11 k
 rsyslog-relp                  x86_64 8.2310.0-4.el9            appstream  30 k
 samba-client-libs             x86_64 4.19.4-105.el9_4          baseos    5.0 M
 samba-common                  noarch 4.19.4-105.el9_4          baseos    147 k
 samba-common-libs             x86_64 4.19.4-105.el9_4          baseos     99 k
 selinux-policy                noarch 38.1.35-2.el9_4.2.0.2     baseos     49 k
 selinux-policy-targeted       noarch 38.1.35-2.el9_4.2.0.2     baseos    6.5 M
 setroubleshoot-server         x86_64 3.3.32-1.el9              appstream 323 k
 setup                         noarch 2.13.7-10.el9             baseos    140 k
 shadow-utils                  x86_64 2:4.9-8.el9               baseos    1.1 M
 smartmontools                 x86_64 1:7.2-9.el9               baseos    551 k
 sos                           noarch 4.7.2-3.el9               baseos    849 k
 sqlite-libs                   x86_64 3.34.1-7.el9_3            baseos    618 k
 squashfs-tools                x86_64 4.4-10.git1.el9           baseos    164 k
 sssd                          x86_64 2.9.4-6.el9_4.1           baseos     29 k
 sssd-ad                       x86_64 2.9.4-6.el9_4.1           baseos    217 k
 sssd-client                   x86_64 2.9.4-6.el9_4.1           baseos    162 k
 sssd-common                   x86_64 2.9.4-6.el9_4.1           baseos    1.6 M
 sssd-common-pac               x86_64 2.9.4-6.el9_4.1           baseos     98 k
 sssd-ipa                      x86_64 2.9.4-6.el9_4.1           baseos    283 k
 sssd-kcm                      x86_64 2.9.4-6.el9_4.1           baseos    111 k
 sssd-krb5                     x86_64 2.9.4-6.el9_4.1           baseos     74 k
 sssd-krb5-common              x86_64 2.9.4-6.el9_4.1           baseos     96 k
 sssd-ldap                     x86_64 2.9.4-6.el9_4.1           baseos    160 k
 sssd-proxy                    x86_64 2.9.4-6.el9_4.1           baseos     74 k
 sudo                          x86_64 1.9.5p2-10.el9_3          baseos    1.0 M
 systemd                       x86_64 252-32.el9_4.7            baseos    4.0 M
 systemd-libs                  x86_64 252-32.el9_4.7            baseos    656 k
 systemd-pam                   x86_64 252-32.el9_4.7            baseos    264 k
 systemd-rpm-macros            noarch 252-32.el9_4.7            baseos     52 k
 systemd-udev                  x86_64 252-32.el9_4.7            baseos    1.8 M
 tar                           x86_64 2:1.34-6.el9_4.1          baseos    876 k
 tcpdump                       x86_64 14:4.99.0-9.el9           appstream 542 k
 tpm2-tss                      x86_64 3.2.2-2.el9               baseos    591 k
 tracer-common                 noarch 1.1-2.el9                 appstream  22 k
 tuned                         noarch 2.22.1-1.el9              baseos    323 k
 tzdata                        noarch 2024b-2.el9               baseos    430 k
 usbutils                      x86_64 015-1.el9                 baseos    115 k
 util-linux                    x86_64 2.37.4-18.el9             baseos    2.2 M
 util-linux-core               x86_64 2.37.4-18.el9             baseos    437 k
 util-linux-user               x86_64 2.37.4-18.el9             baseos     30 k
 vdo                           x86_64 8.2.2.2-1.el9             baseos    108 k
 virt-what                     x86_64 1.25-5.el9                baseos     33 k
 webkit2gtk3-jsc               x86_64 2.46.1-2.el9_4            appstream 4.4 M
 wget                          x86_64 1.21.1-8.el9_4            appstream 768 k
 which                         x86_64 2.21-29.el9               baseos     40 k
 xfsdump                       x86_64 3.1.12-4.el9_3            baseos    321 k
 xfsprogs                      x86_64 6.3.0-1.el9               baseos    1.1 M
 zlib                          x86_64 1.2.11-40.el9             baseos     90 k
Installing dependencies:
 fuse3                         x86_64 3.10.2-8.el9              appstream  53 k
 fuse3-libs                    x86_64 3.10.2-8.el9              appstream  90 k
 grub2-tools-efi               x86_64 1:2.06-82.el9_4           baseos    540 k
 grub2-tools-extra             x86_64 1:2.06-82.el9_4           baseos    840 k
 jq                            x86_64 1.6-16.el9                baseos    186 k
 kbd-legacy                    noarch 2.4.0-9.el9               baseos    502 k
 kernel-core                   x86_64 5.14.0-427.42.1.el9_4     baseos     19 M
 kernel-modules                x86_64 5.14.0-427.42.1.el9_4     baseos     38 M
 kernel-modules-core           x86_64 5.14.0-427.42.1.el9_4     baseos     32 M
 libtraceevent                 x86_64 1.5.3-3.el9               baseos    213 k
 liburing                      x86_64 2.5-1.el9                 appstream  38 k
 oniguruma                     x86_64 6.9.6-1.el9.5.0.1         baseos    217 k

Transaction Summary
================================================================================
Install   13 Packages
Upgrade  330 Packages

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



As you can see, it prompts you to proceed with the installation of the software updates. You can bypass the prompting by giving the DNF command the "-y" switch, without the quotes. So, the command would look like this instead:

[root@rocky9kvm31 yum.repos.d]# dnf update -y



Back to the updates, at the "Is this ok [y/N]:" prompt, type the letter "Y", without the quotes, and then hit the ENTER key to proceed with the updates, as seen here:

Is this ok [y/N]: y
Downloading Packages:
(1/343): kbd-legacy-2.4.0-9.el9.noarch.rpm      1.6 MB/s | 502 kB     00:00    
(2/343): grub2-tools-extra-2.06-82.el9_4.x86_64 2.6 MB/s | 840 kB     00:00    
(3/343): libtraceevent-1.5.3-3.el9.x86_64.rpm   589 kB/s | 213 kB     00:00    
(4/343): grub2-tools-efi-2.06-82.el9_4.x86_64.r 4.8 MB/s | 540 kB     00:00    
(5/343): oniguruma-6.9.6-1.el9.5.0.1.x86_64.rpm 3.1 MB/s | 217 kB     00:00    
(6/343): jq-1.6-16.el9.x86_64.rpm               865 kB/s | 186 kB     00:00    
(7/343): kernel-core-5.14.0-427.42.1.el9_4.x86_ 2.2 MB/s |  19 MB     00:08    
(8/343): kernel-5.14.0-427.42.1.el9_4.x86_64.rp 2.6 MB/s | 4.3 MB     00:01    
(9/343): liburing-2.5-1.el9.x86_64.rpm          185 kB/s |  38 kB     00:00    
(10/343): fuse3-libs-3.10.2-8.el9.x86_64.rpm    740 kB/s |  90 kB     00:00    
(11/343): fuse3-3.10.2-8.el9.x86_64.rpm         506 kB/s |  53 kB     00:00    
(12/343): hwdata-0.348-9.13.el9.noarch.rpm      2.3 MB/s | 1.6 MB     00:00    
(13/343): basesystem-11-13.el9.0.1.noarch.rpm   266 kB/s | 6.4 kB     00:00    
(14/343): python3-idna-2.10-7.el9_4.1.noarch.rp 1.7 MB/s |  97 kB     00:00    
(15/343): setup-2.13.7-10.el9.noarch.rpm        1.3 MB/s | 140 kB     00:00    
(16/343): kernel-modules-core-5.14.0-427.42.1.e 2.5 MB/s |  32 MB     00:12    
(17/343): man-pages-6.04-1.el9.noarch.rpm       2.4 MB/s | 5.7 MB     00:02    
(18/343): selinux-policy-38.1.35-2.el9_4.2.0.2. 1.0 MB/s |  49 kB     00:00    
(19/343): python3-linux-procfs-0.7.3-1.el9.noar 1.0 MB/s |  30 kB     00:00    
(20/343): libacl-2.3.1-4.el9.x86_64.rpm         934 kB/s |  22 kB     00:00    
(21/343): acl-2.3.1-4.el9.x86_64.rpm            1.5 MB/s |  69 kB     00:00    
(22/343): crypto-policies-scripts-20240202-1.gi 1.6 MB/s |  80 kB     00:00    
(23/343): crypto-policies-20240202-1.git283706d 1.3 MB/s |  52 kB     00:00    
(24/343): bash-completion-2.11-5.el9.noarch.rpm 2.3 MB/s | 291 kB     00:00    
(25/343): python3-firewall-1.3.4-1.el9.noarch.r 2.4 MB/s | 348 kB     00:00    
(26/343): firewalld-filesystem-1.3.4-1.el9.noar 313 kB/s | 8.3 kB     00:00    
(27/343): firewalld-1.3.4-1.el9.noarch.rpm      2.0 MB/s | 450 kB     00:00    
(28/343): c-ares-1.19.1-2.el9_4.x86_64.rpm      1.0 MB/s | 110 kB     00:00    
(29/343): expat-2.5.0-2.el9_4.1.x86_64.rpm      1.1 MB/s | 115 kB     00:00    
(30/343): glib2-2.68.4-14.el9_4.1.x86_64.rpm    2.4 MB/s | 2.6 MB     00:01    
(31/343): file-libs-5.39-16.el9.x86_64.rpm      2.1 MB/s | 588 kB     00:00    
(32/343): file-5.39-16.el9.x86_64.rpm           1.6 MB/s |  48 kB     00:00    
(33/343): selinux-policy-targeted-38.1.35-2.el9 1.6 MB/s | 6.5 MB     00:03    
(34/343): avahi-libs-0.8-20.el9.x86_64.rpm      1.3 MB/s |  67 kB     00:00    
(35/343): harfbuzz-2.7.4-10.el9.x86_64.rpm      2.3 MB/s | 623 kB     00:00    
(36/343): binutils-gold-2.35.2-43.el9.x86_64.rp 2.2 MB/s | 733 kB     00:00    
(37/343): audit-libs-3.1.2-2.el9.x86_64.rpm     1.1 MB/s | 117 kB     00:00    
(38/343): audit-3.1.2-2.el9.x86_64.rpm          1.1 MB/s | 253 kB     00:00    
(39/343): alternatives-1.24-1.el9.x86_64.rpm    373 kB/s |  38 kB     00:00    
(40/343): lua-libs-5.4.4-4.el9.x86_64.rpm       593 kB/s | 129 kB     00:00    
(41/343): iptables-nft-1.8.10-4.el9_4.x86_64.rp 867 kB/s | 186 kB     00:00    
(42/343): iptables-libs-1.8.10-4.el9_4.x86_64.r 950 kB/s | 396 kB     00:00    
(43/343): lshw-B.02.19.2-10.el9.x86_64.rpm      1.2 MB/s | 328 kB     00:00    
(44/343): binutils-2.35.2-43.el9.x86_64.rpm     2.6 MB/s | 4.5 MB     00:01    
(45/343): kernel-modules-5.14.0-427.42.1.el9_4. 2.0 MB/s |  38 MB     00:18    
(46/343): kbd-2.4.0-9.el9.x86_64.rpm            1.9 MB/s | 378 kB     00:00    
(47/343): python3-libxml2-2.9.13-6.el9_4.x86_64 2.1 MB/s | 225 kB     00:00    
(48/343): libarchive-3.5.3-4.el9.0.1.x86_64.rpm 2.3 MB/s | 387 kB     00:00    
(49/343): policycoreutils-3.6-2.1.el9.x86_64.rp 1.8 MB/s | 208 kB     00:00    
(50/343): libxml2-2.9.13-6.el9_4.x86_64.rpm     2.7 MB/s | 746 kB     00:00    
(51/343): python3-requests-2.25.1-8.el9.noarch. 1.1 MB/s | 113 kB     00:00    
(52/343): libibverbs-48.0-1.el9.x86_64.rpm      1.6 MB/s | 390 kB     00:00    
(53/343): rpm-sign-libs-4.16.1.3-29.el9.x86_64. 635 kB/s |  20 kB     00:00    
(54/343): kbd-misc-2.4.0-9.el9.noarch.rpm       1.8 MB/s | 1.5 MB     00:00    
(55/343): rpm-plugin-selinux-4.16.1.3-29.el9.x8 630 kB/s |  16 kB     00:00    
(56/343): rpm-plugin-audit-4.16.1.3-29.el9.x86_ 495 kB/s |  15 kB     00:00    
(57/343): rpm-build-libs-4.16.1.3-29.el9.x86_64 856 kB/s |  88 kB     00:00    
(58/343): rpm-libs-4.16.1.3-29.el9.x86_64.rpm   1.3 MB/s | 308 kB     00:00    
(59/343): python3-rpm-4.16.1.3-29.el9.x86_64.rp 625 kB/s |  65 kB     00:00    
(60/343): rpm-4.16.1.3-29.el9.x86_64.rpm        1.4 MB/s | 485 kB     00:00    
(61/343): python3-pip-wheel-21.2.3-8.el9.noarch 2.0 MB/s | 1.1 MB     00:00    
(62/343): pcre2-syntax-10.40-5.el9.noarch.rpm   1.3 MB/s | 140 kB     00:00    
(63/343): pcre2-10.40-5.el9.x86_64.rpm          1.4 MB/s | 233 kB     00:00    
(64/343): openssl-3.0.7-28.el9_4.x86_64.rpm     2.1 MB/s | 1.1 MB     00:00    
(65/343): grubby-8.40-64.el9.x86_64.rpm         1.0 MB/s |  32 kB     00:00    
(66/343): libnftnl-1.2.6-4.el9_4.x86_64.rpm     1.7 MB/s |  87 kB     00:00    
(67/343): python3-dnf-plugins-core-4.3.0-13.el9 2.0 MB/s | 246 kB     00:00    
(68/343): dnf-plugins-core-4.3.0-13.el9.noarch. 970 kB/s |  36 kB     00:00    
(69/343): dmidecode-3.5-3.el9.x86_64.rpm        1.8 MB/s |  95 kB     00:00    
(70/343): sos-4.7.2-3.el9.noarch.rpm            1.4 MB/s | 849 kB     00:00    
(71/343): libtirpc-1.3.3-8.el9_4.x86_64.rpm     1.4 MB/s |  93 kB     00:00    
(72/343): openssl-libs-3.0.7-28.el9_4.x86_64.rp 1.9 MB/s | 2.1 MB     00:01    
(73/343): python3-urllib3-1.26.5-5.el9_4.1.noar 972 kB/s | 187 kB     00:00    
(74/343): python3-dateutil-2.8.1-7.el9.noarch.r 1.4 MB/s | 287 kB     00:00    
(75/343): nvme-cli-2.6-5.el9.x86_64.rpm         1.8 MB/s | 757 kB     00:00    
(76/343): ledmon-0.97-1.el9.x86_64.rpm          1.7 MB/s |  86 kB     00:00    
(77/343): python3-setuptools-wheel-53.0.0-12.el 1.4 MB/s | 467 kB     00:00    
(78/343): libbpf-1.3.0-2.el9.x86_64.rpm         2.3 MB/s | 172 kB     00:00    
(79/343): xfsdump-3.1.12-4.el9_3.x86_64.rpm     1.8 MB/s | 321 kB     00:00    
(80/343): python3-setuptools-53.0.0-12.el9_4.1. 1.9 MB/s | 838 kB     00:00    
(81/343): initscripts-service-10.11.6-1.el9.noa 450 kB/s |  11 kB     00:00    
(82/343): libfido2-1.13.0-2.el9.x86_64.rpm      1.7 MB/s |  97 kB     00:00    
(83/343): libndp-1.8-6.el9_4.x86_64.rpm         1.2 MB/s |  36 kB     00:00    
(84/343): tzdata-2024b-2.el9.noarch.rpm         2.0 MB/s | 430 kB     00:00    
(85/343): irqbalance-1.9.2-3.el9.x86_64.rpm     1.3 MB/s |  62 kB     00:00    
(86/343): kmod-kvdo-8.2.3.3-117.el9.x86_64.rpm  1.9 MB/s | 334 kB     00:00    
(87/343): cryptsetup-2.6.0-3.el9.x86_64.rpm     2.4 MB/s | 296 kB     00:00    
(88/343): bash-5.1.8-9.el9.x86_64.rpm           2.6 MB/s | 1.7 MB     00:00    
(89/343): cryptsetup-libs-2.6.0-3.el9.x86_64.rp 1.6 MB/s | 470 kB     00:00    
(90/343): vdo-8.2.2.2-1.el9.x86_64.rpm          1.0 MB/s | 108 kB     00:00    
(91/343): kmod-libs-28-9.el9.x86_64.rpm         1.2 MB/s |  63 kB     00:00    
(92/343): kmod-28-9.el9.x86_64.rpm              1.1 MB/s | 121 kB     00:00    
(93/343): virt-what-1.25-5.el9.x86_64.rpm       1.2 MB/s |  33 kB     00:00    
(94/343): device-mapper-persistent-data-1.0.9-3 2.3 MB/s | 1.0 MB     00:00    
(95/343): iproute-tc-6.2.0-6.el9_4.x86_64.rpm   2.0 MB/s | 448 kB     00:00    
(96/343): libmnl-1.0.4-16.el9_4.x86_64.rpm      1.1 MB/s |  27 kB     00:00    
(97/343): shadow-utils-4.9-8.el9.x86_64.rpm     1.6 MB/s | 1.1 MB     00:00    
(98/343): squashfs-tools-4.4-10.git1.el9.x86_64 1.2 MB/s | 164 kB     00:00    
(99/343): iproute-6.2.0-6.el9_4.x86_64.rpm      2.3 MB/s | 786 kB     00:00    
(100/343): procps-ng-3.3.17-14.el9.x86_64.rpm   1.7 MB/s | 332 kB     00:00    
(101/343): realmd-0.17.1-2.el9.x86_64.rpm       1.5 MB/s | 233 kB     00:00    
(102/343): libgusb-0.3.8-2.el9.x86_64.rpm       1.5 MB/s |  50 kB     00:00    
(103/343): mdadm-4.2-14.el9_4.x86_64.rpm        1.5 MB/s | 425 kB     00:00    
(104/343): ethtool-6.2-1.el9.x86_64.rpm         1.8 MB/s | 229 kB     00:00    
(105/343): libnghttp2-1.43.0-5.el9_4.3.x86_64.r 1.4 MB/s |  72 kB     00:00    
(106/343): linux-firmware-whence-20240905-143.3 1.9 MB/s |  99 kB     00:00    
(107/343): less-590-4.el9_4.x86_64.rpm          975 kB/s | 160 kB     00:00    
(108/343): sqlite-libs-3.34.1-7.el9_3.x86_64.rp 1.4 MB/s | 618 kB     00:00    
(109/343): iwl6050-firmware-41.28.5.1-143.3.el9 1.6 MB/s | 204 kB     00:00    
(110/343): iwl6000g2a-firmware-18.168.6.1-143.3 1.5 MB/s | 246 kB     00:00    
(111/343): iwl5150-firmware-8.24.2.2-143.3.el9_ 1.6 MB/s | 178 kB     00:00    
(112/343): iwl5000-firmware-8.83.5.1_1-143.3.el 1.7 MB/s | 179 kB     00:00    
(113/343): iwl3160-firmware-25.30.13.0-143.3.el 2.1 MB/s | 538 kB     00:00    
(114/343): iwl2030-firmware-18.168.6.1-143.3.el 1.8 MB/s | 271 kB     00:00    
(115/343): iwl2000-firmware-18.168.6.1-143.3.el 1.9 MB/s | 263 kB     00:00    
(116/343): iwl135-firmware-18.168.6.1-143.3.el9 1.7 MB/s | 269 kB     00:00    
(117/343): iwl105-firmware-18.168.6.1-143.3.el9 1.1 MB/s | 260 kB     00:00    
(118/343): iwl1000-firmware-39.31.5.1-143.3.el9 1.1 MB/s | 182 kB     00:00    
(119/343): iwl100-firmware-39.31.5.1-143.3.el9_ 1.2 MB/s | 181 kB     00:00    
(120/343): usbutils-015-1.el9.x86_64.rpm        924 kB/s | 115 kB     00:00    
(121/343): findutils-4.8.0-6.el9.x86_64.rpm     1.3 MB/s | 536 kB     00:00    
(122/343): which-2.21-29.el9.x86_64.rpm         739 kB/s |  40 kB     00:00    
(123/343): kexec-tools-2.0.27-8.el9_4.3.x86_64. 1.1 MB/s | 476 kB     00:00    
(124/343): microcode_ctl-20230808-2.20240910.1. 2.7 MB/s | 8.5 MB     00:03    
(125/343): mcelog-195-0.el9.x86_64.rpm          1.4 MB/s |  77 kB     00:00    
(126/343): coreutils-common-8.32-35.el9.x86_64. 1.9 MB/s | 2.0 MB     00:01    
(127/343): coreutils-8.32-35.el9.x86_64.rpm     2.1 MB/s | 1.1 MB     00:00    
(128/343): python3-libs-3.9.18-3.el9_4.6.x86_64 2.3 MB/s | 7.3 MB     00:03    
(129/343): python3-3.9.18-3.el9_4.6.x86_64.rpm  863 kB/s |  25 kB     00:00    
(130/343): gnutls-3.8.3-4.el9_4.x86_64.rpm      2.6 MB/s | 1.1 MB     00:00    
(131/343): samba-common-libs-4.19.4-105.el9_4.x 2.2 MB/s |  99 kB     00:00    
(132/343): samba-common-4.19.4-105.el9_4.noarch 1.3 MB/s | 147 kB     00:00    
(133/343): samba-client-libs-4.19.4-105.el9_4.x 3.0 MB/s | 5.0 MB     00:01    
(134/343): libwbclient-4.19.4-105.el9_4.x86_64. 820 kB/s |  42 kB     00:00    
(135/343): libsmbclient-4.19.4-105.el9_4.x86_64 1.4 MB/s |  73 kB     00:00    
(136/343): iputils-20210202-9.el9.x86_64.rpm    1.6 MB/s | 167 kB     00:00    
(137/343): tuned-2.22.1-1.el9.noarch.rpm        2.5 MB/s | 323 kB     00:00    
(138/343): libffi-3.4.2-8.el9.x86_64.rpm        1.2 MB/s |  37 kB     00:00    
(139/343): gmp-6.2.0-13.el9.x86_64.rpm          2.4 MB/s | 314 kB     00:00    
(140/343): gettext-libs-0.21-8.el9.x86_64.rpm   2.7 MB/s | 302 kB     00:00    
(141/343): gettext-0.21-8.el9.x86_64.rpm        3.1 MB/s | 1.1 MB     00:00    
(142/343): libedit-3.1-38.20210216cvs.el9.x86_6 2.0 MB/s | 103 kB     00:00    
(143/343): libcap-2.48-9.el9_2.x86_64.rpm       1.7 MB/s |  67 kB     00:00    
(144/343): libsolv-0.7.24-2.el9.x86_64.rpm      3.1 MB/s | 404 kB     00:00    
(145/343): libsepol-3.6-1.el9.x86_64.rpm        2.4 MB/s | 329 kB     00:00    
(146/343): gnupg2-2.3.3-4.el9.x86_64.rpm        2.2 MB/s | 2.5 MB     00:01    
(147/343): ca-certificates-2024.2.69_v8.0.303-9 3.0 MB/s | 911 kB     00:00    
(148/343): libss-1.46.5-5.el9.x86_64.rpm        982 kB/s |  31 kB     00:00    
(149/343): libcom_err-1.46.5-5.el9.x86_64.rpm   918 kB/s |  25 kB     00:00    
(150/343): e2fsprogs-libs-1.46.5-5.el9.x86_64.r 2.1 MB/s | 221 kB     00:00    
(151/343): e2fsprogs-1.46.5-5.el9.x86_64.rpm    2.6 MB/s | 1.0 MB     00:00    
(152/343): cockpit-ws-311.2-1.el9_4.x86_64.rpm  2.5 MB/s | 915 kB     00:00    
(153/343): cockpit-bridge-311.2-1.el9_4.x86_64. 2.0 MB/s | 500 kB     00:00    
(154/343): cockpit-311.2-1.el9_4.x86_64.rpm     1.3 MB/s |  40 kB     00:00    
(155/343): iwl7260-firmware-25.30.13.0-143.3.el 3.0 MB/s |  55 MB     00:18    
(156/343): libnl3-cli-3.9.0-1.el9.x86_64.rpm    1.8 MB/s | 195 kB     00:00    
(157/343): libnl3-3.9.0-1.el9.x86_64.rpm        2.9 MB/s | 351 kB     00:00    
(158/343): libsemanage-3.6-1.el9.x86_64.rpm     2.2 MB/s | 117 kB     00:00    
(159/343): libselinux-utils-3.6-1.el9.x86_64.rp 2.7 MB/s | 164 kB     00:00    
(160/343): libselinux-3.6-1.el9.x86_64.rpm      1.5 MB/s |  85 kB     00:00    
(161/343): authselect-libs-1.2.6-2.el9.x86_64.r 2.2 MB/s | 236 kB     00:00    
(162/343): authselect-1.2.6-2.el9.x86_64.rpm    2.5 MB/s | 140 kB     00:00    
(163/343): dracut-squash-057-53.git20240104.el9 467 kB/s |  12 kB     00:00    
(164/343): dracut-network-057-53.git20240104.el 2.2 MB/s |  68 kB     00:00    
(165/343): dracut-config-rescue-057-53.git20240 384 kB/s |  12 kB     00:00    
(166/343): dracut-057-53.git20240104.el9.x86_64 3.0 MB/s | 375 kB     00:00    
(167/343): dbus-libs-1.12.20-8.el9.x86_64.rpm   2.8 MB/s | 151 kB     00:00    
(168/343): dbus-1.12.20-8.el9.x86_64.rpm        232 kB/s | 6.8 kB     00:00    
(169/343): dbus-common-1.12.20-8.el9.noarch.rpm 493 kB/s |  14 kB     00:00    
(170/343): chrony-4.5-1.el9.x86_64.rpm          2.8 MB/s | 333 kB     00:00    
(171/343): libevent-2.1.12-8.el9_4.x86_64.rpm   2.5 MB/s | 262 kB     00:00    
(172/343): numactl-libs-2.0.16-3.el9.x86_64.rpm 939 kB/s |  29 kB     00:00    
(173/343): cockpit-system-311.2-1.el9_4.noarch. 2.3 MB/s | 5.1 MB     00:02    
(174/343): nettle-3.9.1-1.el9.x86_64.rpm        2.5 MB/s | 558 kB     00:00    
(175/343): tpm2-tss-3.2.2-2.el9.x86_64.rpm      1.9 MB/s | 591 kB     00:00    
(176/343): openssh-server-8.7p1-38.el9_4.4.x86_ 1.6 MB/s | 458 kB     00:00    
(177/343): openssh-clients-8.7p1-38.el9_4.4.x86 1.9 MB/s | 713 kB     00:00    
(178/343): openssh-8.7p1-38.el9_4.4.x86_64.rpm  1.4 MB/s | 457 kB     00:00    
(179/343): python3-nftables-1.0.9-1.el9.x86_64. 974 kB/s |  22 kB     00:00    
(180/343): librepo-1.14.5-2.el9.x86_64.rpm      1.1 MB/s |  87 kB     00:00    
(181/343): cronie-anacron-1.5.7-11.el9.x86_64.r 1.0 MB/s |  31 kB     00:00    
(182/343): cronie-1.5.7-11.el9.x86_64.rpm       1.4 MB/s | 115 kB     00:00    
(183/343): nftables-1.0.9-1.el9.x86_64.rpm      1.8 MB/s | 422 kB     00:00    
(184/343): libtdb-1.4.9-1.el9.x86_64.rpm        225 kB/s |  50 kB     00:00    
(185/343): python3-setools-4.4.4-1.el9.x86_64.r 1.8 MB/s | 551 kB     00:00    
(186/343): sssd-proxy-2.9.4-6.el9_4.1.x86_64.rp 1.4 MB/s |  74 kB     00:00    
(187/343): sssd-ldap-2.9.4-6.el9_4.1.x86_64.rpm 1.8 MB/s | 160 kB     00:00    
(188/343): sssd-krb5-common-2.9.4-6.el9_4.1.x86 1.8 MB/s |  96 kB     00:00    
(189/343): sssd-krb5-2.9.4-6.el9_4.1.x86_64.rpm 1.0 MB/s |  74 kB     00:00    
(190/343): smartmontools-7.2-9.el9.x86_64.rpm   1.6 MB/s | 551 kB     00:00    
(191/343): sssd-kcm-2.9.4-6.el9_4.1.x86_64.rpm  1.2 MB/s | 111 kB     00:00    
(192/343): sssd-common-pac-2.9.4-6.el9_4.1.x86_ 1.6 MB/s |  98 kB     00:00    
(193/343): sssd-ipa-2.9.4-6.el9_4.1.x86_64.rpm  1.3 MB/s | 283 kB     00:00    
(194/343): sssd-client-2.9.4-6.el9_4.1.x86_64.r 1.9 MB/s | 162 kB     00:00    
(195/343): sssd-ad-2.9.4-6.el9_4.1.x86_64.rpm   2.5 MB/s | 217 kB     00:00    
(196/343): sssd-2.9.4-6.el9_4.1.x86_64.rpm      828 kB/s |  29 kB     00:00    
(197/343): libsss_sudo-2.9.4-6.el9_4.1.x86_64.r 1.3 MB/s |  37 kB     00:00    
(198/343): libsss_nss_idmap-2.9.4-6.el9_4.1.x86 580 kB/s |  47 kB     00:00    
(199/343): libsss_idmap-2.9.4-6.el9_4.1.x86_64. 1.6 MB/s |  43 kB     00:00    
(200/343): libsss_certmap-2.9.4-6.el9_4.1.x86_6 1.6 MB/s |  92 kB     00:00    
(201/343): libipa_hbac-2.9.4-6.el9_4.1.x86_64.r 1.0 MB/s |  37 kB     00:00    
(202/343): ncurses-base-6.2-10.20210508.el9.noa 1.1 MB/s |  60 kB     00:00    
(203/343): p11-kit-trust-0.25.3-2.el9.x86_64.rp 2.0 MB/s | 142 kB     00:00    
(204/343): p11-kit-0.25.3-2.el9.x86_64.rpm      2.4 MB/s | 514 kB     00:00    
(205/343): mtr-0.94-6.el9_4.x86_64.rpm          1.9 MB/s |  86 kB     00:00    
(206/343): sssd-common-2.9.4-6.el9_4.1.x86_64.r 1.4 MB/s | 1.6 MB     00:01    
(207/343): systemd-rpm-macros-252-32.el9_4.7.no 1.0 MB/s |  52 kB     00:00    
(208/343): systemd-pam-252-32.el9_4.7.x86_64.rp 1.4 MB/s | 264 kB     00:00    
(209/343): systemd-udev-252-32.el9_4.7.x86_64.r 3.1 MB/s | 1.8 MB     00:00    
(210/343): systemd-libs-252-32.el9_4.7.x86_64.r 1.6 MB/s | 656 kB     00:00    
(211/343): elfutils-libs-0.190-2.el9.x86_64.rpm 1.2 MB/s | 254 kB     00:00    
(212/343): elfutils-libelf-0.190-2.el9.x86_64.r 1.4 MB/s | 191 kB     00:00    
(213/343): elfutils-debuginfod-client-0.190-2.e 1.2 MB/s |  35 kB     00:00    
(214/343): elfutils-default-yama-scope-0.190-2. 404 kB/s |  11 kB     00:00    
(215/343): libkcapi-hmaccalc-1.4.0-2.el9.x86_64 742 kB/s |  23 kB     00:00    
(216/343): libkcapi-1.4.0-2.el9.x86_64.rpm      483 kB/s |  45 kB     00:00    
(217/343): libcurl-7.76.1-29.el9_4.1.x86_64.rpm 1.4 MB/s | 283 kB     00:00    
(218/343): systemd-252-32.el9_4.7.x86_64.rpm    3.3 MB/s | 4.0 MB     00:01    
(219/343): curl-7.76.1-29.el9_4.1.x86_64.rpm    1.5 MB/s | 293 kB     00:00    
(220/343): libtevent-0.16.0-1.el9.x86_64.rpm    1.5 MB/s |  47 kB     00:00    
(221/343): libtalloc-2.4.1-1.el9.x86_64.rpm     949 kB/s |  30 kB     00:00    
(222/343): libldb-2.8.0-2.el9_4.x86_64.rpm      3.5 MB/s | 182 kB     00:00    
(223/343): libuser-0.63-13.el9.x86_64.rpm       3.0 MB/s | 380 kB     00:00    
(224/343): openldap-2.6.6-3.el9.x86_64.rpm      1.2 MB/s | 254 kB     00:00    
(225/343): libssh-config-0.10.4-13.el9.noarch.r 233 kB/s | 9.5 kB     00:00    
(226/343): libssh-0.10.4-13.el9.x86_64.rpm      1.3 MB/s | 215 kB     00:00    
(227/343): python3-dbus-1.2.18-2.el9.0.1.x86_64 1.0 MB/s | 131 kB     00:00    
(228/343): initscripts-rename-device-10.11.6-1. 443 kB/s |  14 kB     00:00    
(229/343): sudo-1.9.5p2-10.el9_3.x86_64.rpm     3.1 MB/s | 1.0 MB     00:00    
(230/343): protobuf-c-1.3.3-13.el9.x86_64.rpm   788 kB/s |  34 kB     00:00    
(231/343): ncurses-libs-6.2-10.20210508.el9.x86 3.1 MB/s | 321 kB     00:00    
(232/343): ncurses-6.2-10.20210508.el9.x86_64.r 1.4 MB/s | 399 kB     00:00    
(233/343): krb5-libs-1.21.1-2.el9_4.x86_64.rpm  3.3 MB/s | 755 kB     00:00    
(234/343): kpartx-0.8.7-27.el9.x86_64.rpm       856 kB/s |  47 kB     00:00    
(235/343): pam-1.5.1-19.el9.x86_64.rpm          3.3 MB/s | 547 kB     00:00    
(236/343): fuse-common-3.10.2-8.el9.x86_64.rpm  135 kB/s | 7.3 kB     00:00    
(237/343): zlib-1.2.11-40.el9.x86_64.rpm        747 kB/s |  90 kB     00:00    
(238/343): tar-1.34-6.el9_4.1.x86_64.rpm        1.8 MB/s | 876 kB     00:00    
(239/343): libstdc++-11.4.1-3.el9.x86_64.rpm    2.7 MB/s | 739 kB     00:00    
(240/343): libgomp-11.4.1-3.el9.x86_64.rpm      1.7 MB/s | 267 kB     00:00    
(241/343): libgcc-11.4.1-3.el9.x86_64.rpm       1.1 MB/s |  91 kB     00:00    
(242/343): libatomic-11.4.1-3.el9.x86_64.rpm    1.2 MB/s |  33 kB     00:00    
(243/343): glibc-langpack-en-2.34-100.el9_4.4.x 2.0 MB/s | 550 kB     00:00    
(244/343): glibc-common-2.34-100.el9_4.4.x86_64 1.5 MB/s | 295 kB     00:00    
(245/343): glibc-gconv-extra-2.34-100.el9_4.4.x 2.7 MB/s | 1.6 MB     00:00    
(246/343): util-linux-user-2.37.4-18.el9.x86_64 1.1 MB/s |  30 kB     00:00    
(247/343): util-linux-core-2.37.4-18.el9.x86_64 2.7 MB/s | 437 kB     00:00    
(248/343): glibc-2.34-100.el9_4.4.x86_64.rpm    2.1 MB/s | 1.9 MB     00:00    
(249/343): util-linux-2.37.4-18.el9.x86_64.rpm  3.5 MB/s | 2.2 MB     00:00    
(250/343): libuuid-2.37.4-18.el9.x86_64.rpm     746 kB/s |  28 kB     00:00    
(251/343): libsmartcols-2.37.4-18.el9.x86_64.rp 2.0 MB/s |  63 kB     00:00    
(252/343): libmount-2.37.4-18.el9.x86_64.rpm    1.6 MB/s | 135 kB     00:00    
(253/343): libfdisk-2.37.4-18.el9.x86_64.rpm    2.4 MB/s | 154 kB     00:00    
(254/343): libblkid-2.37.4-18.el9.x86_64.rpm    1.7 MB/s | 107 kB     00:00    
(255/343): NetworkManager-tui-1.46.0-19.el9_4.x 2.1 MB/s | 245 kB     00:00    
(256/343): NetworkManager-team-1.46.0-19.el9_4. 1.3 MB/s |  40 kB     00:00    
(257/343): xfsprogs-6.3.0-1.el9.x86_64.rpm      2.4 MB/s | 1.1 MB     00:00    
(258/343): NetworkManager-libnm-1.46.0-19.el9_4 1.7 MB/s | 1.8 MB     00:01    
(259/343): python3-libdnf-0.69.0-8.el9_4.1.x86_ 1.7 MB/s | 770 kB     00:00    
(260/343): python3-hawkey-0.69.0-8.el9_4.1.x86_ 1.0 MB/s | 101 kB     00:00    
(261/343): NetworkManager-1.46.0-19.el9_4.x86_6 1.6 MB/s | 2.3 MB     00:01    
(262/343): libeconf-0.4.1-3.el9_2.x86_64.rpm    655 kB/s |  26 kB     00:00    
(263/343): libdnf-0.69.0-8.el9_4.1.x86_64.rpm   1.7 MB/s | 652 kB     00:00    
(264/343): lvm2-libs-2.03.23-2.el9.x86_64.rpm   2.1 MB/s | 1.0 MB     00:00    
(265/343): device-mapper-libs-1.02.197-2.el9.x8 1.7 MB/s | 177 kB     00:00    
(266/343): device-mapper-event-libs-1.02.197-2. 1.1 MB/s |  31 kB     00:00    
(267/343): device-mapper-event-1.02.197-2.el9.x 1.1 MB/s |  33 kB     00:00    
(268/343): device-mapper-1.02.197-2.el9.x86_64. 1.5 MB/s | 139 kB     00:00    
(269/343): libnvme-1.6-1.el9.x86_64.rpm         1.6 MB/s |  96 kB     00:00    
(270/343): rocky-repos-9.4-1.7.el9.noarch.rpm   395 kB/s |  13 kB     00:00    
(271/343): rocky-release-9.4-1.7.el9.noarch.rpm 707 kB/s |  24 kB     00:00    
(272/343): rocky-gpg-keys-9.4-1.7.el9.noarch.rp 500 kB/s |  13 kB     00:00    
(273/343): lvm2-2.03.23-2.el9.x86_64.rpm        2.5 MB/s | 1.5 MB     00:00    
(274/343): grub2-tools-minimal-2.06-82.el9_4.x8 1.3 MB/s | 603 kB     00:00    
(275/343): grub2-pc-2.06-82.el9_4.x86_64.rpm    457 kB/s |  12 kB     00:00    
(276/343): grub2-tools-2.06-82.el9_4.x86_64.rpm 2.0 MB/s | 1.8 MB     00:00    
(277/343): grub2-pc-modules-2.06-82.el9_4.noarc 1.3 MB/s | 909 kB     00:00    
(278/343): grub2-common-2.06-82.el9_4.noarch.rp 1.7 MB/s | 903 kB     00:00    
(279/343): python3-perf-5.14.0-427.42.1.el9_4.x 1.9 MB/s | 4.4 MB     00:02    
(280/343): kernel-tools-libs-5.14.0-427.42.1.el 2.0 MB/s | 4.3 MB     00:02    
(281/343): bpftool-7.3.0-427.42.1.el9_4.x86_64. 2.7 MB/s | 5.1 MB     00:01    
(282/343): PackageKit-glib-1.2.6-1.el9.x86_64.r 1.2 MB/s | 156 kB     00:00    
(283/343): PackageKit-1.2.6-1.el9.x86_64.rpm    4.5 MB/s | 618 kB     00:00    
(284/343): checkpolicy-3.6-1.el9.x86_64.rpm     3.0 MB/s | 352 kB     00:00    
(285/343): python3-file-magic-5.39-16.el9.noarc 119 kB/s |  17 kB     00:00    
(286/343): kernel-tools-5.14.0-427.42.1.el9_4.x 1.7 MB/s | 4.5 MB     00:02    
(287/343): python3-audit-3.1.2-2.el9.x86_64.rpm 639 kB/s |  82 kB     00:00    
(288/343): nmap-ncat-7.92-1.el9.x86_64.rpm      2.0 MB/s | 222 kB     00:00    
(289/343): python3-libstoragemgmt-1.9.7-2.el9.x 1.5 MB/s | 162 kB     00:00    
(290/343): libstoragemgmt-1.9.7-2.el9.x86_64.rp 1.8 MB/s | 244 kB     00:00    
(291/343): libX11-common-1.7.0-9.el9.noarch.rpm 1.1 MB/s | 151 kB     00:00    
(292/343): policycoreutils-python-utils-3.6-2.1 721 kB/s |  71 kB     00:00    
(293/343): rpm-plugin-systemd-inhibit-4.16.1.3- 155 kB/s |  16 kB     00:00    
(294/343): python3-policycoreutils-3.6-2.1.el9. 5.9 MB/s | 2.0 MB     00:00    
(295/343): python-unversioned-command-3.9.18-3.  86 kB/s | 8.5 kB     00:00    
(296/343): bind-utils-9.16.23-18.el9_4.6.x86_64 1.8 MB/s | 201 kB     00:00    
(297/343): tcpdump-4.99.0-9.el9.x86_64.rpm      884 kB/s | 542 kB     00:00    
(298/343): bind-libs-9.16.23-18.el9_4.6.x86_64. 4.7 MB/s | 1.2 MB     00:00    
(299/343): bind-license-9.16.23-18.el9_4.6.noar 128 kB/s |  13 kB     00:00    
(300/343): libdrm-2.4.117-1.el9.x86_64.rpm      1.4 MB/s | 157 kB     00:00    
(301/343): libjpeg-turbo-2.0.90-7.el9.x86_64.rp 1.6 MB/s | 174 kB     00:00    
(302/343): librelp-1.10.0-5.el9.x86_64.rpm      641 kB/s |  69 kB     00:00    
(303/343): libuv-1.42.0-2.el9_4.x86_64.rpm      1.3 MB/s | 146 kB     00:00    
(304/343): cockpit-packagekit-311.2-1.el9_4.noa 4.2 MB/s | 923 kB     00:00    
(305/343): python3-libsemanage-3.6-1.el9.x86_64 744 kB/s |  79 kB     00:00    
(306/343): python3-libselinux-3.6-1.el9.x86_64. 1.7 MB/s | 187 kB     00:00    
(307/343): librsvg2-tools-2.50.7-3.el9.x86_64.r 165 kB/s |  18 kB     00:00    
(308/343): libfastjson-0.99.9-5.el9.x86_64.rpm  190 kB/s |  37 kB     00:00    
(309/343): tracer-common-1.1-2.el9.noarch.rpm   119 kB/s |  22 kB     00:00    
(310/343): librsvg2-2.50.7-3.el9.x86_64.rpm     5.3 MB/s | 2.8 MB     00:00    
(311/343): python3-tracer-1.1-2.el9.noarch.rpm  762 kB/s | 111 kB     00:00    
(312/343): libfprint-1.94.6-1.el9.x86_64.rpm    2.5 MB/s | 319 kB     00:00    
(313/343): plymouth-scripts-0.9.5-7.20210331git 114 kB/s |  14 kB     00:00    
(314/343): plymouth-0.9.5-7.20210331git1ea1020. 803 kB/s | 107 kB     00:00    
(315/343): plymouth-core-libs-0.9.5-7.20210331g 635 kB/s |  95 kB     00:00    
(316/343): rsyslog-relp-8.2310.0-4.el9.x86_64.r 141 kB/s |  30 kB     00:00    
(317/343): wget-1.21.1-8.el9_4.x86_64.rpm       3.1 MB/s | 768 kB     00:00    
(318/343): rsyslog-logrotate-8.2310.0-4.el9.x86 102 kB/s |  11 kB     00:00    
(319/343): rsyslog-gssapi-8.2310.0-4.el9.x86_64 308 kB/s |  30 kB     00:00    
(320/343): rsyslog-gnutls-8.2310.0-4.el9.x86_64 285 kB/s |  30 kB     00:00    
(321/343): rsyslog-8.2310.0-4.el9.x86_64.rpm    2.9 MB/s | 781 kB     00:00    
(322/343): pixman-0.40.0-6.el9_3.x86_64.rpm     1.2 MB/s | 269 kB     00:00    
(323/343): nss-util-3.101.0-7.el9_4.x86_64.rpm  890 kB/s |  88 kB     00:00    
(324/343): nss-sysinit-3.101.0-7.el9_4.x86_64.r 182 kB/s |  18 kB     00:00    
(325/343): nss-softokn-freebl-3.101.0-7.el9_4.x 1.9 MB/s | 309 kB     00:00    
(326/343): nss-softokn-3.101.0-7.el9_4.x86_64.r 2.5 MB/s | 386 kB     00:00    
(327/343): nss-3.101.0-7.el9_4.x86_64.rpm       3.5 MB/s | 715 kB     00:00    
(328/343): nspr-4.35.0-14.el9_4.x86_64.rpm      523 kB/s | 133 kB     00:00    
(329/343): emacs-filesystem-27.2-10.el9_4.noarc  67 kB/s | 7.6 kB     00:00    
(330/343): qemu-guest-agent-8.2.0-11.el9_4.6.x8 2.2 MB/s | 486 kB     00:00    
(331/343): open-vm-tools-12.3.5-2.el9.x86_64.rp 2.0 MB/s | 860 kB     00:00    
(332/343): libX11-1.7.0-9.el9.x86_64.rpm        1.3 MB/s | 650 kB     00:00    
(333/343): libappstream-glib-0.7.18-5.el9_4.x86 777 kB/s | 386 kB     00:00    
(334/343): setroubleshoot-server-3.3.32-1.el9.x 877 kB/s | 323 kB     00:00    
(335/343): webkit2gtk3-jsc-2.46.1-2.el9_4.x86_6 2.7 MB/s | 4.4 MB     00:01    
(336/343): gdk-pixbuf2-2.42.6-4.el9_4.x86_64.rp 2.5 MB/s | 466 kB     00:00    
(337/343): hypervvssd-0-0.42.20190303git.el9.x8 155 kB/s |  16 kB     00:00    
(338/343): hypervfcopyd-0-0.42.20190303git.el9. 154 kB/s |  15 kB     00:00    
(339/343): hypervkvpd-0-0.42.20190303git.el9.x8 214 kB/s |  24 kB     00:00    
(340/343): hyperv-daemons-0-0.42.20190303git.el  77 kB/s | 8.0 kB     00:00    
(341/343): hyperv-daemons-license-0-0.42.201903 144 kB/s |  15 kB     00:00    
(342/343): rocky-logos-90.15-2.el9.x86_64.rpm   2.9 MB/s | 715 kB     00:00    
(343/343): linux-firmware-20240905-143.3.el9_4. 3.7 MB/s | 387 MB     01:44    
--------------------------------------------------------------------------------
Total                                           5.6 MB/s | 719 MB     02:08     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Running scriptlet: selinux-policy-targeted-38.1.35-2.el9_4.2.0.2.noarch   1/1 
  Running scriptlet: kmod-kvdo-8.2.3.3-117.el9.x86_64                       1/1 
  Running scriptlet: firewalld-1.3.4-1.el9.noarch                           1/1 
  Preparing        :                                                        1/1 
  Upgrading        : libgcc-11.4.1-3.el9.x86_64                           1/673 
  Running scriptlet: libgcc-11.4.1-3.el9.x86_64                           1/673 
  Upgrading        : linux-firmware-whence-20240905-143.3.el9_4.noarc     2/673 
  Upgrading        : crypto-policies-20240202-1.git283706d.el9.noarch     3/673 
  Running scriptlet: crypto-policies-20240202-1.git283706d.el9.noarch     3/673 
  Upgrading        : dbus-1:1.12.20-8.el9.x86_64                          4/673 
  Upgrading        : hyperv-daemons-license-0-0.42.20190303git.el9.no     5/673 
  Upgrading        : tzdata-2024b-2.el9.noarch                            6/673 
  Upgrading        : hwdata-0.348-9.13.el9.noarch                         7/673 
  Upgrading        : linux-firmware-20240905-143.3.el9_4.noarch           8/673 
  Upgrading        : tracer-common-1.1-2.el9.noarch                       9/673 
  Upgrading        : bind-license-32:9.16.23-18.el9_4.6.noarch           10/673 
  Upgrading        : libX11-common-1.7.0-9.el9.noarch                    11/673 
  Upgrading        : rocky-gpg-keys-9.4-1.7.el9.noarch                   12/673 
  Upgrading        : rocky-release-9.4-1.7.el9.noarch                    13/673 
  Upgrading        : rocky-repos-9.4-1.7.el9.noarch                      14/673 
  Upgrading        : setup-2.13.7-10.el9.noarch                          15/673 
warning: /etc/shadow created as /etc/shadow.rpmnew

  Running scriptlet: setup-2.13.7-10.el9.noarch                          15/673 
  Upgrading        : basesystem-11-13.el9.0.1.noarch                     16/673 
  Upgrading        : fuse-common-3.10.2-8.el9.x86_64                     17/673 
  Upgrading        : libssh-config-0.10.4-13.el9.noarch                  18/673 
  Upgrading        : ncurses-base-6.2-10.20210508.el9.noarch             19/673 
  Upgrading        : bash-5.1.8-9.el9.x86_64                             20/673 
  Running scriptlet: bash-5.1.8-9.el9.x86_64                             20/673 
  Upgrading        : ncurses-libs-6.2-10.20210508.el9.x86_64             21/673 
  Upgrading        : glibc-langpack-en-2.34-100.el9_4.4.x86_64           22/673 
  Upgrading        : glibc-gconv-extra-2.34-100.el9_4.4.x86_64           23/673 
  Running scriptlet: glibc-gconv-extra-2.34-100.el9_4.4.x86_64           23/673 
  Upgrading        : glibc-common-2.34-100.el9_4.4.x86_64                24/673 
  Running scriptlet: glibc-2.34-100.el9_4.4.x86_64                       25/673 
  Upgrading        : glibc-2.34-100.el9_4.4.x86_64                       25/673 
  Running scriptlet: glibc-2.34-100.el9_4.4.x86_64                       25/673 
  Upgrading        : zlib-1.2.11-40.el9.x86_64                           26/673 
  Upgrading        : audit-libs-3.1.2-2.el9.x86_64                       27/673 
  Upgrading        : libcap-2.48-9.el9_2.x86_64                          28/673 
  Upgrading        : libuuid-2.37.4-18.el9.x86_64                        29/673 
  Upgrading        : libcom_err-1.46.5-5.el9.x86_64                      30/673 
  Upgrading        : libtalloc-2.4.1-1.el9.x86_64                        31/673 
  Upgrading        : libacl-2.3.1-4.el9.x86_64                           32/673 
  Upgrading        : sqlite-libs-3.34.1-7.el9_3.x86_64                   33/673 
  Upgrading        : libtevent-0.16.0-1.el9.x86_64                       34/673 
  Upgrading        : libtdb-1.4.9-1.el9.x86_64                           35/673 
  Upgrading        : libstdc++-11.4.1-3.el9.x86_64                       36/673 
  Upgrading        : libxml2-2.9.13-6.el9_4.x86_64                       37/673 
  Upgrading        : elfutils-libelf-0.190-2.el9.x86_64                  38/673 
  Upgrading        : alternatives-1.24-1.el9.x86_64                      39/673 
  Upgrading        : lua-libs-5.4.4-4.el9.x86_64                         40/673 
  Upgrading        : libmnl-1.0.4-16.el9_4.x86_64                        41/673 
  Upgrading        : which-2.21-29.el9.x86_64                            42/673 
  Upgrading        : libsss_idmap-2.9.4-6.el9_4.1.x86_64                 43/673 
  Upgrading        : libsepol-3.6-1.el9.x86_64                           44/673 
  Upgrading        : nspr-4.35.0-14.el9_4.x86_64                         45/673 
  Upgrading        : nss-util-3.101.0-7.el9_4.x86_64                     46/673 
  Upgrading        : libedit-3.1-38.20210216cvs.el9.x86_64               47/673 
  Upgrading        : libnl3-3.9.0-1.el9.x86_64                           48/673 
  Upgrading        : libsmartcols-2.37.4-18.el9.x86_64                   49/673 
  Upgrading        : iptables-libs-1.8.10-4.el9_4.x86_64                 50/673 
  Upgrading        : libffi-3.4.2-8.el9.x86_64                           51/673 
  Upgrading        : p11-kit-0.25.3-2.el9.x86_64                         52/673 
  Upgrading        : p11-kit-trust-0.25.3-2.el9.x86_64                   53/673 
  Running scriptlet: p11-kit-trust-0.25.3-2.el9.x86_64                   53/673 
  Upgrading        : numactl-libs-2.0.16-3.el9.x86_64                    54/673 
  Upgrading        : libnftnl-1.2.6-4.el9_4.x86_64                       55/673 
  Upgrading        : ethtool-2:6.2-1.el9.x86_64                          56/673 
  Upgrading        : libbpf-2:1.3.0-2.el9.x86_64                         57/673 
  Upgrading        : file-libs-5.39-16.el9.x86_64                        58/673 
  Upgrading        : file-5.39-16.el9.x86_64                             59/673 
  Installing       : fuse3-libs-3.10.2-8.el9.x86_64                      60/673 
  Upgrading        : dmidecode-1:3.5-3.el9.x86_64                        61/673 
  Upgrading        : gmp-1:6.2.0-13.el9.x86_64                           62/673 
  Upgrading        : nettle-3.9.1-1.el9.x86_64                           63/673 
  Upgrading        : gnutls-3.8.3-4.el9_4.x86_64                         64/673 
  Upgrading        : protobuf-c-1.3.3-13.el9.x86_64                      65/673 
  Upgrading        : libgomp-11.4.1-3.el9.x86_64                         66/673 
  Upgrading        : nftables-1:1.0.9-1.el9.x86_64                       67/673 
  Running scriptlet: nftables-1:1.0.9-1.el9.x86_64                       67/673 
  Installing       : fuse3-3.10.2-8.el9.x86_64                           68/673 
  Upgrading        : nss-softokn-freebl-3.101.0-7.el9_4.x86_64           69/673 
  Upgrading        : nss-softokn-3.101.0-7.el9_4.x86_64                  70/673 
  Upgrading        : gettext-libs-0.21-8.el9.x86_64                      71/673 
  Upgrading        : gettext-0.21-8.el9.x86_64                           72/673 
  Upgrading        : acl-2.3.1-4.el9.x86_64                              73/673 
  Upgrading        : libss-1.46.5-5.el9.x86_64                           74/673 
  Upgrading        : e2fsprogs-libs-1.46.5-5.el9.x86_64                  75/673 
  Upgrading        : squashfs-tools-4.4-10.git1.el9.x86_64               76/673 
  Installing       : libtraceevent-1.5.3-3.el9.x86_64                    77/673 
  Installing       : oniguruma-6.9.6-1.el9.5.0.1.x86_64                  78/673 
  Installing       : jq-1.6-16.el9.x86_64                                79/673 
  Installing       : liburing-2.5-1.el9.x86_64                           80/673 
  Upgrading        : c-ares-1.19.1-2.el9_4.x86_64                        81/673 
  Upgrading        : expat-2.5.0-2.el9_4.1.x86_64                        82/673 
  Upgrading        : libndp-1.8-6.el9_4.x86_64                           83/673 
  Upgrading        : device-mapper-persistent-data-1.0.9-3.el9_4.x86_    84/673 
  Upgrading        : libnghttp2-1.43.0-5.el9_4.3.x86_64                  85/673 
  Upgrading        : libsss_sudo-2.9.4-6.el9_4.1.x86_64                  86/673 
  Upgrading        : libsss_nss_idmap-2.9.4-6.el9_4.1.x86_64             87/673 
  Upgrading        : libipa_hbac-2.9.4-6.el9_4.1.x86_64                  88/673 
  Upgrading        : libatomic-11.4.1-3.el9.x86_64                       89/673 
  Upgrading        : libeconf-0.4.1-3.el9_2.x86_64                       90/673 
  Upgrading        : kernel-tools-libs-5.14.0-427.42.1.el9_4.x86_64      91/673 
  Running scriptlet: kernel-tools-libs-5.14.0-427.42.1.el9_4.x86_64      91/673 
  Upgrading        : checkpolicy-3.6-1.el9.x86_64                        92/673 
  Upgrading        : libdrm-2.4.117-1.el9.x86_64                         93/673 
  Upgrading        : libjpeg-turbo-2.0.90-7.el9.x86_64                   94/673 
  Upgrading        : libuv-1:1.42.0-2.el9_4.x86_64                       95/673 
  Upgrading        : libfastjson-0.99.9-5.el9.x86_64                     96/673 
  Upgrading        : pixman-0.40.0-6.el9_3.x86_64                        97/673 
  Upgrading        : systemd-rpm-macros-252-32.el9_4.7.noarch            98/673 
  Upgrading        : coreutils-common-8.32-35.el9.x86_64                 99/673 
  Upgrading        : python3-setuptools-wheel-53.0.0-12.el9_4.1.noarc   100/673 
  Upgrading        : pcre2-syntax-10.40-5.el9.noarch                    101/673 
  Upgrading        : pcre2-10.40-5.el9.x86_64                           102/673 
  Running scriptlet: pcre2-10.40-5.el9.x86_64                           102/673 
  Upgrading        : libselinux-3.6-1.el9.x86_64                        103/673 
  Running scriptlet: libselinux-3.6-1.el9.x86_64                        103/673 
  Upgrading        : openssl-libs-1:3.0.7-28.el9_4.x86_64               104/673 
  Upgrading        : coreutils-8.32-35.el9.x86_64                       105/673 
  Running scriptlet: ca-certificates-2024.2.69_v8.0.303-91.4.el9_4.no   106/673 
  Upgrading        : ca-certificates-2024.2.69_v8.0.303-91.4.el9_4.no   106/673 
  Running scriptlet: ca-certificates-2024.2.69_v8.0.303-91.4.el9_4.no   106/673 
  Upgrading        : systemd-libs-252-32.el9_4.7.x86_64                 107/673 
  Running scriptlet: systemd-libs-252-32.el9_4.7.x86_64                 107/673 
  Upgrading        : krb5-libs-1.21.1-2.el9_4.x86_64                    108/673 
  Upgrading        : libblkid-2.37.4-18.el9.x86_64                      109/673 
  Running scriptlet: libblkid-2.37.4-18.el9.x86_64                      109/673 
  Upgrading        : dbus-libs-1:1.12.20-8.el9.x86_64                   110/673 
  Upgrading        : kmod-28-9.el9.x86_64                               111/673 
  Upgrading        : libsss_certmap-2.9.4-6.el9_4.1.x86_64              112/673 
  Upgrading        : libsemanage-3.6-1.el9.x86_64                       113/673 
  Upgrading        : shadow-utils-2:4.9-8.el9.x86_64                    114/673 
  Upgrading        : libmount-2.37.4-18.el9.x86_64                      115/673 
  Upgrading        : glib2-2.68.4-14.el9_4.1.x86_64                     116/673 
  Upgrading        : iproute-6.2.0-6.el9_4.x86_64                       117/673 
  Upgrading        : findutils-1:4.8.0-6.el9.x86_64                     118/673 
  Upgrading        : util-linux-core-2.37.4-18.el9.x86_64               119/673 
  Running scriptlet: util-linux-core-2.37.4-18.el9.x86_64               119/673 
  Upgrading        : libfdisk-2.37.4-18.el9.x86_64                      120/673 
  Upgrading        : kmod-libs-28-9.el9.x86_64                          121/673 
  Upgrading        : NetworkManager-libnm-1:1.46.0-19.el9_4.x86_64      122/673 
  Running scriptlet: NetworkManager-libnm-1:1.46.0-19.el9_4.x86_64      122/673 
  Upgrading        : gdk-pixbuf2-2.42.6-4.el9_4.x86_64                  123/673 
  Upgrading        : libtirpc-1.3.3-8.el9_4.x86_64                      124/673 
  Upgrading        : libssh-0.10.4-13.el9.x86_64                        125/673 
  Upgrading        : openssl-1:3.0.7-28.el9_4.x86_64                    126/673 
  Upgrading        : pam-1.5.1-19.el9.x86_64                            127/673 
  Running scriptlet: pam-1.5.1-19.el9.x86_64                            127/673 
  Upgrading        : util-linux-2.37.4-18.el9.x86_64                    128/673 
  Upgrading        : grub2-common-1:2.06-82.el9_4.noarch                129/673 
  Running scriptlet: openssh-8.7p1-38.el9_4.4.x86_64                    130/673 
  Upgrading        : openssh-8.7p1-38.el9_4.4.x86_64                    130/673 
  Upgrading        : libarchive-3.5.3-4.el9.0.1.x86_64                  131/673 
  Upgrading        : libevent-2.1.12-8.el9_4.x86_64                     132/673 
  Upgrading        : openldap-2.6.6-3.el9.x86_64                        133/673 
  Upgrading        : libldb-2.8.0-2.el9_4.x86_64                        134/673 
  Upgrading        : libcurl-7.76.1-29.el9_4.1.x86_64                   135/673 
  Upgrading        : libselinux-utils-3.6-1.el9.x86_64                  136/673 
  Running scriptlet: tpm2-tss-3.2.2-2.el9.x86_64                        137/673 
  Upgrading        : tpm2-tss-3.2.2-2.el9.x86_64                        137/673 
  Upgrading        : librepo-1.14.5-2.el9.x86_64                        138/673 
  Upgrading        : curl-7.76.1-29.el9_4.1.x86_64                      139/673 
  Upgrading        : rpm-libs-4.16.1.3-29.el9.x86_64                    140/673 
  Upgrading        : rpm-4.16.1.3-29.el9.x86_64                         141/673 
  Upgrading        : policycoreutils-3.6-2.1.el9.x86_64                 142/673 
  Running scriptlet: policycoreutils-3.6-2.1.el9.x86_64                 142/673 
  Upgrading        : systemd-pam-252-32.el9_4.7.x86_64                  143/673 
  Running scriptlet: systemd-252-32.el9_4.7.x86_64                      144/673 
  Upgrading        : systemd-252-32.el9_4.7.x86_64                      144/673 
  Running scriptlet: systemd-252-32.el9_4.7.x86_64                      144/673 
  Upgrading        : rsyslog-logrotate-8.2310.0-4.el9.x86_64            145/673 
  Upgrading        : rsyslog-8.2310.0-4.el9.x86_64                      146/673 
  Running scriptlet: rsyslog-8.2310.0-4.el9.x86_64                      146/673 
  Running scriptlet: samba-common-4.19.4-105.el9_4.noarch               147/673 
  Upgrading        : samba-common-4.19.4-105.el9_4.noarch               147/673 
  Running scriptlet: samba-common-4.19.4-105.el9_4.noarch               147/673 
  Upgrading        : initscripts-service-10.11.6-1.el9.noarch           148/673 
  Upgrading        : device-mapper-libs-9:1.02.197-2.el9.x86_64         149/673 
  Upgrading        : device-mapper-9:1.02.197-2.el9.x86_64              150/673 
  Upgrading        : device-mapper-event-libs-9:1.02.197-2.el9.x86_64   151/673 
  Upgrading        : grub2-tools-minimal-1:2.06-82.el9_4.x86_64         152/673 
  Upgrading        : cryptsetup-libs-2.6.0-3.el9.x86_64                 153/673 
  Upgrading        : libsolv-0.7.24-2.el9.x86_64                        154/673 
  Upgrading        : libdnf-0.69.0-8.el9_4.1.x86_64                     155/673 
  Upgrading        : device-mapper-event-9:1.02.197-2.el9.x86_64        156/673 
  Running scriptlet: device-mapper-event-9:1.02.197-2.el9.x86_64        156/673 
  Upgrading        : lvm2-libs-9:2.03.23-2.el9.x86_64                   157/673 
  Upgrading        : kpartx-0.8.7-27.el9.x86_64                         158/673 
  Upgrading        : xfsprogs-6.3.0-1.el9.x86_64                        159/673 
  Upgrading        : audit-3.1.2-2.el9.x86_64                           160/673 
  Running scriptlet: audit-3.1.2-2.el9.x86_64                           160/673 
  Upgrading        : iputils-20210202-9.el9.x86_64                      161/673 
  Running scriptlet: iputils-20210202-9.el9.x86_64                      161/673 
  Running scriptlet: authselect-libs-1.2.6-2.el9.x86_64                 162/673 
  Upgrading        : authselect-libs-1.2.6-2.el9.x86_64                 162/673 
  Upgrading        : cronie-anacron-1.5.7-11.el9.x86_64                 163/673 
  Running scriptlet: cronie-anacron-1.5.7-11.el9.x86_64                 163/673 
  Upgrading        : cronie-1.5.7-11.el9.x86_64                         164/673 
  Running scriptlet: cronie-1.5.7-11.el9.x86_64                         164/673 
  Upgrading        : elfutils-default-yama-scope-0.190-2.el9.noarch     165/673 
  Running scriptlet: elfutils-default-yama-scope-0.190-2.el9.noarch     165/673 
  Upgrading        : elfutils-libs-0.190-2.el9.x86_64                   166/673 
  Upgrading        : elfutils-debuginfod-client-0.190-2.el9.x86_64      167/673 
  Upgrading        : binutils-gold-2.35.2-43.el9.x86_64                 168/673 
  Upgrading        : binutils-2.35.2-43.el9.x86_64                      169/673 
  Running scriptlet: binutils-2.35.2-43.el9.x86_64                      169/673 
  Upgrading        : rpm-build-libs-4.16.1.3-29.el9.x86_64              170/673 
  Upgrading        : libkcapi-1.4.0-2.el9.x86_64                        171/673 
  Upgrading        : libkcapi-hmaccalc-1.4.0-2.el9.x86_64               172/673 
  Upgrading        : hypervvssd-0-0.42.20190303git.el9.x86_64           173/673 
  Running scriptlet: hypervvssd-0-0.42.20190303git.el9.x86_64           173/673 
  Upgrading        : hypervkvpd-0-0.42.20190303git.el9.x86_64           174/673 
  Running scriptlet: hypervkvpd-0-0.42.20190303git.el9.x86_64           174/673 
  Upgrading        : hypervfcopyd-0-0.42.20190303git.el9.x86_64         175/673 
  Running scriptlet: hypervfcopyd-0-0.42.20190303git.el9.x86_64         175/673 
  Upgrading        : selinux-policy-38.1.35-2.el9_4.2.0.2.noarch        176/673 
  Running scriptlet: selinux-policy-38.1.35-2.el9_4.2.0.2.noarch        176/673 
  Running scriptlet: selinux-policy-targeted-38.1.35-2.el9_4.2.0.2.no   177/673 
  Upgrading        : selinux-policy-targeted-38.1.35-2.el9_4.2.0.2.no   177/673 
  Running scriptlet: selinux-policy-targeted-38.1.35-2.el9_4.2.0.2.no   177/673 
  Upgrading        : libappstream-glib-0.7.18-5.el9_4.x86_64            178/673 
  Upgrading        : gnupg2-2.3.3-4.el9.x86_64                          179/673 
  Upgrading        : rpm-sign-libs-4.16.1.3-29.el9.x86_64               180/673 
  Upgrading        : libuser-0.63-13.el9.x86_64                         181/673 
  Upgrading        : sudo-1.9.5p2-10.el9_3.x86_64                       182/673 
  Running scriptlet: sudo-1.9.5p2-10.el9_3.x86_64                       182/673 
  Upgrading        : avahi-libs-0.8-20.el9.x86_64                       183/673 
  Upgrading        : samba-common-libs-4.19.4-105.el9_4.x86_64          184/673 
  Running scriptlet: libwbclient-4.19.4-105.el9_4.x86_64                185/673 
  Upgrading        : libwbclient-4.19.4-105.el9_4.x86_64                185/673 
  Upgrading        : samba-client-libs-4.19.4-105.el9_4.x86_64          186/673 
  Upgrading        : libsmbclient-4.19.4-105.el9_4.x86_64               187/673 
  Upgrading        : grub2-pc-modules-1:2.06-82.el9_4.noarch            188/673 
  Upgrading        : virt-what-1.25-5.el9.x86_64                        189/673 
  Upgrading        : sssd-client-2.9.4-6.el9_4.1.x86_64                 190/673 
  Running scriptlet: sssd-client-2.9.4-6.el9_4.1.x86_64                 190/673 
  Running scriptlet: sssd-common-2.9.4-6.el9_4.1.x86_64                 191/673 
  Upgrading        : sssd-common-2.9.4-6.el9_4.1.x86_64                 191/673 
  Running scriptlet: sssd-common-2.9.4-6.el9_4.1.x86_64                 191/673 
  Upgrading        : sssd-krb5-common-2.9.4-6.el9_4.1.x86_64            192/673 
  Upgrading        : sssd-common-pac-2.9.4-6.el9_4.1.x86_64             193/673 
  Upgrading        : sssd-ldap-2.9.4-6.el9_4.1.x86_64                   194/673 
  Upgrading        : sssd-krb5-2.9.4-6.el9_4.1.x86_64                   195/673 
  Upgrading        : sssd-proxy-2.9.4-6.el9_4.1.x86_64                  196/673 
  Upgrading        : harfbuzz-2.7.4-10.el9.x86_64                       197/673 
  Upgrading        : librsvg2-2.50.7-3.el9.x86_64                       198/673 
  Upgrading        : libgusb-0.3.8-2.el9.x86_64                         199/673 
  Upgrading        : PackageKit-glib-1.2.6-1.el9.x86_64                 200/673 
  Upgrading        : bind-libs-32:9.16.23-18.el9_4.6.x86_64             201/673 
  Upgrading        : bind-utils-32:9.16.23-18.el9_4.6.x86_64            202/673 
  Upgrading        : sssd-ipa-2.9.4-6.el9_4.1.x86_64                    203/673 
  Upgrading        : sssd-ad-2.9.4-6.el9_4.1.x86_64                     204/673 
  Upgrading        : sssd-2.9.4-6.el9_4.1.x86_64                        205/673 
  Upgrading        : authselect-1.2.6-2.el9.x86_64                      206/673 
  Upgrading        : procps-ng-3.3.17-14.el9.x86_64                     207/673 
  Upgrading        : plymouth-core-libs-0.9.5-7.20210331git1ea1020.el   208/673 
  Upgrading        : python3-pip-wheel-21.2.3-8.el9.noarch              209/673 
  Upgrading        : python-unversioned-command-3.9.18-3.el9_4.6.noar   210/673 
  Upgrading        : python3-3.9.18-3.el9_4.6.x86_64                    211/673 
  Upgrading        : python3-libs-3.9.18-3.el9_4.6.x86_64               212/673 
  Upgrading        : python3-dbus-1.2.18-2.el9.0.1.x86_64               213/673 
  Upgrading        : cockpit-bridge-311.2-1.el9_4.x86_64                214/673 
  Upgrading        : python3-libselinux-3.6-1.el9.x86_64                215/673 
  Upgrading        : python3-idna-2.10-7.el9_4.1.noarch                 216/673 
  Upgrading        : python3-rpm-4.16.1.3-29.el9.x86_64                 217/673 
  Upgrading        : python3-setuptools-53.0.0-12.el9_4.1.noarch        218/673 
  Upgrading        : PackageKit-1.2.6-1.el9.x86_64                      219/673 
  Running scriptlet: PackageKit-1.2.6-1.el9.x86_64                      219/673 
  Upgrading        : python3-audit-3.1.2-2.el9.x86_64                   220/673 
  Upgrading        : python3-setools-4.4.4-1.el9.x86_64                 221/673 
  Upgrading        : python3-tracer-1.1-2.el9.noarch                    222/673 
  Upgrading        : cockpit-packagekit-311.2-1.el9_4.noarch            223/673 
  Upgrading        : python3-urllib3-1.26.5-5.el9_4.1.noarch            224/673 
  Upgrading        : python3-requests-2.25.1-8.el9.noarch               225/673 
  Upgrading        : python3-libsemanage-3.6-1.el9.x86_64               226/673 
  Upgrading        : python3-policycoreutils-3.6-2.1.el9.noarch         227/673 
  Upgrading        : policycoreutils-python-utils-3.6-2.1.el9.noarch    228/673 
  Upgrading        : python3-libdnf-0.69.0-8.el9_4.1.x86_64             229/673 
  Upgrading        : python3-hawkey-0.69.0-8.el9_4.1.x86_64             230/673 
  Upgrading        : python3-linux-procfs-0.7.3-1.el9.noarch            231/673 
  Upgrading        : python3-libxml2-2.9.13-6.el9_4.x86_64              232/673 
  Running scriptlet: setroubleshoot-server-3.3.32-1.el9.x86_64          233/673 
  Upgrading        : setroubleshoot-server-3.3.32-1.el9.x86_64          233/673 
  Running scriptlet: setroubleshoot-server-3.3.32-1.el9.x86_64          233/673 
  Upgrading        : python3-dateutil-1:2.8.1-7.el9.noarch              234/673 
  Upgrading        : python3-dnf-plugins-core-4.3.0-13.el9.noarch       235/673 
  Upgrading        : python3-nftables-1:1.0.9-1.el9.x86_64              236/673 
  Upgrading        : python3-firewall-1.3.4-1.el9.noarch                237/673 
  Upgrading        : python3-perf-5.14.0-427.42.1.el9_4.x86_64          238/673 
  Upgrading        : kernel-tools-5.14.0-427.42.1.el9_4.x86_64          239/673 
  Running scriptlet: kernel-tools-5.14.0-427.42.1.el9_4.x86_64          239/673 
  Upgrading        : python3-file-magic-5.39-16.el9.noarch              240/673 
  Upgrading        : sos-4.7.2-3.el9.noarch                             241/673 
  Upgrading        : python3-libstoragemgmt-1.9.7-2.el9.x86_64          242/673 
  Running scriptlet: libstoragemgmt-1.9.7-2.el9.x86_64                  243/673 
  Upgrading        : libstoragemgmt-1.9.7-2.el9.x86_64                  243/673 
  Running scriptlet: libstoragemgmt-1.9.7-2.el9.x86_64                  243/673 
  Upgrading        : iptables-nft-1.8.10-4.el9_4.x86_64                 244/673 
  Running scriptlet: iptables-nft-1.8.10-4.el9_4.x86_64                 244/673 
  Upgrading        : rocky-logos-90.15-2.el9.x86_64                     245/673 
  Running scriptlet: rocky-logos-90.15-2.el9.x86_64                     245/673 
  Running scriptlet: cockpit-ws-311.2-1.el9_4.x86_64                    246/673 
  Upgrading        : cockpit-ws-311.2-1.el9_4.x86_64                    246/673 
  Running scriptlet: cockpit-ws-311.2-1.el9_4.x86_64                    246/673 
  Upgrading        : libnvme-1.6-1.el9.x86_64                           247/673 
  Upgrading        : librelp-1.10.0-5.el9.x86_64                        248/673 
  Upgrading        : tar-2:1.34-6.el9_4.1.x86_64                        249/673 
  Upgrading        : kbd-misc-2.4.0-9.el9.noarch                        250/673 
  Upgrading        : firewalld-filesystem-1.3.4-1.el9.noarch            251/673 
  Installing       : kbd-legacy-2.4.0-9.el9.noarch                      252/673 
  Upgrading        : kbd-2.4.0-9.el9.x86_64                             253/673 
  Upgrading        : systemd-udev-252-32.el9_4.7.x86_64                 254/673 
  Running scriptlet: systemd-udev-252-32.el9_4.7.x86_64                 254/673 
  Upgrading        : dracut-057-53.git20240104.el9.x86_64               255/673 
  Installing       : kernel-modules-core-5.14.0-427.42.1.el9_4.x86_64   256/673 
  Installing       : kernel-core-5.14.0-427.42.1.el9_4.x86_64           257/673 
  Running scriptlet: kernel-core-5.14.0-427.42.1.el9_4.x86_64           257/673 
  Running scriptlet: NetworkManager-1:1.46.0-19.el9_4.x86_64            258/673 
  Upgrading        : NetworkManager-1:1.46.0-19.el9_4.x86_64            258/673 
  Running scriptlet: NetworkManager-1:1.46.0-19.el9_4.x86_64            258/673 
  Installing       : kernel-modules-5.14.0-427.42.1.el9_4.x86_64        259/673 
  Running scriptlet: kernel-modules-5.14.0-427.42.1.el9_4.x86_64        259/673 
  Running scriptlet: grub2-tools-1:2.06-82.el9_4.x86_64                 260/673 
  Upgrading        : grub2-tools-1:2.06-82.el9_4.x86_64                 260/673 
  Upgrading        : grubby-8.40-64.el9.x86_64                          261/673 
  Running scriptlet: grubby-8.40-64.el9.x86_64                          261/673 
  Upgrading        : crypto-policies-scripts-20240202-1.git283706d.el   262/673 
  Upgrading        : nss-sysinit-3.101.0-7.el9_4.x86_64                 263/673 
  Upgrading        : nss-3.101.0-7.el9_4.x86_64                         264/673 
  Running scriptlet: nss-3.101.0-7.el9_4.x86_64                         264/673 
  Running scriptlet: kmod-kvdo-8.2.3.3-117.el9.x86_64                   265/673 
  Upgrading        : kmod-kvdo-8.2.3.3-117.el9.x86_64                   265/673 
  Running scriptlet: kmod-kvdo-8.2.3.3-117.el9.x86_64                   265/673 
  Upgrading        : dracut-network-057-53.git20240104.el9.x86_64       266/673 
  Upgrading        : NetworkManager-team-1:1.46.0-19.el9_4.x86_64       267/673 
  Upgrading        : dracut-squash-057-53.git20240104.el9.x86_64        268/673 
  Upgrading        : kexec-tools-2.0.27-8.el9_4.3.x86_64                269/673 
  Running scriptlet: kexec-tools-2.0.27-8.el9_4.3.x86_64                269/673 
  Upgrading        : cockpit-system-311.2-1.el9_4.noarch                270/673 
  Upgrading        : plymouth-0.9.5-7.20210331git1ea1020.el9.x86_64     271/673 
  Upgrading        : plymouth-scripts-0.9.5-7.20210331git1ea1020.el9.   272/673 
  Upgrading        : libfido2-1.13.0-2.el9.x86_64                       273/673 
  Upgrading        : openssh-clients-8.7p1-38.el9_4.4.x86_64            274/673 
  Running scriptlet: openssh-clients-8.7p1-38.el9_4.4.x86_64            274/673 
  Upgrading        : cockpit-311.2-1.el9_4.x86_64                       275/673 
  Upgrading        : vdo-8.2.2.2-1.el9.x86_64                           276/673 
  Upgrading        : libfprint-1.94.6-1.el9.x86_64                      277/673 
  Upgrading        : grub2-pc-1:2.06-82.el9_4.x86_64                    278/673 
  Installing       : kernel-5.14.0-427.42.1.el9_4.x86_64                279/673 
  Upgrading        : NetworkManager-tui-1:1.46.0-19.el9_4.x86_64        280/673 
  Upgrading        : dracut-config-rescue-057-53.git20240104.el9.x86_   281/673 
  Upgrading        : firewalld-1.3.4-1.el9.noarch                       282/673 
  Running scriptlet: firewalld-1.3.4-1.el9.noarch                       282/673 
  Upgrading        : open-vm-tools-12.3.5-2.el9.x86_64                  283/673 
  Running scriptlet: open-vm-tools-12.3.5-2.el9.x86_64                  283/673 
  Upgrading        : rsyslog-relp-8.2310.0-4.el9.x86_64                 284/673 
  Upgrading        : nvme-cli-2.6-5.el9.x86_64                          285/673 
  Running scriptlet: nvme-cli-2.6-5.el9.x86_64                          285/673 
  Upgrading        : tuned-2.22.1-1.el9.noarch                          286/673 
  Running scriptlet: tuned-2.22.1-1.el9.noarch                          286/673 
  Upgrading        : dnf-plugins-core-4.3.0-13.el9.noarch               287/673 
  Upgrading        : usbutils-015-1.el9.x86_64                          288/673 
  Upgrading        : realmd-0.17.1-2.el9.x86_64                         289/673 
  Running scriptlet: realmd-0.17.1-2.el9.x86_64                         289/673 
  Upgrading        : librsvg2-tools-2.50.7-3.el9.x86_64                 290/673 
  Upgrading        : sssd-kcm-2.9.4-6.el9_4.1.x86_64                    291/673 
  Running scriptlet: sssd-kcm-2.9.4-6.el9_4.1.x86_64                    291/673 
  Upgrading        : util-linux-user-2.37.4-18.el9.x86_64               292/673 
  Upgrading        : rpm-plugin-selinux-4.16.1.3-29.el9.x86_64          293/673 
  Upgrading        : hyperv-daemons-0-0.42.20190303git.el9.x86_64       294/673 
  Upgrading        : xfsdump-3.1.12-4.el9_3.x86_64                      295/673 
  Upgrading        : lvm2-9:2.03.23-2.el9.x86_64                        296/673 
  Running scriptlet: lvm2-9:2.03.23-2.el9.x86_64                        296/673 
  Upgrading        : cryptsetup-2.6.0-3.el9.x86_64                      297/673 
  Installing       : grub2-tools-extra-1:2.06-82.el9_4.x86_64           298/673 
  Installing       : grub2-tools-efi-1:2.06-82.el9_4.x86_64             299/673 
  Upgrading        : rsyslog-gssapi-8.2310.0-4.el9.x86_64               300/673 
  Upgrading        : rsyslog-gnutls-8.2310.0-4.el9.x86_64               301/673 
  Upgrading        : mdadm-4.2-14.el9_4.x86_64                          302/673 
  Running scriptlet: mdadm-4.2-14.el9_4.x86_64                          302/673 
  Upgrading        : microcode_ctl-4:20230808-2.20240910.1.el9_4.noar   303/673 
  Running scriptlet: microcode_ctl-4:20230808-2.20240910.1.el9_4.noar   303/673 
  Upgrading        : mcelog-3:195-0.el9.x86_64                          304/673 
  Running scriptlet: mcelog-3:195-0.el9.x86_64                          304/673 
  Upgrading        : dbus-common-1:1.12.20-8.el9.noarch                 305/673 
  Running scriptlet: dbus-common-1:1.12.20-8.el9.noarch                 305/673 
  Running scriptlet: chrony-4.5-1.el9.x86_64                            306/673 
  Upgrading        : chrony-4.5-1.el9.x86_64                            306/673 
  Running scriptlet: chrony-4.5-1.el9.x86_64                            306/673 
  Running scriptlet: openssh-server-8.7p1-38.el9_4.4.x86_64             307/673 
  Upgrading        : openssh-server-8.7p1-38.el9_4.4.x86_64             307/673 
  Running scriptlet: openssh-server-8.7p1-38.el9_4.4.x86_64             307/673 
  Upgrading        : smartmontools-1:7.2-9.el9.x86_64                   308/673 
  Running scriptlet: smartmontools-1:7.2-9.el9.x86_64                   308/673 
  Upgrading        : qemu-guest-agent-17:8.2.0-11.el9_4.6.x86_64        309/673 
  Running scriptlet: qemu-guest-agent-17:8.2.0-11.el9_4.6.x86_64        309/673 
  Upgrading        : rpm-plugin-audit-4.16.1.3-29.el9.x86_64            310/673 
  Upgrading        : rpm-plugin-systemd-inhibit-4.16.1.3-29.el9.x86_6   311/673 
  Upgrading        : iproute-tc-6.2.0-6.el9_4.x86_64                    312/673 
  Upgrading        : irqbalance-2:1.9.2-3.el9.x86_64                    313/673 
  Running scriptlet: irqbalance-2:1.9.2-3.el9.x86_64                    313/673 
  Upgrading        : initscripts-rename-device-10.11.6-1.el9.x86_64     314/673 
  Upgrading        : webkit2gtk3-jsc-2.46.1-2.el9_4.x86_64              315/673 
  Running scriptlet: tcpdump-14:4.99.0-9.el9.x86_64                     316/673 
  Upgrading        : tcpdump-14:4.99.0-9.el9.x86_64                     316/673 
  Upgrading        : e2fsprogs-1.46.5-5.el9.x86_64                      317/673 
  Upgrading        : ledmon-0.97-1.el9.x86_64                           318/673 
  Running scriptlet: ledmon-0.97-1.el9.x86_64                           318/673 
  Upgrading        : nmap-ncat-3:7.92-1.el9.x86_64                      319/673 
  Running scriptlet: nmap-ncat-3:7.92-1.el9.x86_64                      319/673 
  Upgrading        : wget-1.21.1-8.el9_4.x86_64                         320/673 
  Upgrading        : libibverbs-48.0-1.el9.x86_64                       321/673 
  Upgrading        : libnl3-cli-3.9.0-1.el9.x86_64                      322/673 
  Running scriptlet: man-pages-6.04-1.el9.noarch                        323/673 
  Upgrading        : man-pages-6.04-1.el9.noarch                        323/673 
  Running scriptlet: man-pages-6.04-1.el9.noarch                        323/673 
  Upgrading        : bpftool-7.3.0-427.42.1.el9_4.x86_64                324/673 
  Upgrading        : lshw-B.02.19.2-10.el9.x86_64                       325/673 
  Upgrading        : less-590-4.el9_4.x86_64                            326/673 
  Upgrading        : mtr-2:0.94-6.el9_4.x86_64                          327/673 
  Upgrading        : ncurses-6.2-10.20210508.el9.x86_64                 328/673 
  Upgrading        : libX11-1.7.0-9.el9.x86_64                          329/673 
  Upgrading        : bash-completion-1:2.11-5.el9.noarch                330/673 
  Upgrading        : iwl7260-firmware-1:25.30.13.0-143.3.el9_4.noarch   331/673 
  Upgrading        : iwl6050-firmware-41.28.5.1-143.3.el9_4.noarch      332/673 
  Upgrading        : iwl6000g2a-firmware-18.168.6.1-143.3.el9_4.noarc   333/673 
  Upgrading        : iwl5150-firmware-8.24.2.2-143.3.el9_4.noarch       334/673 
  Upgrading        : iwl5000-firmware-8.83.5.1_1-143.3.el9_4.noarch     335/673 
  Upgrading        : iwl3160-firmware-1:25.30.13.0-143.3.el9_4.noarch   336/673 
  Upgrading        : iwl2030-firmware-18.168.6.1-143.3.el9_4.noarch     337/673 
  Upgrading        : iwl2000-firmware-18.168.6.1-143.3.el9_4.noarch     338/673 
  Upgrading        : iwl135-firmware-18.168.6.1-143.3.el9_4.noarch      339/673 
  Upgrading        : iwl105-firmware-18.168.6.1-143.3.el9_4.noarch      340/673 
  Upgrading        : iwl1000-firmware-1:39.31.5.1-143.3.el9_4.noarch    341/673 
  Upgrading        : iwl100-firmware-39.31.5.1-143.3.el9_4.noarch       342/673 
  Upgrading        : emacs-filesystem-1:27.2-10.el9_4.noarch            343/673 
  Running scriptlet: tuned-2.20.0-1.el9.noarch                          344/673 
  Cleanup          : tuned-2.20.0-1.el9.noarch                          344/673 
  Running scriptlet: tuned-2.20.0-1.el9.noarch                          344/673 
  Running scriptlet: microcode_ctl-4:20220809-2.el9.noarch              345/673 
  Cleanup          : microcode_ctl-4:20220809-2.el9.noarch              345/673 
  Running scriptlet: microcode_ctl-4:20220809-2.el9.noarch              345/673 
  Running scriptlet: firewalld-1.2.1-1.el9.noarch                       346/673 
  Cleanup          : firewalld-1.2.1-1.el9.noarch                       346/673 
  Running scriptlet: firewalld-1.2.1-1.el9.noarch                       346/673 
  Cleanup          : grub2-pc-1:2.06-61.el9.rocky.0.1.x86_64            347/673 
  Running scriptlet: dbus-common-1:1.12.20-7.el9_1.noarch               348/673 
  Cleanup          : dbus-common-1:1.12.20-7.el9_1.noarch               348/673 
  Running scriptlet: dbus-common-1:1.12.20-7.el9_1.noarch               348/673 
  Cleanup          : selinux-policy-targeted-38.1.11-2.el9_2.2.noarch   349/673 
  Running scriptlet: selinux-policy-targeted-38.1.11-2.el9_2.2.noarch   349/673 
  Running scriptlet: man-pages-5.10-6.el9.noarch                        350/673 
  Cleanup          : man-pages-5.10-6.el9.noarch                        350/673 
  Running scriptlet: man-pages-5.10-6.el9.noarch                        350/673 
  Cleanup          : plymouth-scripts-0.9.5-6.20210331git1ea1020.el9.   351/673 
  Cleanup          : cockpit-286.1-1.el9.x86_64                         352/673 
  Cleanup          : cockpit-system-286.1-1.el9.noarch                  353/673 
  Cleanup          : sos-4.5.1-3.el9_2.noarch                           354/673 
  Cleanup          : python3-requests-2.25.1-6.el9.noarch               355/673 
  Cleanup          : python3-urllib3-1.26.5-3.el9.noarch                356/673 
  Cleanup          : cockpit-packagekit-286.1-1.el9.noarch              357/673 
  Cleanup          : python3-tracer-0.7.5-4.el9.noarch                  358/673 
  Cleanup          : python3-firewall-1.2.1-1.el9.noarch                359/673 
  Cleanup          : python3-linux-procfs-0.7.1-1.el9.noarch            360/673 
  Cleanup          : hyperv-daemons-0-0.41.20190303git.el9.x86_64       361/673 
  Cleanup          : python3-nftables-1:1.0.4-10.el9_1.x86_64           362/673 
  Cleanup          : python3-file-magic-5.39-12.el9.noarch              363/673 
  Cleanup          : rocky-repos-9.2-1.4.el9.noarch                     364/673 
  Cleanup          : dracut-config-rescue-057-21.git20230214.el9.x86_   365/673 
  Cleanup          : python3-idna-2.10-7.el9.noarch                     366/673 
  Cleanup          : grub2-pc-modules-1:2.06-61.el9.rocky.0.1.noarch    367/673 
  Cleanup          : iwl100-firmware-39.31.5.1-134.el9_2.noarch         368/673 
  Cleanup          : iwl1000-firmware-1:39.31.5.1-134.el9_2.noarch      369/673 
  Cleanup          : iwl105-firmware-18.168.6.1-134.el9_2.noarch        370/673 
  Cleanup          : iwl135-firmware-18.168.6.1-134.el9_2.noarch        371/673 
  Cleanup          : iwl2000-firmware-18.168.6.1-134.el9_2.noarch       372/673 
  Cleanup          : iwl2030-firmware-18.168.6.1-134.el9_2.noarch       373/673 
  Cleanup          : iwl3160-firmware-1:25.30.13.0-134.el9_2.noarch     374/673 
  Cleanup          : iwl5000-firmware-8.83.5.1_1-134.el9_2.noarch       375/673 
  Cleanup          : iwl5150-firmware-8.24.2.2-134.el9_2.noarch         376/673 
  Cleanup          : iwl6000g2a-firmware-18.168.6.1-134.el9_2.noarch    377/673 
  Cleanup          : iwl6050-firmware-41.28.5.1-134.el9_2.noarch        378/673 
  Cleanup          : iwl7260-firmware-1:25.30.13.0-134.el9_2.noarch     379/673 
  Cleanup          : linux-firmware-20230310-134.el9_2.noarch           380/673 
  Cleanup          : dnf-plugins-core-4.3.0-5.el9_2.noarch              381/673 
  Cleanup          : python3-dnf-plugins-core-4.3.0-5.el9_2.noarch      382/673 
  Cleanup          : python3-dateutil-1:2.8.1-6.el9.noarch              383/673 
  Cleanup          : bash-completion-1:2.11-4.el9.noarch                384/673 
  Running scriptlet: cockpit-ws-286.1-1.el9.x86_64                      385/673 
  Cleanup          : cockpit-ws-286.1-1.el9.x86_64                      385/673 
  Running scriptlet: cockpit-ws-286.1-1.el9.x86_64                      385/673 
  Running scriptlet: open-vm-tools-12.1.5-1.el9.x86_64                  386/673 
  Cleanup          : open-vm-tools-12.1.5-1.el9.x86_64                  386/673 
  Running scriptlet: open-vm-tools-12.1.5-1.el9.x86_64                  386/673 
  Running scriptlet: lvm2-9:2.03.17-7.el9.x86_64                        387/673 
  Cleanup          : lvm2-9:2.03.17-7.el9.x86_64                        387/673 
  Running scriptlet: lvm2-9:2.03.17-7.el9.x86_64                        387/673 
  Running scriptlet: openssh-server-8.7p1-29.el9_2.x86_64               388/673 
  Cleanup          : openssh-server-8.7p1-29.el9_2.x86_64               388/673 
  Running scriptlet: openssh-server-8.7p1-29.el9_2.x86_64               388/673 
  Running scriptlet: kexec-tools-2.0.25-13.el9_2.x86_64                 389/673 
  Cleanup          : kexec-tools-2.0.25-13.el9_2.x86_64                 389/673 
  Running scriptlet: kexec-tools-2.0.25-13.el9_2.x86_64                 389/673 
  Cleanup          : webkit2gtk3-jsc-2.38.5-1.el9_2.1.x86_64            390/673 
  Cleanup          : NetworkManager-tui-1:1.42.2-1.el9.x86_64           391/673 
  Cleanup          : device-mapper-persistent-data-0.9.0-13.el9.x86_6   392/673 
  Running scriptlet: qemu-guest-agent-17:7.2.0-14.el9_2.x86_64          393/673 
  Cleanup          : qemu-guest-agent-17:7.2.0-14.el9_2.x86_64          393/673 
  Running scriptlet: qemu-guest-agent-17:7.2.0-14.el9_2.x86_64          393/673 
  Cleanup          : systemd-pam-252-13.el9_2.x86_64                    394/673 
  Running scriptlet: sssd-kcm-2.8.2-2.el9.x86_64                        395/673 
  Cleanup          : sssd-kcm-2.8.2-2.el9.x86_64                        395/673 
  Running scriptlet: sssd-kcm-2.8.2-2.el9.x86_64                        395/673 
  Running scriptlet: chrony-4.3-1.el9.x86_64                            396/673 
  Cleanup          : chrony-4.3-1.el9.x86_64                            396/673 
  Running scriptlet: chrony-4.3-1.el9.x86_64                            396/673 
  Running scriptlet: smartmontools-1:7.2-6.el9.x86_64                   397/673 
  Cleanup          : smartmontools-1:7.2-6.el9.x86_64                   397/673 
  Running scriptlet: smartmontools-1:7.2-6.el9.x86_64                   397/673 
  Cleanup          : lvm2-libs-9:2.03.17-7.el9.x86_64                   398/673 
  Cleanup          : sudo-1.9.5p2-9.el9.x86_64                          399/673 
  Running scriptlet: device-mapper-event-9:1.02.187-7.el9.x86_64        400/673 
  Cleanup          : device-mapper-event-9:1.02.187-7.el9.x86_64        400/673 
  Cleanup          : PackageKit-1.2.4-2.el9.x86_64                      401/673 
  Running scriptlet: kernel-tools-5.14.0-284.11.1.el9_2.x86_64          402/673 
  Cleanup          : kernel-tools-5.14.0-284.11.1.el9_2.x86_64          402/673 
  Running scriptlet: kernel-tools-5.14.0-284.11.1.el9_2.x86_64          402/673 
  Running scriptlet: openssh-clients-8.7p1-29.el9_2.x86_64              403/673 
  Cleanup          : openssh-clients-8.7p1-29.el9_2.x86_64              403/673 
  Cleanup          : e2fsprogs-1.46.5-3.el9.x86_64                      404/673 
  Cleanup          : iproute-tc-6.1.0-1.el9.x86_64                      405/673 
  Cleanup          : binutils-gold-2.35.2-37.el9.x86_64                 406/673 
  Running scriptlet: binutils-2.35.2-37.el9.x86_64                      407/673 
  Cleanup          : binutils-2.35.2-37.el9.x86_64                      407/673 
  Running scriptlet: binutils-2.35.2-37.el9.x86_64                      407/673 
  Running scriptlet: nftables-1:1.0.4-10.el9_1.x86_64                   408/673 
  Cleanup          : nftables-1:1.0.4-10.el9_1.x86_64                   408/673 
  Running scriptlet: nftables-1:1.0.4-10.el9_1.x86_64                   408/673 
  Cleanup          : cockpit-bridge-286.1-1.el9.x86_64                  409/673 
  Cleanup          : bpftool-7.0.0-284.11.1.el9_2.x86_64                410/673 
  Running scriptlet: mdadm-4.2-8.el9.x86_64                             411/673 
  Cleanup          : mdadm-4.2-8.el9.x86_64                             411/673 
  Running scriptlet: mdadm-4.2-8.el9.x86_64                             411/673 
  Cleanup          : setroubleshoot-server-3.3.31-2.el9_2.x86_64        412/673 
  Running scriptlet: setroubleshoot-server-3.3.31-2.el9_2.x86_64        412/673 
  Cleanup          : python3-libxml2-2.9.13-3.el9_1.x86_64              413/673 
  Running scriptlet: audit-3.0.7-103.el9.x86_64                         414/673 
  Cleanup          : audit-3.0.7-103.el9.x86_64                         414/673 
  Running scriptlet: audit-3.0.7-103.el9.x86_64                         414/673 
  Cleanup          : iptables-nft-1.8.8-6.el9_1.x86_64                  415/673 
  Running scriptlet: iptables-nft-1.8.8-6.el9_1.x86_64                  415/673 
  Cleanup          : libfprint-1.94.5-1.el9.x86_64                      416/673 
  Cleanup          : lshw-B.02.19.2-9.el9.x86_64                        417/673 
  Cleanup          : python3-hawkey-0.69.0-3.el9_2.x86_64               418/673 
  Cleanup          : python3-libdnf-0.69.0-3.el9_2.x86_64               419/673 
  Cleanup          : libdnf-0.69.0-3.el9_2.x86_64                       420/673 
  Cleanup          : python3-libs-3.9.16-1.el9.x86_64                   421/673 
  Running scriptlet: nmap-ncat-3:7.91-12.el9.x86_64                     422/673 
  Cleanup          : nmap-ncat-3:7.91-12.el9.x86_64                     422/673 
  Cleanup          : xfsdump-3.1.10-1.el9.x86_64                        423/673 
  Cleanup          : xfsprogs-5.14.2-1.el9.x86_64                       424/673 
  Cleanup          : openssh-8.7p1-29.el9_2.x86_64                      425/673 
  Cleanup          : wget-1.21.1-7.el9.x86_64                           426/673 
  Cleanup          : libnl3-cli-3.7.0-1.el9.x86_64                      427/673 
  Cleanup          : cryptsetup-2.6.0-2.el9.x86_64                      428/673 
  Cleanup          : elfutils-debuginfod-client-0.188-3.el9.x86_64      429/673 
  Running scriptlet: irqbalance-2:1.9.0-3.el9.x86_64                    430/673 
  Cleanup          : irqbalance-2:1.9.0-3.el9.x86_64                    430/673 
  Running scriptlet: irqbalance-2:1.9.0-3.el9.x86_64                    430/673 
  Cleanup          : nvme-cli-2.2.1-2.el9.x86_64                        431/673 
  Running scriptlet: realmd-0.17.1-1.el9.x86_64                         432/673 
  Cleanup          : realmd-0.17.1-1.el9.x86_64                         432/673 
  Running scriptlet: realmd-0.17.1-1.el9.x86_64                         432/673 
  Cleanup          : vdo-8.2.0.2-1.el9.x86_64                           433/673 
  Cleanup          : librepo-1.14.5-1.el9.x86_64                        434/673 
  Cleanup          : libsolv-0.7.22-4.el9.x86_64                        435/673 
  Cleanup          : libappstream-glib-0.7.18-4.el9.x86_64              436/673 
  Running scriptlet: mcelog-3:189-0.el9.x86_64                          437/673 
  Cleanup          : mcelog-3:189-0.el9.x86_64                          437/673 
  Running scriptlet: mcelog-3:189-0.el9.x86_64                          437/673 
  Cleanup          : libibverbs-44.0-2.el9.x86_64                       438/673 
  Cleanup          : tar-2:1.34-6.el9_1.x86_64                          439/673 
  Cleanup          : rpm-plugin-systemd-inhibit-4.16.1.3-22.el9.x86_6   440/673 
  Cleanup          : rpm-plugin-selinux-4.16.1.3-22.el9.x86_64          441/673 
  Running scriptlet: authselect-1.2.6-1.el9.x86_64                      442/673 
  Cleanup          : authselect-1.2.6-1.el9.x86_64                      442/673 
  Cleanup          : authselect-libs-1.2.6-1.el9.x86_64                 443/673 
  Cleanup          : libfido2-1.6.0-7.el9.x86_64                        444/673 
  Cleanup          : python3-perf-5.14.0-284.11.1.el9_2.x86_64          445/673 
  Cleanup          : libnvme-1.2-2.el9.x86_64                           446/673 
  Cleanup          : iptables-libs-1.8.8-6.el9_1.x86_64                 447/673 
  Cleanup          : util-linux-user-2.37.4-11.el9_2.x86_64             448/673 
  Cleanup          : libuser-0.63-12.el9.x86_64                         449/673 
  Cleanup          : mtr-2:0.94-4.el9.x86_64                            450/673 
  Running scriptlet: ledmon-0.96-5.el9.x86_64                           451/673 
  Cleanup          : ledmon-0.96-5.el9.x86_64                           451/673 
  Running scriptlet: ledmon-0.96-5.el9.x86_64                           451/673 
  Cleanup          : e2fsprogs-libs-1.46.5-3.el9.x86_64                 452/673 
  Running scriptlet: hypervkvpd-0-0.41.20190303git.el9.x86_64           453/673 
  Cleanup          : hypervkvpd-0-0.41.20190303git.el9.x86_64           453/673 
  Running scriptlet: hypervkvpd-0-0.41.20190303git.el9.x86_64           453/673 
  Cleanup          : plymouth-0.9.5-6.20210331git1ea1020.el9.x86_64     454/673 
  Cleanup          : plymouth-core-libs-0.9.5-6.20210331git1ea1020.el   455/673 
  Cleanup          : nss-sysinit-3.79.0-18.el9_1.x86_64                 456/673 
  Cleanup          : nss-3.79.0-18.el9_1.x86_64                         457/673 
  Cleanup          : nss-softokn-3.79.0-18.el9_1.x86_64                 458/673 
  Cleanup          : tcpdump-14:4.99.0-6.el9.x86_64                     459/673 
  Cleanup          : rpm-plugin-audit-4.16.1.3-22.el9.x86_64            460/673 
  Cleanup          : PackageKit-glib-1.2.4-2.el9.x86_64                 461/673 
  Cleanup          : ethtool-2:5.16-1.el9.x86_64                        462/673 
  Running scriptlet: hypervvssd-0-0.41.20190303git.el9.x86_64           463/673 
  Cleanup          : hypervvssd-0-0.41.20190303git.el9.x86_64           463/673 
  Running scriptlet: hypervvssd-0-0.41.20190303git.el9.x86_64           463/673 
  Cleanup          : libX11-1.7.0-7.el9.x86_64                          464/673 
  Cleanup          : cronie-anacron-1.5.7-8.el9.x86_64                  465/673 
  Running scriptlet: cronie-1.5.7-8.el9.x86_64                          466/673 
  Cleanup          : cronie-1.5.7-8.el9.x86_64                          466/673 
  Running scriptlet: cronie-1.5.7-8.el9.x86_64                          466/673 
  Cleanup          : usbutils-013-4.el9.x86_64                          467/673 
  Running scriptlet: hypervfcopyd-0-0.41.20190303git.el9.x86_64         468/673 
  Cleanup          : hypervfcopyd-0-0.41.20190303git.el9.x86_64         468/673 
  Running scriptlet: hypervfcopyd-0-0.41.20190303git.el9.x86_64         468/673 
  Cleanup          : librsvg2-tools-2.50.7-1.el9.x86_64                 469/673 
  Cleanup          : librsvg2-2.50.7-1.el9.x86_64                       470/673 
  Cleanup          : gdk-pixbuf2-2.42.6-3.el9.x86_64                    471/673 
  Cleanup          : ncurses-6.2-8.20210508.el9.x86_64                  472/673 
  Cleanup          : nss-softokn-freebl-3.79.0-18.el9_1.x86_64          473/673 
  Cleanup          : nss-util-3.79.0-18.el9_1.x86_64                    474/673 
  Cleanup          : nspr-4.34.0-18.el9_1.x86_64                        475/673 
  Cleanup          : numactl-libs-2.0.14-9.el9.x86_64                   476/673 
  Cleanup          : device-mapper-event-libs-9:1.02.187-7.el9.x86_64   477/673 
  Cleanup          : python3-rpm-4.16.1.3-22.el9.x86_64                 478/673 
  Cleanup          : rpm-build-libs-4.16.1.3-22.el9.x86_64              479/673 
  Cleanup          : elfutils-libs-0.188-3.el9.x86_64                   480/673 
  Cleanup          : rpm-sign-libs-4.16.1.3-22.el9.x86_64               481/673 
  Cleanup          : gnupg2-2.3.3-2.el9_0.x86_64                        482/673 
  Cleanup          : libdrm-2.4.114-1.el9.x86_64                        483/673 
  Cleanup          : NetworkManager-team-1:1.42.2-1.el9.x86_64          484/673 
  Cleanup          : less-590-1.el9_0.x86_64                            485/673 
  Cleanup          : harfbuzz-2.7.4-8.el9.x86_64                        486/673 
  Cleanup          : libgusb-0.3.8-1.el9.x86_64                         487/673 
  Cleanup          : pixman-0.40.0-5.el9.x86_64                         488/673 
  Cleanup          : libss-1.46.5-3.el9.x86_64                          489/673 
  Cleanup          : rsyslog-gssapi-8.2102.0-113.el9_2.x86_64           490/673 
  Cleanup          : rsyslog-relp-8.2102.0-113.el9_2.x86_64             491/673 
  Cleanup          : librelp-1.10.0-4.el9.x86_64                        492/673 
  Cleanup          : libedit-3.1-37.20210216cvs.el9.x86_64              493/673 
  Cleanup          : expat-2.5.0-1.el9.x86_64                           494/673 
  Cleanup          : rsyslog-gnutls-8.2102.0-113.el9_2.x86_64           495/673 
  Cleanup          : rsyslog-logrotate-8.2102.0-113.el9_2.x86_64        496/673 
  Running scriptlet: rsyslog-8.2102.0-113.el9_2.x86_64                  497/673 
  Cleanup          : rsyslog-8.2102.0-113.el9_2.x86_64                  497/673 
  Running scriptlet: rsyslog-8.2102.0-113.el9_2.x86_64                  497/673 
  Cleanup          : python3-libstoragemgmt-1.9.5-1.el9.x86_64          498/673 
  Running scriptlet: libstoragemgmt-1.9.5-1.el9.x86_64                  499/673 
  Cleanup          : libstoragemgmt-1.9.5-1.el9.x86_64                  499/673 
  Running scriptlet: libstoragemgmt-1.9.5-1.el9.x86_64                  499/673 
  Cleanup          : initscripts-rename-device-10.11.5-1.el9.x86_64     500/673 
  Cleanup          : dracut-network-057-21.git20230214.el9.x86_64       501/673 
  Cleanup          : sssd-2.8.2-2.el9.x86_64                            502/673 
  Running scriptlet: selinux-policy-38.1.11-2.el9_2.2.noarch            503/673 
  Cleanup          : selinux-policy-38.1.11-2.el9_2.2.noarch            503/673 
  Running scriptlet: selinux-policy-38.1.11-2.el9_2.2.noarch            503/673 
  Running scriptlet: kmod-kvdo-8.2.1.6-75.el9_2.x86_64                  504/673 
  Cleanup          : kmod-kvdo-8.2.1.6-75.el9_2.x86_64                  504/673 
  Running scriptlet: kmod-kvdo-8.2.1.6-75.el9_2.x86_64                  504/673 
  Cleanup          : crypto-policies-scripts-20221215-1.git9a18988.el   505/673 
  Cleanup          : initscripts-service-10.11.5-1.el9.noarch           506/673 
  Cleanup          : dracut-squash-057-21.git20230214.el9.x86_64        507/673 
  Cleanup          : rocky-logos-90.14-1.el9.x86_64                     508/673 
  Running scriptlet: rocky-logos-90.14-1.el9.x86_64                     508/673 
  Cleanup          : elfutils-default-yama-scope-0.188-3.el9.noarch     509/673 
  Cleanup          : policycoreutils-python-utils-3.5-1.el9.noarch      510/673 
  Cleanup          : python3-policycoreutils-3.5-1.el9.noarch           511/673 
  Cleanup          : python3-pip-wheel-21.2.3-6.el9.noarch              512/673 
  Cleanup          : hyperv-daemons-license-0-0.41.20190303git.el9.no   513/673 
  Cleanup          : hwdata-0.348-9.7.el9.noarch                        514/673 
  Cleanup          : libX11-common-1.7.0-7.el9.noarch                   515/673 
  Cleanup          : python3-setuptools-wheel-53.0.0-12.el9.noarch      516/673 
  Cleanup          : linux-firmware-whence-20230310-134.el9_2.noarch    517/673 
  Cleanup          : rocky-gpg-keys-9.2-1.4.el9.noarch                  518/673 
  Cleanup          : tracer-common-0.7.5-4.el9.noarch                   519/673 
  Cleanup          : firewalld-filesystem-1.2.1-1.el9.noarch            520/673 
  Cleanup          : emacs-filesystem-1:27.2-8.el9_2.1.noarch           521/673 
  Cleanup          : fuse-common-3.10.2-5.el9.0.1.x86_64                522/673 
  Running scriptlet: NetworkManager-1:1.42.2-1.el9.x86_64               523/673 
  Cleanup          : NetworkManager-1:1.42.2-1.el9.x86_64               523/673 
  Running scriptlet: NetworkManager-1:1.42.2-1.el9.x86_64               523/673 
  Cleanup          : sssd-ipa-2.8.2-2.el9.x86_64                        524/673 
  Cleanup          : sssd-ad-2.8.2-2.el9.x86_64                         525/673 
  Cleanup          : libsmbclient-4.17.5-102.el9.x86_64                 526/673 
  Cleanup          : samba-common-libs-4.17.5-102.el9.x86_64            527/673 
  Cleanup          : iproute-6.1.0-1.el9.x86_64                         528/673 
  Cleanup          : sssd-ldap-2.8.2-2.el9.x86_64                       529/673 
  Cleanup          : sssd-common-pac-2.8.2-2.el9.x86_64                 530/673 
  Cleanup          : samba-client-libs-4.17.5-102.el9.x86_64            531/673 
  Running scriptlet: policycoreutils-3.5-1.el9.x86_64                   532/673 
  Cleanup          : policycoreutils-3.5-1.el9.x86_64                   532/673 
  Cleanup          : sssd-proxy-2.8.2-2.el9.x86_64                      533/673 
  Cleanup          : NetworkManager-libnm-1:1.42.2-1.el9.x86_64         534/673 
  Running scriptlet: NetworkManager-libnm-1:1.42.2-1.el9.x86_64         534/673 
  Cleanup          : sssd-krb5-2.8.2-2.el9.x86_64                       535/673 
  Cleanup          : libbpf-2:1.0.0-2.el9.x86_64                        536/673 
  Cleanup          : squashfs-tools-4.4-8.git1.el9.x86_64               537/673 
  Cleanup          : sssd-krb5-common-2.8.2-2.el9.x86_64                538/673 
  Running scriptlet: sssd-common-2.8.2-2.el9.x86_64                     539/673 
  Cleanup          : sssd-common-2.8.2-2.el9.x86_64                     539/673 
  Running scriptlet: sssd-common-2.8.2-2.el9.x86_64                     539/673 
  Running scriptlet: sssd-client-2.8.2-2.el9.x86_64                     540/673 
  Cleanup          : sssd-client-2.8.2-2.el9.x86_64                     540/673 
  Cleanup          : libldb-2.6.1-1.el9.x86_64                          541/673 
  Running scriptlet: iputils-20210202-8.el9_1.1.x86_64                  542/673 
  Cleanup          : iputils-20210202-8.el9_1.1.x86_64                  542/673 
  Running scriptlet: iputils-20210202-8.el9_1.1.x86_64                  542/673 
  Cleanup          : libselinux-utils-3.5-1.el9.x86_64                  543/673 
  Cleanup          : libtirpc-1.3.3-1.el9.x86_64                        544/673 
  Cleanup          : bind-utils-32:9.16.23-11.el9.x86_64                545/673 
  Cleanup          : bind-libs-32:9.16.23-11.el9.x86_64                 546/673 
  Cleanup          : libuv-1:1.42.0-1.el9.x86_64                        547/673 
  Cleanup          : libnl3-3.7.0-1.el9.x86_64                          548/673 
  Cleanup          : grubby-8.40-63.el9.x86_64                          549/673 
  Cleanup          : rpm-libs-4.16.1.3-22.el9.x86_64                    550/673 
  Cleanup          : grub2-tools-1:2.06-61.el9.rocky.0.1.x86_64         551/673 
  Cleanup          : dracut-057-21.git20230214.el9.x86_64               552/673 
  Running scriptlet: systemd-udev-252-13.el9_2.x86_64                   553/673 
  Cleanup          : systemd-udev-252-13.el9_2.x86_64                   553/673 
  Running scriptlet: systemd-udev-252-13.el9_2.x86_64                   553/673 
  Cleanup          : cryptsetup-libs-2.6.0-2.el9.x86_64                 554/673 
  Cleanup          : kmod-28-7.el9.x86_64                               555/673 
  Cleanup          : procps-ng-3.3.17-11.el9.x86_64                     556/673 
  Cleanup          : tpm2-tss-3.0.3-8.el9.x86_64                        557/673 
  Cleanup          : grub2-tools-minimal-1:2.06-61.el9.rocky.0.1.x86_   558/673 
  Cleanup          : gettext-0.21-7.el9.x86_64                          559/673 
  Cleanup          : gettext-libs-0.21-7.el9.x86_64                     560/673 
  Cleanup          : libstdc++-11.3.1-4.3.el9.x86_64                    561/673 
  Cleanup          : kbd-2.4.0-8.el9.x86_64                             562/673 
  Cleanup          : python3-libsemanage-3.5-1.el9.x86_64               563/673 
  Cleanup          : python3-libselinux-3.5-1.el9.x86_64                564/673 
  Cleanup          : python3-setools-4.4.1-1.el9.x86_64                 565/673 
  Cleanup          : findutils-1:4.8.0-5.el9.x86_64                     566/673 
  Cleanup          : kpartx-0.8.7-20.el9.x86_64                         567/673 
  Cleanup          : device-mapper-9:1.02.187-7.el9.x86_64              568/673 
  Cleanup          : device-mapper-libs-9:1.02.187-7.el9.x86_64         569/673 
  Cleanup          : libkcapi-hmaccalc-1.3.1-3.el9.x86_64               570/673 
  Cleanup          : libsss_nss_idmap-2.8.2-2.el9.x86_64                571/673 
  Cleanup          : lua-libs-5.4.4-3.el9.x86_64                        572/673 
  Cleanup          : sqlite-libs-3.34.1-6.el9_1.x86_64                  573/673 
  Cleanup          : avahi-libs-0.8-12.el9.x86_64                       574/673 
  Cleanup          : libkcapi-1.3.1-3.el9.x86_64                        575/673 
  Cleanup          : libgomp-11.3.1-4.3.el9.x86_64                      576/673 
  Cleanup          : rpm-4.16.1.3-22.el9.x86_64                         577/673 
  Cleanup          : libarchive-3.5.3-4.el9.x86_64                      578/673 
  Cleanup          : libxml2-2.9.13-3.el9_1.x86_64                      579/673 
  Cleanup          : curl-7.76.1-23.el9_2.1.x86_64                      580/673 
  Cleanup          : libcurl-7.76.1-23.el9_2.1.x86_64                   581/673 
  Cleanup          : libssh-0.10.4-8.el9.x86_64                         582/673 
  Cleanup          : krb5-libs-1.20.1-8.el9.x86_64                      583/673 
  Cleanup          : openldap-2.6.2-3.el9.x86_64                        584/673 
  Cleanup          : libevent-2.1.12-6.el9.x86_64                       585/673 
  Cleanup          : libtevent-0.13.0-1.el9.x86_64                      586/673 
  Cleanup          : libsss_certmap-2.8.2-2.el9.x86_64                  587/673 
  Cleanup          : libsss_sudo-2.8.2-2.el9.x86_64                     588/673 
  Cleanup          : elfutils-libelf-0.188-3.el9.x86_64                 589/673 
  Running scriptlet: libwbclient-4.17.5-102.el9.x86_64                  590/673 
  Cleanup          : libwbclient-4.17.5-102.el9.x86_64                  590/673 
warning: file /usr/lib64/samba/wbclient/libwbclient.so.0.15: remove failed: No such file or directory
warning: file /usr/lib64/samba/wbclient/libwbclient.so.0: remove failed: No such file or directory

  Cleanup          : python3-audit-3.0.7-103.el9.x86_64                 591/673 
  Cleanup          : checkpolicy-3.5-1.el9.x86_64                       592/673 
  Cleanup          : libtdb-1.4.7-1.el9.x86_64                          593/673 
  Cleanup          : c-ares-1.17.1-5.el9.x86_64                         594/673 
  Cleanup          : libndp-1.8-4.el9.x86_64                            595/673 
  Cleanup          : libfastjson-0.99.9-3.el9.x86_64                    596/673 
  Cleanup          : libnftnl-1.2.2-1.el9.x86_64                        597/673 
  Cleanup          : kernel-tools-libs-5.14.0-284.11.1.el9_2.x86_64     598/673 
  Running scriptlet: kernel-tools-libs-5.14.0-284.11.1.el9_2.x86_64     598/673 
  Cleanup          : virt-what-1.25-3.el9.x86_64                        599/673 
  Cleanup          : which-2.21-28.el9.x86_64                           600/673 
  Cleanup          : dmidecode-1:3.3-7.el9.x86_64                       601/673 
  Cleanup          : libcom_err-1.46.5-3.el9.x86_64                     602/673 
  Cleanup          : file-5.39-12.el9.x86_64                            603/673 
  Cleanup          : file-libs-5.39-12.el9.x86_64                       604/673 
  Cleanup          : python3-dbus-1.2.18-2.el9.x86_64                   605/673 
  Cleanup          : glib2-2.68.4-6.el9.x86_64                          606/673 
  Cleanup          : gnutls-3.7.6-20.el9_2.x86_64                       607/673 
  Cleanup          : dbus-libs-1:1.12.20-7.el9_1.x86_64                 608/673 
  Cleanup          : nettle-3.8-3.el9_0.x86_64                          609/673 
  Cleanup          : libmnl-1.0.4-15.el9.x86_64                         610/673 
  Cleanup          : libtalloc-2.3.4-1.el9.x86_64                       611/673 
  Cleanup          : libsss_idmap-2.8.2-2.el9.x86_64                    612/673 
  Cleanup          : libjpeg-turbo-2.0.90-6.el9_1.x86_64                613/673 
  Cleanup          : libnghttp2-1.43.0-5.el9.x86_64                     614/673 
  Cleanup          : protobuf-c-1.3.3-12.el9.x86_64                     615/673 
  Cleanup          : libatomic-11.3.1-4.3.el9.x86_64                    616/673 
  Cleanup          : libipa_hbac-2.8.2-2.el9.x86_64                     617/673 
  Cleanup          : samba-common-4.17.5-102.el9.noarch                 618/673 
  Cleanup          : grub2-common-1:2.06-61.el9.rocky.0.1.noarch        619/673 
  Cleanup          : python3-setuptools-53.0.0-12.el9.noarch            620/673 
  Cleanup          : libssh-config-0.10.4-8.el9.noarch                  621/673 
  Cleanup          : kbd-misc-2.4.0-8.el9.noarch                        622/673 
  Cleanup          : bind-license-32:9.16.23-11.el9.noarch              623/673 
  Cleanup          : systemd-252-13.el9_2.x86_64                        624/673 
  Running scriptlet: systemd-252-13.el9_2.x86_64                        624/673 
  Cleanup          : util-linux-2.37.4-11.el9_2.x86_64                  625/673 
  Cleanup          : util-linux-core-2.37.4-11.el9_2.x86_64             626/673 
  Cleanup          : systemd-libs-252-13.el9_2.x86_64                   627/673 
  Cleanup          : pam-1.5.1-14.el9.x86_64                            628/673 
  Cleanup          : libmount-2.37.4-11.el9_2.x86_64                    629/673 
  Cleanup          : libfdisk-2.37.4-11.el9_2.x86_64                    630/673 
  Cleanup          : shadow-utils-2:4.9-6.el9.x86_64                    631/673 
  Cleanup          : openssl-1:3.0.7-6.el9_2.x86_64                     632/673 
  Cleanup          : libsemanage-3.5-1.el9.x86_64                       633/673 
  Cleanup          : kmod-libs-28-7.el9.x86_64                          634/673 
  Cleanup          : libblkid-2.37.4-11.el9_2.x86_64                    635/673 
  Cleanup          : coreutils-8.32-34.el9.x86_64                       636/673 
  Cleanup          : openssl-libs-1:3.0.7-6.el9_2.x86_64                637/673 
  Cleanup          : ca-certificates-2022.2.54-90.2.el9.noarch          638/673 
  Cleanup          : p11-kit-trust-0.24.1-2.el9.x86_64                  639/673 
  Running scriptlet: p11-kit-trust-0.24.1-2.el9.x86_64                  639/673 
  Cleanup          : p11-kit-0.24.1-2.el9.x86_64                        640/673 
  Cleanup          : libselinux-3.5-1.el9.x86_64                        641/673 
  Cleanup          : libcap-2.48-8.el9.x86_64                           642/673 
  Cleanup          : libuuid-2.37.4-11.el9_2.x86_64                     643/673 
  Cleanup          : audit-libs-3.0.7-103.el9.x86_64                    644/673 
  Cleanup          : acl-2.3.1-3.el9.x86_64                             645/673 
  Cleanup          : libsepol-3.5-1.el9.x86_64                          646/673 
  Cleanup          : alternatives-1.20-2.el9.x86_64                     647/673 
  Cleanup          : pcre2-10.40-2.el9.x86_64                           648/673 
  Cleanup          : gmp-1:6.2.0-10.el9.x86_64                          649/673 
  Cleanup          : libeconf-0.4.1-2.el9.x86_64                        650/673 
  Cleanup          : libacl-2.3.1-3.el9.x86_64                          651/673 
  Cleanup          : libffi-3.4.2-7.el9.x86_64                          652/673 
  Cleanup          : libsmartcols-2.37.4-11.el9_2.x86_64                653/673 
  Cleanup          : zlib-1.2.11-39.el9.x86_64                          654/673 
  Cleanup          : python3-3.9.16-1.el9.x86_64                        655/673 
  Cleanup          : systemd-rpm-macros-252-13.el9_2.noarch             656/673 
  Cleanup          : python-unversioned-command-3.9.16-1.el9.noarch     657/673 
  Cleanup          : pcre2-syntax-10.40-2.el9.noarch                    658/673 
  Cleanup          : crypto-policies-20221215-1.git9a18988.el9.noarch   659/673 
  Cleanup          : coreutils-common-8.32-34.el9.x86_64                660/673 
  Cleanup          : dbus-1:1.12.20-7.el9_1.x86_64                      661/673 
  Cleanup          : glibc-langpack-en-2.34-60.el9.x86_64               662/673 
  Cleanup          : ncurses-libs-6.2-8.20210508.el9.x86_64             663/673 
  Cleanup          : bash-5.1.8-6.el9_1.x86_64                          664/673 
  Running scriptlet: bash-5.1.8-6.el9_1.x86_64                          664/673 
  Cleanup          : glibc-common-2.34-60.el9.x86_64                    665/673 
  Cleanup          : glibc-gconv-extra-2.34-60.el9.x86_64               666/673 
  Running scriptlet: glibc-gconv-extra-2.34-60.el9.x86_64               666/673 
  Cleanup          : glibc-2.34-60.el9.x86_64                           667/673 
  Cleanup          : basesystem-11-13.el9.noarch                        668/673 
  Cleanup          : setup-2.13.7-9.el9.noarch                          669/673 
  Cleanup          : rocky-release-9.2-1.4.el9.noarch                   670/673 
  Cleanup          : tzdata-2023c-1.el9.noarch                          671/673 
  Cleanup          : ncurses-base-6.2-8.20210508.el9.noarch             672/673 
  Cleanup          : libgcc-11.3.1-4.3.el9.x86_64                       673/673 
  Running scriptlet: libgcc-11.3.1-4.3.el9.x86_64                       673/673 
  Running scriptlet: ca-certificates-2024.2.69_v8.0.303-91.4.el9_4.no   673/673 
  Running scriptlet: grub2-common-1:2.06-82.el9_4.noarch                673/673 
  Running scriptlet: rpm-4.16.1.3-29.el9.x86_64                         673/673 
  Running scriptlet: authselect-libs-1.2.6-2.el9.x86_64                 673/673 
  Running scriptlet: selinux-policy-targeted-38.1.35-2.el9_4.2.0.2.no   673/673 
  Running scriptlet: sssd-common-2.9.4-6.el9_4.1.x86_64                 673/673 
  Running scriptlet: rocky-logos-90.15-2.el9.x86_64                     673/673 
  Running scriptlet: kernel-modules-core-5.14.0-427.42.1.el9_4.x86_64   673/673 
  Running scriptlet: kernel-core-5.14.0-427.42.1.el9_4.x86_64           673/673 
  Running scriptlet: kernel-modules-5.14.0-427.42.1.el9_4.x86_64        673/673 
  Running scriptlet: crypto-policies-scripts-20240202-1.git283706d.el   673/673 
  Running scriptlet: nss-3.101.0-7.el9_4.x86_64                         673/673 
  Running scriptlet: kmod-kvdo-8.2.3.3-117.el9.x86_64                   673/673 
  Running scriptlet: kexec-tools-2.0.27-8.el9_4.3.x86_64                673/673 
  Running scriptlet: tuned-2.22.1-1.el9.noarch                          673/673 
  Running scriptlet: microcode_ctl-4:20230808-2.20240910.1.el9_4.noar   673/673 
  Running scriptlet: libgcc-11.3.1-4.3.el9.x86_64                       673/673 
  Verifying        : libtraceevent-1.5.3-3.el9.x86_64                     1/673 
  Verifying        : kbd-legacy-2.4.0-9.el9.noarch                        2/673 
  Verifying        : grub2-tools-extra-1:2.06-82.el9_4.x86_64             3/673 
  Verifying        : grub2-tools-efi-1:2.06-82.el9_4.x86_64               4/673 
  Verifying        : jq-1.6-16.el9.x86_64                                 5/673 
  Verifying        : oniguruma-6.9.6-1.el9.5.0.1.x86_64                   6/673 
  Verifying        : kernel-modules-core-5.14.0-427.42.1.el9_4.x86_64     7/673 
  Verifying        : kernel-modules-5.14.0-427.42.1.el9_4.x86_64          8/673 
  Verifying        : kernel-core-5.14.0-427.42.1.el9_4.x86_64             9/673 
  Verifying        : kernel-5.14.0-427.42.1.el9_4.x86_64                 10/673 
  Verifying        : liburing-2.5-1.el9.x86_64                           11/673 
  Verifying        : fuse3-libs-3.10.2-8.el9.x86_64                      12/673 
  Verifying        : fuse3-3.10.2-8.el9.x86_64                           13/673 
  Verifying        : hwdata-0.348-9.13.el9.noarch                        14/673 
  Verifying        : hwdata-0.348-9.7.el9.noarch                         15/673 
  Verifying        : basesystem-11-13.el9.0.1.noarch                     16/673 
  Verifying        : basesystem-11-13.el9.noarch                         17/673 
  Verifying        : python3-idna-2.10-7.el9_4.1.noarch                  18/673 
  Verifying        : python3-idna-2.10-7.el9.noarch                      19/673 
  Verifying        : setup-2.13.7-10.el9.noarch                          20/673 
  Verifying        : setup-2.13.7-9.el9.noarch                           21/673 
  Verifying        : man-pages-6.04-1.el9.noarch                         22/673 
  Verifying        : man-pages-5.10-6.el9.noarch                         23/673 
  Verifying        : selinux-policy-targeted-38.1.35-2.el9_4.2.0.2.no    24/673 
  Verifying        : selinux-policy-targeted-38.1.11-2.el9_2.2.noarch    25/673 
  Verifying        : selinux-policy-38.1.35-2.el9_4.2.0.2.noarch         26/673 
  Verifying        : selinux-policy-38.1.11-2.el9_2.2.noarch             27/673 
  Verifying        : python3-linux-procfs-0.7.3-1.el9.noarch             28/673 
  Verifying        : python3-linux-procfs-0.7.1-1.el9.noarch             29/673 
  Verifying        : libacl-2.3.1-4.el9.x86_64                           30/673 
  Verifying        : libacl-2.3.1-3.el9.x86_64                           31/673 
  Verifying        : acl-2.3.1-4.el9.x86_64                              32/673 
  Verifying        : acl-2.3.1-3.el9.x86_64                              33/673 
  Verifying        : crypto-policies-scripts-20240202-1.git283706d.el    34/673 
  Verifying        : crypto-policies-scripts-20221215-1.git9a18988.el    35/673 
  Verifying        : crypto-policies-20240202-1.git283706d.el9.noarch    36/673 
  Verifying        : crypto-policies-20221215-1.git9a18988.el9.noarch    37/673 
  Verifying        : bash-completion-1:2.11-5.el9.noarch                 38/673 
  Verifying        : bash-completion-1:2.11-4.el9.noarch                 39/673 
  Verifying        : python3-firewall-1.3.4-1.el9.noarch                 40/673 
  Verifying        : python3-firewall-1.2.1-1.el9.noarch                 41/673 
  Verifying        : firewalld-filesystem-1.3.4-1.el9.noarch             42/673 
  Verifying        : firewalld-filesystem-1.2.1-1.el9.noarch             43/673 
  Verifying        : firewalld-1.3.4-1.el9.noarch                        44/673 
  Verifying        : firewalld-1.2.1-1.el9.noarch                        45/673 
  Verifying        : c-ares-1.19.1-2.el9_4.x86_64                        46/673 
  Verifying        : c-ares-1.17.1-5.el9.x86_64                          47/673 
  Verifying        : expat-2.5.0-2.el9_4.1.x86_64                        48/673 
  Verifying        : expat-2.5.0-1.el9.x86_64                            49/673 
  Verifying        : glib2-2.68.4-14.el9_4.1.x86_64                      50/673 
  Verifying        : glib2-2.68.4-6.el9.x86_64                           51/673 
  Verifying        : file-libs-5.39-16.el9.x86_64                        52/673 
  Verifying        : file-libs-5.39-12.el9.x86_64                        53/673 
  Verifying        : file-5.39-16.el9.x86_64                             54/673 
  Verifying        : file-5.39-12.el9.x86_64                             55/673 
  Verifying        : harfbuzz-2.7.4-10.el9.x86_64                        56/673 
  Verifying        : harfbuzz-2.7.4-8.el9.x86_64                         57/673 
  Verifying        : avahi-libs-0.8-20.el9.x86_64                        58/673 
  Verifying        : avahi-libs-0.8-12.el9.x86_64                        59/673 
  Verifying        : binutils-gold-2.35.2-43.el9.x86_64                  60/673 
  Verifying        : binutils-gold-2.35.2-37.el9.x86_64                  61/673 
  Verifying        : binutils-2.35.2-43.el9.x86_64                       62/673 
  Verifying        : binutils-2.35.2-37.el9.x86_64                       63/673 
  Verifying        : audit-libs-3.1.2-2.el9.x86_64                       64/673 
  Verifying        : audit-libs-3.0.7-103.el9.x86_64                     65/673 
  Verifying        : audit-3.1.2-2.el9.x86_64                            66/673 
  Verifying        : audit-3.0.7-103.el9.x86_64                          67/673 
  Verifying        : alternatives-1.24-1.el9.x86_64                      68/673 
  Verifying        : alternatives-1.20-2.el9.x86_64                      69/673 
  Verifying        : lua-libs-5.4.4-4.el9.x86_64                         70/673 
  Verifying        : lua-libs-5.4.4-3.el9.x86_64                         71/673 
  Verifying        : iptables-nft-1.8.10-4.el9_4.x86_64                  72/673 
  Verifying        : iptables-nft-1.8.8-6.el9_1.x86_64                   73/673 
  Verifying        : iptables-libs-1.8.10-4.el9_4.x86_64                 74/673 
  Verifying        : iptables-libs-1.8.8-6.el9_1.x86_64                  75/673 
  Verifying        : lshw-B.02.19.2-10.el9.x86_64                        76/673 
  Verifying        : lshw-B.02.19.2-9.el9.x86_64                         77/673 
  Verifying        : kbd-misc-2.4.0-9.el9.noarch                         78/673 
  Verifying        : kbd-misc-2.4.0-8.el9.noarch                         79/673 
  Verifying        : kbd-2.4.0-9.el9.x86_64                              80/673 
  Verifying        : kbd-2.4.0-8.el9.x86_64                              81/673 
  Verifying        : libarchive-3.5.3-4.el9.0.1.x86_64                   82/673 
  Verifying        : libarchive-3.5.3-4.el9.x86_64                       83/673 
  Verifying        : python3-libxml2-2.9.13-6.el9_4.x86_64               84/673 
  Verifying        : python3-libxml2-2.9.13-3.el9_1.x86_64               85/673 
  Verifying        : libxml2-2.9.13-6.el9_4.x86_64                       86/673 
  Verifying        : libxml2-2.9.13-3.el9_1.x86_64                       87/673 
  Verifying        : policycoreutils-3.6-2.1.el9.x86_64                  88/673 
  Verifying        : policycoreutils-3.5-1.el9.x86_64                    89/673 
  Verifying        : libibverbs-48.0-1.el9.x86_64                        90/673 
  Verifying        : libibverbs-44.0-2.el9.x86_64                        91/673 
  Verifying        : python3-requests-2.25.1-8.el9.noarch                92/673 
  Verifying        : python3-requests-2.25.1-6.el9.noarch                93/673 
  Verifying        : python3-pip-wheel-21.2.3-8.el9.noarch               94/673 
  Verifying        : python3-pip-wheel-21.2.3-6.el9.noarch               95/673 
  Verifying        : rpm-sign-libs-4.16.1.3-29.el9.x86_64                96/673 
  Verifying        : rpm-sign-libs-4.16.1.3-22.el9.x86_64                97/673 
  Verifying        : rpm-plugin-selinux-4.16.1.3-29.el9.x86_64           98/673 
  Verifying        : rpm-plugin-selinux-4.16.1.3-22.el9.x86_64           99/673 
  Verifying        : rpm-plugin-audit-4.16.1.3-29.el9.x86_64            100/673 
  Verifying        : rpm-plugin-audit-4.16.1.3-22.el9.x86_64            101/673 
  Verifying        : rpm-libs-4.16.1.3-29.el9.x86_64                    102/673 
  Verifying        : rpm-libs-4.16.1.3-22.el9.x86_64                    103/673 
  Verifying        : rpm-build-libs-4.16.1.3-29.el9.x86_64              104/673 
  Verifying        : rpm-build-libs-4.16.1.3-22.el9.x86_64              105/673 
  Verifying        : rpm-4.16.1.3-29.el9.x86_64                         106/673 
  Verifying        : rpm-4.16.1.3-22.el9.x86_64                         107/673 
  Verifying        : python3-rpm-4.16.1.3-29.el9.x86_64                 108/673 
  Verifying        : python3-rpm-4.16.1.3-22.el9.x86_64                 109/673 
  Verifying        : openssl-libs-1:3.0.7-28.el9_4.x86_64               110/673 
  Verifying        : openssl-libs-1:3.0.7-6.el9_2.x86_64                111/673 
  Verifying        : openssl-1:3.0.7-28.el9_4.x86_64                    112/673 
  Verifying        : openssl-1:3.0.7-6.el9_2.x86_64                     113/673 
  Verifying        : pcre2-syntax-10.40-5.el9.noarch                    114/673 
  Verifying        : pcre2-syntax-10.40-2.el9.noarch                    115/673 
  Verifying        : pcre2-10.40-5.el9.x86_64                           116/673 
  Verifying        : pcre2-10.40-2.el9.x86_64                           117/673 
  Verifying        : sos-4.7.2-3.el9.noarch                             118/673 
  Verifying        : sos-4.5.1-3.el9_2.noarch                           119/673 
  Verifying        : grubby-8.40-64.el9.x86_64                          120/673 
  Verifying        : grubby-8.40-63.el9.x86_64                          121/673 
  Verifying        : libnftnl-1.2.6-4.el9_4.x86_64                      122/673 
  Verifying        : libnftnl-1.2.2-1.el9.x86_64                        123/673 
  Verifying        : python3-dnf-plugins-core-4.3.0-13.el9.noarch       124/673 
  Verifying        : python3-dnf-plugins-core-4.3.0-5.el9_2.noarch      125/673 
  Verifying        : dnf-plugins-core-4.3.0-13.el9.noarch               126/673 
  Verifying        : dnf-plugins-core-4.3.0-5.el9_2.noarch              127/673 
  Verifying        : dmidecode-1:3.5-3.el9.x86_64                       128/673 
  Verifying        : dmidecode-1:3.3-7.el9.x86_64                       129/673 
  Verifying        : libtirpc-1.3.3-8.el9_4.x86_64                      130/673 
  Verifying        : libtirpc-1.3.3-1.el9.x86_64                        131/673 
  Verifying        : python3-urllib3-1.26.5-5.el9_4.1.noarch            132/673 
  Verifying        : python3-urllib3-1.26.5-3.el9.noarch                133/673 
  Verifying        : nvme-cli-2.6-5.el9.x86_64                          134/673 
  Verifying        : nvme-cli-2.2.1-2.el9.x86_64                        135/673 
  Verifying        : python3-dateutil-1:2.8.1-7.el9.noarch              136/673 
  Verifying        : python3-dateutil-1:2.8.1-6.el9.noarch              137/673 
  Verifying        : python3-setuptools-wheel-53.0.0-12.el9_4.1.noarc   138/673 
  Verifying        : python3-setuptools-wheel-53.0.0-12.el9.noarch      139/673 
  Verifying        : python3-setuptools-53.0.0-12.el9_4.1.noarch        140/673 
  Verifying        : python3-setuptools-53.0.0-12.el9.noarch            141/673 
  Verifying        : ledmon-0.97-1.el9.x86_64                           142/673 
  Verifying        : ledmon-0.96-5.el9.x86_64                           143/673 
  Verifying        : libbpf-2:1.3.0-2.el9.x86_64                        144/673 
  Verifying        : libbpf-2:1.0.0-2.el9.x86_64                        145/673 
  Verifying        : xfsdump-3.1.12-4.el9_3.x86_64                      146/673 
  Verifying        : xfsdump-3.1.10-1.el9.x86_64                        147/673 
  Verifying        : bash-5.1.8-9.el9.x86_64                            148/673 
  Verifying        : bash-5.1.8-6.el9_1.x86_64                          149/673 
  Verifying        : tzdata-2024b-2.el9.noarch                          150/673 
  Verifying        : tzdata-2023c-1.el9.noarch                          151/673 
  Verifying        : initscripts-service-10.11.6-1.el9.noarch           152/673 
  Verifying        : initscripts-service-10.11.5-1.el9.noarch           153/673 
  Verifying        : libfido2-1.13.0-2.el9.x86_64                       154/673 
  Verifying        : libfido2-1.6.0-7.el9.x86_64                        155/673 
  Verifying        : libndp-1.8-6.el9_4.x86_64                          156/673 
  Verifying        : libndp-1.8-4.el9.x86_64                            157/673 
  Verifying        : kmod-kvdo-8.2.3.3-117.el9.x86_64                   158/673 
  Verifying        : kmod-kvdo-8.2.1.6-75.el9_2.x86_64                  159/673 
  Verifying        : irqbalance-2:1.9.2-3.el9.x86_64                    160/673 
  Verifying        : irqbalance-2:1.9.0-3.el9.x86_64                    161/673 
  Verifying        : cryptsetup-libs-2.6.0-3.el9.x86_64                 162/673 
  Verifying        : cryptsetup-libs-2.6.0-2.el9.x86_64                 163/673 
  Verifying        : cryptsetup-2.6.0-3.el9.x86_64                      164/673 
  Verifying        : cryptsetup-2.6.0-2.el9.x86_64                      165/673 
  Verifying        : shadow-utils-2:4.9-8.el9.x86_64                    166/673 
  Verifying        : shadow-utils-2:4.9-6.el9.x86_64                    167/673 
  Verifying        : device-mapper-persistent-data-1.0.9-3.el9_4.x86_   168/673 
  Verifying        : device-mapper-persistent-data-0.9.0-13.el9.x86_6   169/673 
  Verifying        : vdo-8.2.2.2-1.el9.x86_64                           170/673 
  Verifying        : vdo-8.2.0.2-1.el9.x86_64                           171/673 
  Verifying        : kmod-libs-28-9.el9.x86_64                          172/673 
  Verifying        : kmod-libs-28-7.el9.x86_64                          173/673 
  Verifying        : kmod-28-9.el9.x86_64                               174/673 
  Verifying        : kmod-28-7.el9.x86_64                               175/673 
  Verifying        : virt-what-1.25-5.el9.x86_64                        176/673 
  Verifying        : virt-what-1.25-3.el9.x86_64                        177/673 
  Verifying        : iproute-tc-6.2.0-6.el9_4.x86_64                    178/673 
  Verifying        : iproute-tc-6.1.0-1.el9.x86_64                      179/673 
  Verifying        : iproute-6.2.0-6.el9_4.x86_64                       180/673 
  Verifying        : iproute-6.1.0-1.el9.x86_64                         181/673 
  Verifying        : libmnl-1.0.4-16.el9_4.x86_64                       182/673 
  Verifying        : libmnl-1.0.4-15.el9.x86_64                         183/673 
  Verifying        : squashfs-tools-4.4-10.git1.el9.x86_64              184/673 
  Verifying        : squashfs-tools-4.4-8.git1.el9.x86_64               185/673 
  Verifying        : procps-ng-3.3.17-14.el9.x86_64                     186/673 
  Verifying        : procps-ng-3.3.17-11.el9.x86_64                     187/673 
  Verifying        : mdadm-4.2-14.el9_4.x86_64                          188/673 
  Verifying        : mdadm-4.2-8.el9.x86_64                             189/673 
  Verifying        : realmd-0.17.1-2.el9.x86_64                         190/673 
  Verifying        : realmd-0.17.1-1.el9.x86_64                         191/673 
  Verifying        : ethtool-2:6.2-1.el9.x86_64                         192/673 
  Verifying        : ethtool-2:5.16-1.el9.x86_64                        193/673 
  Verifying        : libgusb-0.3.8-2.el9.x86_64                         194/673 
  Verifying        : libgusb-0.3.8-1.el9.x86_64                         195/673 
  Verifying        : libnghttp2-1.43.0-5.el9_4.3.x86_64                 196/673 
  Verifying        : libnghttp2-1.43.0-5.el9.x86_64                     197/673 
  Verifying        : less-590-4.el9_4.x86_64                            198/673 
  Verifying        : less-590-1.el9_0.x86_64                            199/673 
  Verifying        : sqlite-libs-3.34.1-7.el9_3.x86_64                  200/673 
  Verifying        : sqlite-libs-3.34.1-6.el9_1.x86_64                  201/673 
  Verifying        : linux-firmware-whence-20240905-143.3.el9_4.noarc   202/673 
  Verifying        : linux-firmware-whence-20230310-134.el9_2.noarch    203/673 
  Verifying        : linux-firmware-20240905-143.3.el9_4.noarch         204/673 
  Verifying        : linux-firmware-20230310-134.el9_2.noarch           205/673 
  Verifying        : iwl7260-firmware-1:25.30.13.0-143.3.el9_4.noarch   206/673 
  Verifying        : iwl7260-firmware-1:25.30.13.0-134.el9_2.noarch     207/673 
  Verifying        : iwl6050-firmware-41.28.5.1-143.3.el9_4.noarch      208/673 
  Verifying        : iwl6050-firmware-41.28.5.1-134.el9_2.noarch        209/673 
  Verifying        : iwl6000g2a-firmware-18.168.6.1-143.3.el9_4.noarc   210/673 
  Verifying        : iwl6000g2a-firmware-18.168.6.1-134.el9_2.noarch    211/673 
  Verifying        : iwl5150-firmware-8.24.2.2-143.3.el9_4.noarch       212/673 
  Verifying        : iwl5150-firmware-8.24.2.2-134.el9_2.noarch         213/673 
  Verifying        : iwl5000-firmware-8.83.5.1_1-143.3.el9_4.noarch     214/673 
  Verifying        : iwl5000-firmware-8.83.5.1_1-134.el9_2.noarch       215/673 
  Verifying        : iwl3160-firmware-1:25.30.13.0-143.3.el9_4.noarch   216/673 
  Verifying        : iwl3160-firmware-1:25.30.13.0-134.el9_2.noarch     217/673 
  Verifying        : iwl2030-firmware-18.168.6.1-143.3.el9_4.noarch     218/673 
  Verifying        : iwl2030-firmware-18.168.6.1-134.el9_2.noarch       219/673 
  Verifying        : iwl2000-firmware-18.168.6.1-143.3.el9_4.noarch     220/673 
  Verifying        : iwl2000-firmware-18.168.6.1-134.el9_2.noarch       221/673 
  Verifying        : iwl135-firmware-18.168.6.1-143.3.el9_4.noarch      222/673 
  Verifying        : iwl135-firmware-18.168.6.1-134.el9_2.noarch        223/673 
  Verifying        : iwl105-firmware-18.168.6.1-143.3.el9_4.noarch      224/673 
  Verifying        : iwl105-firmware-18.168.6.1-134.el9_2.noarch        225/673 
  Verifying        : iwl1000-firmware-1:39.31.5.1-143.3.el9_4.noarch    226/673 
  Verifying        : iwl1000-firmware-1:39.31.5.1-134.el9_2.noarch      227/673 
  Verifying        : iwl100-firmware-39.31.5.1-143.3.el9_4.noarch       228/673 
  Verifying        : iwl100-firmware-39.31.5.1-134.el9_2.noarch         229/673 
  Verifying        : usbutils-015-1.el9.x86_64                          230/673 
  Verifying        : usbutils-013-4.el9.x86_64                          231/673 
  Verifying        : findutils-1:4.8.0-6.el9.x86_64                     232/673 
  Verifying        : findutils-1:4.8.0-5.el9.x86_64                     233/673 
  Verifying        : which-2.21-29.el9.x86_64                           234/673 
  Verifying        : which-2.21-28.el9.x86_64                           235/673 
  Verifying        : kexec-tools-2.0.27-8.el9_4.3.x86_64                236/673 
  Verifying        : kexec-tools-2.0.25-13.el9_2.x86_64                 237/673 
  Verifying        : microcode_ctl-4:20230808-2.20240910.1.el9_4.noar   238/673 
  Verifying        : microcode_ctl-4:20220809-2.el9.noarch              239/673 
  Verifying        : mcelog-3:195-0.el9.x86_64                          240/673 
  Verifying        : mcelog-3:189-0.el9.x86_64                          241/673 
  Verifying        : coreutils-common-8.32-35.el9.x86_64                242/673 
  Verifying        : coreutils-common-8.32-34.el9.x86_64                243/673 
  Verifying        : coreutils-8.32-35.el9.x86_64                       244/673 
  Verifying        : coreutils-8.32-34.el9.x86_64                       245/673 
  Verifying        : python3-libs-3.9.18-3.el9_4.6.x86_64               246/673 
  Verifying        : python3-libs-3.9.16-1.el9.x86_64                   247/673 
  Verifying        : python3-3.9.18-3.el9_4.6.x86_64                    248/673 
  Verifying        : python3-3.9.16-1.el9.x86_64                        249/673 
  Verifying        : gnutls-3.8.3-4.el9_4.x86_64                        250/673 
  Verifying        : gnutls-3.7.6-20.el9_2.x86_64                       251/673 
  Verifying        : samba-common-libs-4.19.4-105.el9_4.x86_64          252/673 
  Verifying        : samba-common-libs-4.17.5-102.el9.x86_64            253/673 
  Verifying        : samba-common-4.19.4-105.el9_4.noarch               254/673 
  Verifying        : samba-common-4.17.5-102.el9.noarch                 255/673 
  Verifying        : samba-client-libs-4.19.4-105.el9_4.x86_64          256/673 
  Verifying        : samba-client-libs-4.17.5-102.el9.x86_64            257/673 
  Verifying        : libwbclient-4.19.4-105.el9_4.x86_64                258/673 
  Verifying        : libwbclient-4.17.5-102.el9.x86_64                  259/673 
  Verifying        : libsmbclient-4.19.4-105.el9_4.x86_64               260/673 
  Verifying        : libsmbclient-4.17.5-102.el9.x86_64                 261/673 
  Verifying        : iputils-20210202-9.el9.x86_64                      262/673 
  Verifying        : iputils-20210202-8.el9_1.1.x86_64                  263/673 
  Verifying        : tuned-2.22.1-1.el9.noarch                          264/673 
  Verifying        : tuned-2.20.0-1.el9.noarch                          265/673 
  Verifying        : libffi-3.4.2-8.el9.x86_64                          266/673 
  Verifying        : libffi-3.4.2-7.el9.x86_64                          267/673 
  Verifying        : gmp-1:6.2.0-13.el9.x86_64                          268/673 
  Verifying        : gmp-1:6.2.0-10.el9.x86_64                          269/673 
  Verifying        : gettext-libs-0.21-8.el9.x86_64                     270/673 
  Verifying        : gettext-libs-0.21-7.el9.x86_64                     271/673 
  Verifying        : gettext-0.21-8.el9.x86_64                          272/673 
  Verifying        : gettext-0.21-7.el9.x86_64                          273/673 
  Verifying        : libedit-3.1-38.20210216cvs.el9.x86_64              274/673 
  Verifying        : libedit-3.1-37.20210216cvs.el9.x86_64              275/673 
  Verifying        : libcap-2.48-9.el9_2.x86_64                         276/673 
  Verifying        : libcap-2.48-8.el9.x86_64                           277/673 
  Verifying        : libsolv-0.7.24-2.el9.x86_64                        278/673 
  Verifying        : libsolv-0.7.22-4.el9.x86_64                        279/673 
  Verifying        : libsepol-3.6-1.el9.x86_64                          280/673 
  Verifying        : libsepol-3.5-1.el9.x86_64                          281/673 
  Verifying        : gnupg2-2.3.3-4.el9.x86_64                          282/673 
  Verifying        : gnupg2-2.3.3-2.el9_0.x86_64                        283/673 
  Verifying        : ca-certificates-2024.2.69_v8.0.303-91.4.el9_4.no   284/673 
  Verifying        : ca-certificates-2022.2.54-90.2.el9.noarch          285/673 
  Verifying        : libss-1.46.5-5.el9.x86_64                          286/673 
  Verifying        : libss-1.46.5-3.el9.x86_64                          287/673 
  Verifying        : libcom_err-1.46.5-5.el9.x86_64                     288/673 
  Verifying        : libcom_err-1.46.5-3.el9.x86_64                     289/673 
  Verifying        : e2fsprogs-libs-1.46.5-5.el9.x86_64                 290/673 
  Verifying        : e2fsprogs-libs-1.46.5-3.el9.x86_64                 291/673 
  Verifying        : e2fsprogs-1.46.5-5.el9.x86_64                      292/673 
  Verifying        : e2fsprogs-1.46.5-3.el9.x86_64                      293/673 
  Verifying        : cockpit-ws-311.2-1.el9_4.x86_64                    294/673 
  Verifying        : cockpit-ws-286.1-1.el9.x86_64                      295/673 
  Verifying        : cockpit-bridge-311.2-1.el9_4.x86_64                296/673 
  Verifying        : cockpit-bridge-286.1-1.el9.x86_64                  297/673 
  Verifying        : cockpit-311.2-1.el9_4.x86_64                       298/673 
  Verifying        : cockpit-286.1-1.el9.x86_64                         299/673 
  Verifying        : cockpit-system-311.2-1.el9_4.noarch                300/673 
  Verifying        : cockpit-system-286.1-1.el9.noarch                  301/673 
  Verifying        : libnl3-cli-3.9.0-1.el9.x86_64                      302/673 
  Verifying        : libnl3-cli-3.7.0-1.el9.x86_64                      303/673 
  Verifying        : libnl3-3.9.0-1.el9.x86_64                          304/673 
  Verifying        : libnl3-3.7.0-1.el9.x86_64                          305/673 
  Verifying        : libsemanage-3.6-1.el9.x86_64                       306/673 
  Verifying        : libsemanage-3.5-1.el9.x86_64                       307/673 
  Verifying        : libselinux-utils-3.6-1.el9.x86_64                  308/673 
  Verifying        : libselinux-utils-3.5-1.el9.x86_64                  309/673 
  Verifying        : libselinux-3.6-1.el9.x86_64                        310/673 
  Verifying        : libselinux-3.5-1.el9.x86_64                        311/673 
  Verifying        : authselect-libs-1.2.6-2.el9.x86_64                 312/673 
  Verifying        : authselect-libs-1.2.6-1.el9.x86_64                 313/673 
  Verifying        : authselect-1.2.6-2.el9.x86_64                      314/673 
  Verifying        : authselect-1.2.6-1.el9.x86_64                      315/673 
  Verifying        : dracut-squash-057-53.git20240104.el9.x86_64        316/673 
  Verifying        : dracut-squash-057-21.git20230214.el9.x86_64        317/673 
  Verifying        : dracut-network-057-53.git20240104.el9.x86_64       318/673 
  Verifying        : dracut-network-057-21.git20230214.el9.x86_64       319/673 
  Verifying        : dracut-config-rescue-057-53.git20240104.el9.x86_   320/673 
  Verifying        : dracut-config-rescue-057-21.git20230214.el9.x86_   321/673 
  Verifying        : dracut-057-53.git20240104.el9.x86_64               322/673 
  Verifying        : dracut-057-21.git20230214.el9.x86_64               323/673 
  Verifying        : dbus-libs-1:1.12.20-8.el9.x86_64                   324/673 
  Verifying        : dbus-libs-1:1.12.20-7.el9_1.x86_64                 325/673 
  Verifying        : dbus-1:1.12.20-8.el9.x86_64                        326/673 
  Verifying        : dbus-1:1.12.20-7.el9_1.x86_64                      327/673 
  Verifying        : dbus-common-1:1.12.20-8.el9.noarch                 328/673 
  Verifying        : dbus-common-1:1.12.20-7.el9_1.noarch               329/673 
  Verifying        : chrony-4.5-1.el9.x86_64                            330/673 
  Verifying        : chrony-4.3-1.el9.x86_64                            331/673 
  Verifying        : libevent-2.1.12-8.el9_4.x86_64                     332/673 
  Verifying        : libevent-2.1.12-6.el9.x86_64                       333/673 
  Verifying        : numactl-libs-2.0.16-3.el9.x86_64                   334/673 
  Verifying        : numactl-libs-2.0.14-9.el9.x86_64                   335/673 
  Verifying        : nettle-3.9.1-1.el9.x86_64                          336/673 
  Verifying        : nettle-3.8-3.el9_0.x86_64                          337/673 
  Verifying        : tpm2-tss-3.2.2-2.el9.x86_64                        338/673 
  Verifying        : tpm2-tss-3.0.3-8.el9.x86_64                        339/673 
  Verifying        : openssh-server-8.7p1-38.el9_4.4.x86_64             340/673 
  Verifying        : openssh-server-8.7p1-29.el9_2.x86_64               341/673 
  Verifying        : openssh-clients-8.7p1-38.el9_4.4.x86_64            342/673 
  Verifying        : openssh-clients-8.7p1-29.el9_2.x86_64              343/673 
  Verifying        : openssh-8.7p1-38.el9_4.4.x86_64                    344/673 
  Verifying        : openssh-8.7p1-29.el9_2.x86_64                      345/673 
  Verifying        : python3-nftables-1:1.0.9-1.el9.x86_64              346/673 
  Verifying        : python3-nftables-1:1.0.4-10.el9_1.x86_64           347/673 
  Verifying        : nftables-1:1.0.9-1.el9.x86_64                      348/673 
  Verifying        : nftables-1:1.0.4-10.el9_1.x86_64                   349/673 
  Verifying        : librepo-1.14.5-2.el9.x86_64                        350/673 
  Verifying        : librepo-1.14.5-1.el9.x86_64                        351/673 
  Verifying        : cronie-anacron-1.5.7-11.el9.x86_64                 352/673 
  Verifying        : cronie-anacron-1.5.7-8.el9.x86_64                  353/673 
  Verifying        : cronie-1.5.7-11.el9.x86_64                         354/673 
  Verifying        : cronie-1.5.7-8.el9.x86_64                          355/673 
  Verifying        : python3-setools-4.4.4-1.el9.x86_64                 356/673 
  Verifying        : python3-setools-4.4.1-1.el9.x86_64                 357/673 
  Verifying        : libtdb-1.4.9-1.el9.x86_64                          358/673 
  Verifying        : libtdb-1.4.7-1.el9.x86_64                          359/673 
  Verifying        : smartmontools-1:7.2-9.el9.x86_64                   360/673 
  Verifying        : smartmontools-1:7.2-6.el9.x86_64                   361/673 
  Verifying        : sssd-proxy-2.9.4-6.el9_4.1.x86_64                  362/673 
  Verifying        : sssd-proxy-2.8.2-2.el9.x86_64                      363/673 
  Verifying        : sssd-ldap-2.9.4-6.el9_4.1.x86_64                   364/673 
  Verifying        : sssd-ldap-2.8.2-2.el9.x86_64                       365/673 
  Verifying        : sssd-krb5-common-2.9.4-6.el9_4.1.x86_64            366/673 
  Verifying        : sssd-krb5-common-2.8.2-2.el9.x86_64                367/673 
  Verifying        : sssd-krb5-2.9.4-6.el9_4.1.x86_64                   368/673 
  Verifying        : sssd-krb5-2.8.2-2.el9.x86_64                       369/673 
  Verifying        : sssd-kcm-2.9.4-6.el9_4.1.x86_64                    370/673 
  Verifying        : sssd-kcm-2.8.2-2.el9.x86_64                        371/673 
  Verifying        : sssd-ipa-2.9.4-6.el9_4.1.x86_64                    372/673 
  Verifying        : sssd-ipa-2.8.2-2.el9.x86_64                        373/673 
  Verifying        : sssd-common-pac-2.9.4-6.el9_4.1.x86_64             374/673 
  Verifying        : sssd-common-pac-2.8.2-2.el9.x86_64                 375/673 
  Verifying        : sssd-common-2.9.4-6.el9_4.1.x86_64                 376/673 
  Verifying        : sssd-common-2.8.2-2.el9.x86_64                     377/673 
  Verifying        : sssd-client-2.9.4-6.el9_4.1.x86_64                 378/673 
  Verifying        : sssd-client-2.8.2-2.el9.x86_64                     379/673 
  Verifying        : sssd-ad-2.9.4-6.el9_4.1.x86_64                     380/673 
  Verifying        : sssd-ad-2.8.2-2.el9.x86_64                         381/673 
  Verifying        : sssd-2.9.4-6.el9_4.1.x86_64                        382/673 
  Verifying        : sssd-2.8.2-2.el9.x86_64                            383/673 
  Verifying        : libsss_sudo-2.9.4-6.el9_4.1.x86_64                 384/673 
  Verifying        : libsss_sudo-2.8.2-2.el9.x86_64                     385/673 
  Verifying        : libsss_nss_idmap-2.9.4-6.el9_4.1.x86_64            386/673 
  Verifying        : libsss_nss_idmap-2.8.2-2.el9.x86_64                387/673 
  Verifying        : libsss_idmap-2.9.4-6.el9_4.1.x86_64                388/673 
  Verifying        : libsss_idmap-2.8.2-2.el9.x86_64                    389/673 
  Verifying        : libsss_certmap-2.9.4-6.el9_4.1.x86_64              390/673 
  Verifying        : libsss_certmap-2.8.2-2.el9.x86_64                  391/673 
  Verifying        : libipa_hbac-2.9.4-6.el9_4.1.x86_64                 392/673 
  Verifying        : libipa_hbac-2.8.2-2.el9.x86_64                     393/673 
  Verifying        : ncurses-base-6.2-10.20210508.el9.noarch            394/673 
  Verifying        : ncurses-base-6.2-8.20210508.el9.noarch             395/673 
  Verifying        : p11-kit-trust-0.25.3-2.el9.x86_64                  396/673 
  Verifying        : p11-kit-trust-0.24.1-2.el9.x86_64                  397/673 
  Verifying        : p11-kit-0.25.3-2.el9.x86_64                        398/673 
  Verifying        : p11-kit-0.24.1-2.el9.x86_64                        399/673 
  Verifying        : mtr-2:0.94-6.el9_4.x86_64                          400/673 
  Verifying        : mtr-2:0.94-4.el9.x86_64                            401/673 
  Verifying        : systemd-udev-252-32.el9_4.7.x86_64                 402/673 
  Verifying        : systemd-udev-252-13.el9_2.x86_64                   403/673 
  Verifying        : systemd-rpm-macros-252-32.el9_4.7.noarch           404/673 
  Verifying        : systemd-rpm-macros-252-13.el9_2.noarch             405/673 
  Verifying        : systemd-pam-252-32.el9_4.7.x86_64                  406/673 
  Verifying        : systemd-pam-252-13.el9_2.x86_64                    407/673 
  Verifying        : systemd-libs-252-32.el9_4.7.x86_64                 408/673 
  Verifying        : systemd-libs-252-13.el9_2.x86_64                   409/673 
  Verifying        : systemd-252-32.el9_4.7.x86_64                      410/673 
  Verifying        : systemd-252-13.el9_2.x86_64                        411/673 
  Verifying        : elfutils-libs-0.190-2.el9.x86_64                   412/673 
  Verifying        : elfutils-libs-0.188-3.el9.x86_64                   413/673 
  Verifying        : elfutils-libelf-0.190-2.el9.x86_64                 414/673 
  Verifying        : elfutils-libelf-0.188-3.el9.x86_64                 415/673 
  Verifying        : elfutils-debuginfod-client-0.190-2.el9.x86_64      416/673 
  Verifying        : elfutils-debuginfod-client-0.188-3.el9.x86_64      417/673 
  Verifying        : elfutils-default-yama-scope-0.190-2.el9.noarch     418/673 
  Verifying        : elfutils-default-yama-scope-0.188-3.el9.noarch     419/673 
  Verifying        : libkcapi-hmaccalc-1.4.0-2.el9.x86_64               420/673 
  Verifying        : libkcapi-hmaccalc-1.3.1-3.el9.x86_64               421/673 
  Verifying        : libkcapi-1.4.0-2.el9.x86_64                        422/673 
  Verifying        : libkcapi-1.3.1-3.el9.x86_64                        423/673 
  Verifying        : libcurl-7.76.1-29.el9_4.1.x86_64                   424/673 
  Verifying        : libcurl-7.76.1-23.el9_2.1.x86_64                   425/673 
  Verifying        : curl-7.76.1-29.el9_4.1.x86_64                      426/673 
  Verifying        : curl-7.76.1-23.el9_2.1.x86_64                      427/673 
  Verifying        : libtevent-0.16.0-1.el9.x86_64                      428/673 
  Verifying        : libtevent-0.13.0-1.el9.x86_64                      429/673 
  Verifying        : libtalloc-2.4.1-1.el9.x86_64                       430/673 
  Verifying        : libtalloc-2.3.4-1.el9.x86_64                       431/673 
  Verifying        : libldb-2.8.0-2.el9_4.x86_64                        432/673 
  Verifying        : libldb-2.6.1-1.el9.x86_64                          433/673 
  Verifying        : openldap-2.6.6-3.el9.x86_64                        434/673 
  Verifying        : openldap-2.6.2-3.el9.x86_64                        435/673 
  Verifying        : libuser-0.63-13.el9.x86_64                         436/673 
  Verifying        : libuser-0.63-12.el9.x86_64                         437/673 
  Verifying        : libssh-config-0.10.4-13.el9.noarch                 438/673 
  Verifying        : libssh-config-0.10.4-8.el9.noarch                  439/673 
  Verifying        : libssh-0.10.4-13.el9.x86_64                        440/673 
  Verifying        : libssh-0.10.4-8.el9.x86_64                         441/673 
  Verifying        : sudo-1.9.5p2-10.el9_3.x86_64                       442/673 
  Verifying        : sudo-1.9.5p2-9.el9.x86_64                          443/673 
  Verifying        : python3-dbus-1.2.18-2.el9.0.1.x86_64               444/673 
  Verifying        : python3-dbus-1.2.18-2.el9.x86_64                   445/673 
  Verifying        : initscripts-rename-device-10.11.6-1.el9.x86_64     446/673 
  Verifying        : initscripts-rename-device-10.11.5-1.el9.x86_64     447/673 
  Verifying        : protobuf-c-1.3.3-13.el9.x86_64                     448/673 
  Verifying        : protobuf-c-1.3.3-12.el9.x86_64                     449/673 
  Verifying        : ncurses-libs-6.2-10.20210508.el9.x86_64            450/673 
  Verifying        : ncurses-libs-6.2-8.20210508.el9.x86_64             451/673 
  Verifying        : ncurses-6.2-10.20210508.el9.x86_64                 452/673 
  Verifying        : ncurses-6.2-8.20210508.el9.x86_64                  453/673 
  Verifying        : krb5-libs-1.21.1-2.el9_4.x86_64                    454/673 
  Verifying        : krb5-libs-1.20.1-8.el9.x86_64                      455/673 
  Verifying        : kpartx-0.8.7-27.el9.x86_64                         456/673 
  Verifying        : kpartx-0.8.7-20.el9.x86_64                         457/673 
  Verifying        : pam-1.5.1-19.el9.x86_64                            458/673 
  Verifying        : pam-1.5.1-14.el9.x86_64                            459/673 
  Verifying        : tar-2:1.34-6.el9_4.1.x86_64                        460/673 
  Verifying        : tar-2:1.34-6.el9_1.x86_64                          461/673 
  Verifying        : fuse-common-3.10.2-8.el9.x86_64                    462/673 
  Verifying        : fuse-common-3.10.2-5.el9.0.1.x86_64                463/673 
  Verifying        : zlib-1.2.11-40.el9.x86_64                          464/673 
  Verifying        : zlib-1.2.11-39.el9.x86_64                          465/673 
  Verifying        : libstdc++-11.4.1-3.el9.x86_64                      466/673 
  Verifying        : libstdc++-11.3.1-4.3.el9.x86_64                    467/673 
  Verifying        : libgomp-11.4.1-3.el9.x86_64                        468/673 
  Verifying        : libgomp-11.3.1-4.3.el9.x86_64                      469/673 
  Verifying        : libgcc-11.4.1-3.el9.x86_64                         470/673 
  Verifying        : libgcc-11.3.1-4.3.el9.x86_64                       471/673 
  Verifying        : libatomic-11.4.1-3.el9.x86_64                      472/673 
  Verifying        : libatomic-11.3.1-4.3.el9.x86_64                    473/673 
  Verifying        : glibc-langpack-en-2.34-100.el9_4.4.x86_64          474/673 
  Verifying        : glibc-langpack-en-2.34-60.el9.x86_64               475/673 
  Verifying        : glibc-gconv-extra-2.34-100.el9_4.4.x86_64          476/673 
  Verifying        : glibc-gconv-extra-2.34-60.el9.x86_64               477/673 
  Verifying        : glibc-common-2.34-100.el9_4.4.x86_64               478/673 
  Verifying        : glibc-common-2.34-60.el9.x86_64                    479/673 
  Verifying        : glibc-2.34-100.el9_4.4.x86_64                      480/673 
  Verifying        : glibc-2.34-60.el9.x86_64                           481/673 
  Verifying        : util-linux-user-2.37.4-18.el9.x86_64               482/673 
  Verifying        : util-linux-user-2.37.4-11.el9_2.x86_64             483/673 
  Verifying        : util-linux-core-2.37.4-18.el9.x86_64               484/673 
  Verifying        : util-linux-core-2.37.4-11.el9_2.x86_64             485/673 
  Verifying        : util-linux-2.37.4-18.el9.x86_64                    486/673 
  Verifying        : util-linux-2.37.4-11.el9_2.x86_64                  487/673 
  Verifying        : libuuid-2.37.4-18.el9.x86_64                       488/673 
  Verifying        : libuuid-2.37.4-11.el9_2.x86_64                     489/673 
  Verifying        : libsmartcols-2.37.4-18.el9.x86_64                  490/673 
  Verifying        : libsmartcols-2.37.4-11.el9_2.x86_64                491/673 
  Verifying        : libmount-2.37.4-18.el9.x86_64                      492/673 
  Verifying        : libmount-2.37.4-11.el9_2.x86_64                    493/673 
  Verifying        : libfdisk-2.37.4-18.el9.x86_64                      494/673 
  Verifying        : libfdisk-2.37.4-11.el9_2.x86_64                    495/673 
  Verifying        : libblkid-2.37.4-18.el9.x86_64                      496/673 
  Verifying        : libblkid-2.37.4-11.el9_2.x86_64                    497/673 
  Verifying        : xfsprogs-6.3.0-1.el9.x86_64                        498/673 
  Verifying        : xfsprogs-5.14.2-1.el9.x86_64                       499/673 
  Verifying        : NetworkManager-tui-1:1.46.0-19.el9_4.x86_64        500/673 
  Verifying        : NetworkManager-tui-1:1.42.2-1.el9.x86_64           501/673 
  Verifying        : NetworkManager-team-1:1.46.0-19.el9_4.x86_64       502/673 
  Verifying        : NetworkManager-team-1:1.42.2-1.el9.x86_64          503/673 
  Verifying        : NetworkManager-libnm-1:1.46.0-19.el9_4.x86_64      504/673 
  Verifying        : NetworkManager-libnm-1:1.42.2-1.el9.x86_64         505/673 
  Verifying        : NetworkManager-1:1.46.0-19.el9_4.x86_64            506/673 
  Verifying        : NetworkManager-1:1.42.2-1.el9.x86_64               507/673 
  Verifying        : python3-libdnf-0.69.0-8.el9_4.1.x86_64             508/673 
  Verifying        : python3-libdnf-0.69.0-3.el9_2.x86_64               509/673 
  Verifying        : python3-hawkey-0.69.0-8.el9_4.1.x86_64             510/673 
  Verifying        : python3-hawkey-0.69.0-3.el9_2.x86_64               511/673 
  Verifying        : libdnf-0.69.0-8.el9_4.1.x86_64                     512/673 
  Verifying        : libdnf-0.69.0-3.el9_2.x86_64                       513/673 
  Verifying        : libeconf-0.4.1-3.el9_2.x86_64                      514/673 
  Verifying        : libeconf-0.4.1-2.el9.x86_64                        515/673 
  Verifying        : lvm2-libs-9:2.03.23-2.el9.x86_64                   516/673 
  Verifying        : lvm2-libs-9:2.03.17-7.el9.x86_64                   517/673 
  Verifying        : lvm2-9:2.03.23-2.el9.x86_64                        518/673 
  Verifying        : lvm2-9:2.03.17-7.el9.x86_64                        519/673 
  Verifying        : device-mapper-libs-9:1.02.197-2.el9.x86_64         520/673 
  Verifying        : device-mapper-libs-9:1.02.187-7.el9.x86_64         521/673 
  Verifying        : device-mapper-event-libs-9:1.02.197-2.el9.x86_64   522/673 
  Verifying        : device-mapper-event-libs-9:1.02.187-7.el9.x86_64   523/673 
  Verifying        : device-mapper-event-9:1.02.197-2.el9.x86_64        524/673 
  Verifying        : device-mapper-event-9:1.02.187-7.el9.x86_64        525/673 
  Verifying        : device-mapper-9:1.02.197-2.el9.x86_64              526/673 
  Verifying        : device-mapper-9:1.02.187-7.el9.x86_64              527/673 
  Verifying        : libnvme-1.6-1.el9.x86_64                           528/673 
  Verifying        : libnvme-1.2-2.el9.x86_64                           529/673 
  Verifying        : rocky-repos-9.4-1.7.el9.noarch                     530/673 
  Verifying        : rocky-repos-9.2-1.4.el9.noarch                     531/673 
  Verifying        : rocky-release-9.4-1.7.el9.noarch                   532/673 
  Verifying        : rocky-release-9.2-1.4.el9.noarch                   533/673 
  Verifying        : rocky-gpg-keys-9.4-1.7.el9.noarch                  534/673 
  Verifying        : rocky-gpg-keys-9.2-1.4.el9.noarch                  535/673 
  Verifying        : grub2-tools-minimal-1:2.06-82.el9_4.x86_64         536/673 
  Verifying        : grub2-tools-minimal-1:2.06-61.el9.rocky.0.1.x86_   537/673 
  Verifying        : grub2-tools-1:2.06-82.el9_4.x86_64                 538/673 
  Verifying        : grub2-tools-1:2.06-61.el9.rocky.0.1.x86_64         539/673 
  Verifying        : grub2-pc-1:2.06-82.el9_4.x86_64                    540/673 
  Verifying        : grub2-pc-1:2.06-61.el9.rocky.0.1.x86_64            541/673 
  Verifying        : grub2-pc-modules-1:2.06-82.el9_4.noarch            542/673 
  Verifying        : grub2-pc-modules-1:2.06-61.el9.rocky.0.1.noarch    543/673 
  Verifying        : grub2-common-1:2.06-82.el9_4.noarch                544/673 
  Verifying        : grub2-common-1:2.06-61.el9.rocky.0.1.noarch        545/673 
  Verifying        : python3-perf-5.14.0-427.42.1.el9_4.x86_64          546/673 
  Verifying        : python3-perf-5.14.0-284.11.1.el9_2.x86_64          547/673 
  Verifying        : kernel-tools-libs-5.14.0-427.42.1.el9_4.x86_64     548/673 
  Verifying        : kernel-tools-libs-5.14.0-284.11.1.el9_2.x86_64     549/673 
  Verifying        : kernel-tools-5.14.0-427.42.1.el9_4.x86_64          550/673 
  Verifying        : kernel-tools-5.14.0-284.11.1.el9_2.x86_64          551/673 
  Verifying        : bpftool-7.3.0-427.42.1.el9_4.x86_64                552/673 
  Verifying        : bpftool-7.0.0-284.11.1.el9_2.x86_64                553/673 
  Verifying        : PackageKit-glib-1.2.6-1.el9.x86_64                 554/673 
  Verifying        : PackageKit-glib-1.2.4-2.el9.x86_64                 555/673 
  Verifying        : PackageKit-1.2.6-1.el9.x86_64                      556/673 
  Verifying        : PackageKit-1.2.4-2.el9.x86_64                      557/673 
  Verifying        : checkpolicy-3.6-1.el9.x86_64                       558/673 
  Verifying        : checkpolicy-3.5-1.el9.x86_64                       559/673 
  Verifying        : python3-file-magic-5.39-16.el9.noarch              560/673 
  Verifying        : python3-file-magic-5.39-12.el9.noarch              561/673 
  Verifying        : python3-audit-3.1.2-2.el9.x86_64                   562/673 
  Verifying        : python3-audit-3.0.7-103.el9.x86_64                 563/673 
  Verifying        : nmap-ncat-3:7.92-1.el9.x86_64                      564/673 
  Verifying        : nmap-ncat-3:7.91-12.el9.x86_64                     565/673 
  Verifying        : python3-libstoragemgmt-1.9.7-2.el9.x86_64          566/673 
  Verifying        : python3-libstoragemgmt-1.9.5-1.el9.x86_64          567/673 
  Verifying        : libstoragemgmt-1.9.7-2.el9.x86_64                  568/673 
  Verifying        : libstoragemgmt-1.9.5-1.el9.x86_64                  569/673 
  Verifying        : libX11-common-1.7.0-9.el9.noarch                   570/673 
  Verifying        : libX11-common-1.7.0-7.el9.noarch                   571/673 
  Verifying        : python3-policycoreutils-3.6-2.1.el9.noarch         572/673 
  Verifying        : python3-policycoreutils-3.5-1.el9.noarch           573/673 
  Verifying        : policycoreutils-python-utils-3.6-2.1.el9.noarch    574/673 
  Verifying        : policycoreutils-python-utils-3.5-1.el9.noarch      575/673 
  Verifying        : rpm-plugin-systemd-inhibit-4.16.1.3-29.el9.x86_6   576/673 
  Verifying        : rpm-plugin-systemd-inhibit-4.16.1.3-22.el9.x86_6   577/673 
  Verifying        : tcpdump-14:4.99.0-9.el9.x86_64                     578/673 
  Verifying        : tcpdump-14:4.99.0-6.el9.x86_64                     579/673 
  Verifying        : python-unversioned-command-3.9.18-3.el9_4.6.noar   580/673 
  Verifying        : python-unversioned-command-3.9.16-1.el9.noarch     581/673 
  Verifying        : bind-utils-32:9.16.23-18.el9_4.6.x86_64            582/673 
  Verifying        : bind-utils-32:9.16.23-11.el9.x86_64                583/673 
  Verifying        : bind-libs-32:9.16.23-18.el9_4.6.x86_64             584/673 
  Verifying        : bind-libs-32:9.16.23-11.el9.x86_64                 585/673 
  Verifying        : bind-license-32:9.16.23-18.el9_4.6.noarch          586/673 
  Verifying        : bind-license-32:9.16.23-11.el9.noarch              587/673 
  Verifying        : libdrm-2.4.117-1.el9.x86_64                        588/673 
  Verifying        : libdrm-2.4.114-1.el9.x86_64                        589/673 
  Verifying        : libjpeg-turbo-2.0.90-7.el9.x86_64                  590/673 
  Verifying        : libjpeg-turbo-2.0.90-6.el9_1.x86_64                591/673 
  Verifying        : librelp-1.10.0-5.el9.x86_64                        592/673 
  Verifying        : librelp-1.10.0-4.el9.x86_64                        593/673 
  Verifying        : cockpit-packagekit-311.2-1.el9_4.noarch            594/673 
  Verifying        : cockpit-packagekit-286.1-1.el9.noarch              595/673 
  Verifying        : libuv-1:1.42.0-2.el9_4.x86_64                      596/673 
  Verifying        : libuv-1:1.42.0-1.el9.x86_64                        597/673 
  Verifying        : python3-libsemanage-3.6-1.el9.x86_64               598/673 
  Verifying        : python3-libsemanage-3.5-1.el9.x86_64               599/673 
  Verifying        : python3-libselinux-3.6-1.el9.x86_64                600/673 
  Verifying        : python3-libselinux-3.5-1.el9.x86_64                601/673 
  Verifying        : librsvg2-tools-2.50.7-3.el9.x86_64                 602/673 
  Verifying        : librsvg2-tools-2.50.7-1.el9.x86_64                 603/673 
  Verifying        : librsvg2-2.50.7-3.el9.x86_64                       604/673 
  Verifying        : librsvg2-2.50.7-1.el9.x86_64                       605/673 
  Verifying        : libfastjson-0.99.9-5.el9.x86_64                    606/673 
  Verifying        : libfastjson-0.99.9-3.el9.x86_64                    607/673 
  Verifying        : tracer-common-1.1-2.el9.noarch                     608/673 
  Verifying        : tracer-common-0.7.5-4.el9.noarch                   609/673 
  Verifying        : python3-tracer-1.1-2.el9.noarch                    610/673 
  Verifying        : python3-tracer-0.7.5-4.el9.noarch                  611/673 
  Verifying        : libfprint-1.94.6-1.el9.x86_64                      612/673 
  Verifying        : libfprint-1.94.5-1.el9.x86_64                      613/673 
  Verifying        : plymouth-scripts-0.9.5-7.20210331git1ea1020.el9.   614/673 
  Verifying        : plymouth-scripts-0.9.5-6.20210331git1ea1020.el9.   615/673 
  Verifying        : plymouth-core-libs-0.9.5-7.20210331git1ea1020.el   616/673 
  Verifying        : plymouth-core-libs-0.9.5-6.20210331git1ea1020.el   617/673 
  Verifying        : plymouth-0.9.5-7.20210331git1ea1020.el9.x86_64     618/673 
  Verifying        : plymouth-0.9.5-6.20210331git1ea1020.el9.x86_64     619/673 
  Verifying        : wget-1.21.1-8.el9_4.x86_64                         620/673 
  Verifying        : wget-1.21.1-7.el9.x86_64                           621/673 
  Verifying        : rsyslog-relp-8.2310.0-4.el9.x86_64                 622/673 
  Verifying        : rsyslog-relp-8.2102.0-113.el9_2.x86_64             623/673 
  Verifying        : rsyslog-logrotate-8.2310.0-4.el9.x86_64            624/673 
  Verifying        : rsyslog-logrotate-8.2102.0-113.el9_2.x86_64        625/673 
  Verifying        : rsyslog-gssapi-8.2310.0-4.el9.x86_64               626/673 
  Verifying        : rsyslog-gssapi-8.2102.0-113.el9_2.x86_64           627/673 
  Verifying        : rsyslog-gnutls-8.2310.0-4.el9.x86_64               628/673 
  Verifying        : rsyslog-gnutls-8.2102.0-113.el9_2.x86_64           629/673 
  Verifying        : rsyslog-8.2310.0-4.el9.x86_64                      630/673 
  Verifying        : rsyslog-8.2102.0-113.el9_2.x86_64                  631/673 
  Verifying        : pixman-0.40.0-6.el9_3.x86_64                       632/673 
  Verifying        : pixman-0.40.0-5.el9.x86_64                         633/673 
  Verifying        : nss-util-3.101.0-7.el9_4.x86_64                    634/673 
  Verifying        : nss-util-3.79.0-18.el9_1.x86_64                    635/673 
  Verifying        : nss-sysinit-3.101.0-7.el9_4.x86_64                 636/673 
  Verifying        : nss-sysinit-3.79.0-18.el9_1.x86_64                 637/673 
  Verifying        : nss-softokn-freebl-3.101.0-7.el9_4.x86_64          638/673 
  Verifying        : nss-softokn-freebl-3.79.0-18.el9_1.x86_64          639/673 
  Verifying        : nss-softokn-3.101.0-7.el9_4.x86_64                 640/673 
  Verifying        : nss-softokn-3.79.0-18.el9_1.x86_64                 641/673 
  Verifying        : nss-3.101.0-7.el9_4.x86_64                         642/673 
  Verifying        : nss-3.79.0-18.el9_1.x86_64                         643/673 
  Verifying        : nspr-4.35.0-14.el9_4.x86_64                        644/673 
  Verifying        : nspr-4.34.0-18.el9_1.x86_64                        645/673 
  Verifying        : emacs-filesystem-1:27.2-10.el9_4.noarch            646/673 
  Verifying        : emacs-filesystem-1:27.2-8.el9_2.1.noarch           647/673 
  Verifying        : open-vm-tools-12.3.5-2.el9.x86_64                  648/673 
  Verifying        : open-vm-tools-12.1.5-1.el9.x86_64                  649/673 
  Verifying        : qemu-guest-agent-17:8.2.0-11.el9_4.6.x86_64        650/673 
  Verifying        : qemu-guest-agent-17:7.2.0-14.el9_2.x86_64          651/673 
  Verifying        : webkit2gtk3-jsc-2.46.1-2.el9_4.x86_64              652/673 
  Verifying        : webkit2gtk3-jsc-2.38.5-1.el9_2.1.x86_64            653/673 
  Verifying        : libX11-1.7.0-9.el9.x86_64                          654/673 
  Verifying        : libX11-1.7.0-7.el9.x86_64                          655/673 
  Verifying        : libappstream-glib-0.7.18-5.el9_4.x86_64            656/673 
  Verifying        : libappstream-glib-0.7.18-4.el9.x86_64              657/673 
  Verifying        : setroubleshoot-server-3.3.32-1.el9.x86_64          658/673 
  Verifying        : setroubleshoot-server-3.3.31-2.el9_2.x86_64        659/673 
  Verifying        : gdk-pixbuf2-2.42.6-4.el9_4.x86_64                  660/673 
  Verifying        : gdk-pixbuf2-2.42.6-3.el9.x86_64                    661/673 
  Verifying        : hypervvssd-0-0.42.20190303git.el9.x86_64           662/673 
  Verifying        : hypervvssd-0-0.41.20190303git.el9.x86_64           663/673 
  Verifying        : hypervkvpd-0-0.42.20190303git.el9.x86_64           664/673 
  Verifying        : hypervkvpd-0-0.41.20190303git.el9.x86_64           665/673 
  Verifying        : hypervfcopyd-0-0.42.20190303git.el9.x86_64         666/673 
  Verifying        : hypervfcopyd-0-0.41.20190303git.el9.x86_64         667/673 
  Verifying        : hyperv-daemons-0-0.42.20190303git.el9.x86_64       668/673 
  Verifying        : hyperv-daemons-0-0.41.20190303git.el9.x86_64       669/673 
  Verifying        : hyperv-daemons-license-0-0.42.20190303git.el9.no   670/673 
  Verifying        : hyperv-daemons-license-0-0.41.20190303git.el9.no   671/673 
  Verifying        : rocky-logos-90.15-2.el9.x86_64                     672/673 
  Verifying        : rocky-logos-90.14-1.el9.x86_64                     673/673 

Upgraded:
  NetworkManager-1:1.46.0-19.el9_4.x86_64                                       
  NetworkManager-libnm-1:1.46.0-19.el9_4.x86_64                                 
  NetworkManager-team-1:1.46.0-19.el9_4.x86_64                                  
  NetworkManager-tui-1:1.46.0-19.el9_4.x86_64                                   
  PackageKit-1.2.6-1.el9.x86_64                                                 
  PackageKit-glib-1.2.6-1.el9.x86_64                                            
  acl-2.3.1-4.el9.x86_64                                                        
  alternatives-1.24-1.el9.x86_64                                                
  audit-3.1.2-2.el9.x86_64                                                      
  audit-libs-3.1.2-2.el9.x86_64                                                 
  authselect-1.2.6-2.el9.x86_64                                                 
  authselect-libs-1.2.6-2.el9.x86_64                                            
  avahi-libs-0.8-20.el9.x86_64                                                  
  basesystem-11-13.el9.0.1.noarch                                               
  bash-5.1.8-9.el9.x86_64                                                       
  bash-completion-1:2.11-5.el9.noarch                                           
  bind-libs-32:9.16.23-18.el9_4.6.x86_64                                        
  bind-license-32:9.16.23-18.el9_4.6.noarch                                     
  bind-utils-32:9.16.23-18.el9_4.6.x86_64                                       
  binutils-2.35.2-43.el9.x86_64                                                 
  binutils-gold-2.35.2-43.el9.x86_64                                            
  bpftool-7.3.0-427.42.1.el9_4.x86_64                                           
  c-ares-1.19.1-2.el9_4.x86_64                                                  
  ca-certificates-2024.2.69_v8.0.303-91.4.el9_4.noarch                          
  checkpolicy-3.6-1.el9.x86_64                                                  
  chrony-4.5-1.el9.x86_64                                                       
  cockpit-311.2-1.el9_4.x86_64                                                  
  cockpit-bridge-311.2-1.el9_4.x86_64                                           
  cockpit-packagekit-311.2-1.el9_4.noarch                                       
  cockpit-system-311.2-1.el9_4.noarch                                           
  cockpit-ws-311.2-1.el9_4.x86_64                                               
  coreutils-8.32-35.el9.x86_64                                                  
  coreutils-common-8.32-35.el9.x86_64                                           
  cronie-1.5.7-11.el9.x86_64                                                    
  cronie-anacron-1.5.7-11.el9.x86_64                                            
  crypto-policies-20240202-1.git283706d.el9.noarch                              
  crypto-policies-scripts-20240202-1.git283706d.el9.noarch                      
  cryptsetup-2.6.0-3.el9.x86_64                                                 
  cryptsetup-libs-2.6.0-3.el9.x86_64                                            
  curl-7.76.1-29.el9_4.1.x86_64                                                 
  dbus-1:1.12.20-8.el9.x86_64                                                   
  dbus-common-1:1.12.20-8.el9.noarch                                            
  dbus-libs-1:1.12.20-8.el9.x86_64                                              
  device-mapper-9:1.02.197-2.el9.x86_64                                         
  device-mapper-event-9:1.02.197-2.el9.x86_64                                   
  device-mapper-event-libs-9:1.02.197-2.el9.x86_64                              
  device-mapper-libs-9:1.02.197-2.el9.x86_64                                    
  device-mapper-persistent-data-1.0.9-3.el9_4.x86_64                            
  dmidecode-1:3.5-3.el9.x86_64                                                  
  dnf-plugins-core-4.3.0-13.el9.noarch                                          
  dracut-057-53.git20240104.el9.x86_64                                          
  dracut-config-rescue-057-53.git20240104.el9.x86_64                            
  dracut-network-057-53.git20240104.el9.x86_64                                  
  dracut-squash-057-53.git20240104.el9.x86_64                                   
  e2fsprogs-1.46.5-5.el9.x86_64                                                 
  e2fsprogs-libs-1.46.5-5.el9.x86_64                                            
  elfutils-debuginfod-client-0.190-2.el9.x86_64                                 
  elfutils-default-yama-scope-0.190-2.el9.noarch                                
  elfutils-libelf-0.190-2.el9.x86_64                                            
  elfutils-libs-0.190-2.el9.x86_64                                              
  emacs-filesystem-1:27.2-10.el9_4.noarch                                       
  ethtool-2:6.2-1.el9.x86_64                                                    
  expat-2.5.0-2.el9_4.1.x86_64                                                  
  file-5.39-16.el9.x86_64                                                       
  file-libs-5.39-16.el9.x86_64                                                  
  findutils-1:4.8.0-6.el9.x86_64                                                
  firewalld-1.3.4-1.el9.noarch                                                  
  firewalld-filesystem-1.3.4-1.el9.noarch                                       
  fuse-common-3.10.2-8.el9.x86_64                                               
  gdk-pixbuf2-2.42.6-4.el9_4.x86_64                                             
  gettext-0.21-8.el9.x86_64                                                     
  gettext-libs-0.21-8.el9.x86_64                                                
  glib2-2.68.4-14.el9_4.1.x86_64                                                
  glibc-2.34-100.el9_4.4.x86_64                                                 
  glibc-common-2.34-100.el9_4.4.x86_64                                          
  glibc-gconv-extra-2.34-100.el9_4.4.x86_64                                     
  glibc-langpack-en-2.34-100.el9_4.4.x86_64                                     
  gmp-1:6.2.0-13.el9.x86_64                                                     
  gnupg2-2.3.3-4.el9.x86_64                                                     
  gnutls-3.8.3-4.el9_4.x86_64                                                   
  grub2-common-1:2.06-82.el9_4.noarch                                           
  grub2-pc-1:2.06-82.el9_4.x86_64                                               
  grub2-pc-modules-1:2.06-82.el9_4.noarch                                       
  grub2-tools-1:2.06-82.el9_4.x86_64                                            
  grub2-tools-minimal-1:2.06-82.el9_4.x86_64                                    
  grubby-8.40-64.el9.x86_64                                                     
  harfbuzz-2.7.4-10.el9.x86_64                                                  
  hwdata-0.348-9.13.el9.noarch                                                  
  hyperv-daemons-0-0.42.20190303git.el9.x86_64                                  
  hyperv-daemons-license-0-0.42.20190303git.el9.noarch                          
  hypervfcopyd-0-0.42.20190303git.el9.x86_64                                    
  hypervkvpd-0-0.42.20190303git.el9.x86_64                                      
  hypervvssd-0-0.42.20190303git.el9.x86_64                                      
  initscripts-rename-device-10.11.6-1.el9.x86_64                                
  initscripts-service-10.11.6-1.el9.noarch                                      
  iproute-6.2.0-6.el9_4.x86_64                                                  
  iproute-tc-6.2.0-6.el9_4.x86_64                                               
  iptables-libs-1.8.10-4.el9_4.x86_64                                           
  iptables-nft-1.8.10-4.el9_4.x86_64                                            
  iputils-20210202-9.el9.x86_64                                                 
  irqbalance-2:1.9.2-3.el9.x86_64                                               
  iwl100-firmware-39.31.5.1-143.3.el9_4.noarch                                  
  iwl1000-firmware-1:39.31.5.1-143.3.el9_4.noarch                               
  iwl105-firmware-18.168.6.1-143.3.el9_4.noarch                                 
  iwl135-firmware-18.168.6.1-143.3.el9_4.noarch                                 
  iwl2000-firmware-18.168.6.1-143.3.el9_4.noarch                                
  iwl2030-firmware-18.168.6.1-143.3.el9_4.noarch                                
  iwl3160-firmware-1:25.30.13.0-143.3.el9_4.noarch                              
  iwl5000-firmware-8.83.5.1_1-143.3.el9_4.noarch                                
  iwl5150-firmware-8.24.2.2-143.3.el9_4.noarch                                  
  iwl6000g2a-firmware-18.168.6.1-143.3.el9_4.noarch                             
  iwl6050-firmware-41.28.5.1-143.3.el9_4.noarch                                 
  iwl7260-firmware-1:25.30.13.0-143.3.el9_4.noarch                              
  kbd-2.4.0-9.el9.x86_64                                                        
  kbd-misc-2.4.0-9.el9.noarch                                                   
  kernel-tools-5.14.0-427.42.1.el9_4.x86_64                                     
  kernel-tools-libs-5.14.0-427.42.1.el9_4.x86_64                                
  kexec-tools-2.0.27-8.el9_4.3.x86_64                                           
  kmod-28-9.el9.x86_64                                                          
  kmod-kvdo-8.2.3.3-117.el9.x86_64                                              
  kmod-libs-28-9.el9.x86_64                                                     
  kpartx-0.8.7-27.el9.x86_64                                                    
  krb5-libs-1.21.1-2.el9_4.x86_64                                               
  ledmon-0.97-1.el9.x86_64                                                      
  less-590-4.el9_4.x86_64                                                       
  libX11-1.7.0-9.el9.x86_64                                                     
  libX11-common-1.7.0-9.el9.noarch                                              
  libacl-2.3.1-4.el9.x86_64                                                     
  libappstream-glib-0.7.18-5.el9_4.x86_64                                       
  libarchive-3.5.3-4.el9.0.1.x86_64                                             
  libatomic-11.4.1-3.el9.x86_64                                                 
  libblkid-2.37.4-18.el9.x86_64                                                 
  libbpf-2:1.3.0-2.el9.x86_64                                                   
  libcap-2.48-9.el9_2.x86_64                                                    
  libcom_err-1.46.5-5.el9.x86_64                                                
  libcurl-7.76.1-29.el9_4.1.x86_64                                              
  libdnf-0.69.0-8.el9_4.1.x86_64                                                
  libdrm-2.4.117-1.el9.x86_64                                                   
  libeconf-0.4.1-3.el9_2.x86_64                                                 
  libedit-3.1-38.20210216cvs.el9.x86_64                                         
  libevent-2.1.12-8.el9_4.x86_64                                                
  libfastjson-0.99.9-5.el9.x86_64                                               
  libfdisk-2.37.4-18.el9.x86_64                                                 
  libffi-3.4.2-8.el9.x86_64                                                     
  libfido2-1.13.0-2.el9.x86_64                                                  
  libfprint-1.94.6-1.el9.x86_64                                                 
  libgcc-11.4.1-3.el9.x86_64                                                    
  libgomp-11.4.1-3.el9.x86_64                                                   
  libgusb-0.3.8-2.el9.x86_64                                                    
  libibverbs-48.0-1.el9.x86_64                                                  
  libipa_hbac-2.9.4-6.el9_4.1.x86_64                                            
  libjpeg-turbo-2.0.90-7.el9.x86_64                                             
  libkcapi-1.4.0-2.el9.x86_64                                                   
  libkcapi-hmaccalc-1.4.0-2.el9.x86_64                                          
  libldb-2.8.0-2.el9_4.x86_64                                                   
  libmnl-1.0.4-16.el9_4.x86_64                                                  
  libmount-2.37.4-18.el9.x86_64                                                 
  libndp-1.8-6.el9_4.x86_64                                                     
  libnftnl-1.2.6-4.el9_4.x86_64                                                 
  libnghttp2-1.43.0-5.el9_4.3.x86_64                                            
  libnl3-3.9.0-1.el9.x86_64                                                     
  libnl3-cli-3.9.0-1.el9.x86_64                                                 
  libnvme-1.6-1.el9.x86_64                                                      
  librelp-1.10.0-5.el9.x86_64                                                   
  librepo-1.14.5-2.el9.x86_64                                                   
  librsvg2-2.50.7-3.el9.x86_64                                                  
  librsvg2-tools-2.50.7-3.el9.x86_64                                            
  libselinux-3.6-1.el9.x86_64                                                   
  libselinux-utils-3.6-1.el9.x86_64                                             
  libsemanage-3.6-1.el9.x86_64                                                  
  libsepol-3.6-1.el9.x86_64                                                     
  libsmartcols-2.37.4-18.el9.x86_64                                             
  libsmbclient-4.19.4-105.el9_4.x86_64                                          
  libsolv-0.7.24-2.el9.x86_64                                                   
  libss-1.46.5-5.el9.x86_64                                                     
  libssh-0.10.4-13.el9.x86_64                                                   
  libssh-config-0.10.4-13.el9.noarch                                            
  libsss_certmap-2.9.4-6.el9_4.1.x86_64                                         
  libsss_idmap-2.9.4-6.el9_4.1.x86_64                                           
  libsss_nss_idmap-2.9.4-6.el9_4.1.x86_64                                       
  libsss_sudo-2.9.4-6.el9_4.1.x86_64                                            
  libstdc++-11.4.1-3.el9.x86_64                                                 
  libstoragemgmt-1.9.7-2.el9.x86_64                                             
  libtalloc-2.4.1-1.el9.x86_64                                                  
  libtdb-1.4.9-1.el9.x86_64                                                     
  libtevent-0.16.0-1.el9.x86_64                                                 
  libtirpc-1.3.3-8.el9_4.x86_64                                                 
  libuser-0.63-13.el9.x86_64                                                    
  libuuid-2.37.4-18.el9.x86_64                                                  
  libuv-1:1.42.0-2.el9_4.x86_64                                                 
  libwbclient-4.19.4-105.el9_4.x86_64                                           
  libxml2-2.9.13-6.el9_4.x86_64                                                 
  linux-firmware-20240905-143.3.el9_4.noarch                                    
  linux-firmware-whence-20240905-143.3.el9_4.noarch                             
  lshw-B.02.19.2-10.el9.x86_64                                                  
  lua-libs-5.4.4-4.el9.x86_64                                                   
  lvm2-9:2.03.23-2.el9.x86_64                                                   
  lvm2-libs-9:2.03.23-2.el9.x86_64                                              
  man-pages-6.04-1.el9.noarch                                                   
  mcelog-3:195-0.el9.x86_64                                                     
  mdadm-4.2-14.el9_4.x86_64                                                     
  microcode_ctl-4:20230808-2.20240910.1.el9_4.noarch                            
  mtr-2:0.94-6.el9_4.x86_64                                                     
  ncurses-6.2-10.20210508.el9.x86_64                                            
  ncurses-base-6.2-10.20210508.el9.noarch                                       
  ncurses-libs-6.2-10.20210508.el9.x86_64                                       
  nettle-3.9.1-1.el9.x86_64                                                     
  nftables-1:1.0.9-1.el9.x86_64                                                 
  nmap-ncat-3:7.92-1.el9.x86_64                                                 
  nspr-4.35.0-14.el9_4.x86_64                                                   
  nss-3.101.0-7.el9_4.x86_64                                                    
  nss-softokn-3.101.0-7.el9_4.x86_64                                            
  nss-softokn-freebl-3.101.0-7.el9_4.x86_64                                     
  nss-sysinit-3.101.0-7.el9_4.x86_64                                            
  nss-util-3.101.0-7.el9_4.x86_64                                               
  numactl-libs-2.0.16-3.el9.x86_64                                              
  nvme-cli-2.6-5.el9.x86_64                                                     
  open-vm-tools-12.3.5-2.el9.x86_64                                             
  openldap-2.6.6-3.el9.x86_64                                                   
  openssh-8.7p1-38.el9_4.4.x86_64                                               
  openssh-clients-8.7p1-38.el9_4.4.x86_64                                       
  openssh-server-8.7p1-38.el9_4.4.x86_64                                        
  openssl-1:3.0.7-28.el9_4.x86_64                                               
  openssl-libs-1:3.0.7-28.el9_4.x86_64                                          
  p11-kit-0.25.3-2.el9.x86_64                                                   
  p11-kit-trust-0.25.3-2.el9.x86_64                                             
  pam-1.5.1-19.el9.x86_64                                                       
  pcre2-10.40-5.el9.x86_64                                                      
  pcre2-syntax-10.40-5.el9.noarch                                               
  pixman-0.40.0-6.el9_3.x86_64                                                  
  plymouth-0.9.5-7.20210331git1ea1020.el9.x86_64                                
  plymouth-core-libs-0.9.5-7.20210331git1ea1020.el9.x86_64                      
  plymouth-scripts-0.9.5-7.20210331git1ea1020.el9.x86_64                        
  policycoreutils-3.6-2.1.el9.x86_64                                            
  policycoreutils-python-utils-3.6-2.1.el9.noarch                               
  procps-ng-3.3.17-14.el9.x86_64                                                
  protobuf-c-1.3.3-13.el9.x86_64                                                
  python-unversioned-command-3.9.18-3.el9_4.6.noarch                            
  python3-3.9.18-3.el9_4.6.x86_64                                               
  python3-audit-3.1.2-2.el9.x86_64                                              
  python3-dateutil-1:2.8.1-7.el9.noarch                                         
  python3-dbus-1.2.18-2.el9.0.1.x86_64                                          
  python3-dnf-plugins-core-4.3.0-13.el9.noarch                                  
  python3-file-magic-5.39-16.el9.noarch                                         
  python3-firewall-1.3.4-1.el9.noarch                                           
  python3-hawkey-0.69.0-8.el9_4.1.x86_64                                        
  python3-idna-2.10-7.el9_4.1.noarch                                            
  python3-libdnf-0.69.0-8.el9_4.1.x86_64                                        
  python3-libs-3.9.18-3.el9_4.6.x86_64                                          
  python3-libselinux-3.6-1.el9.x86_64                                           
  python3-libsemanage-3.6-1.el9.x86_64                                          
  python3-libstoragemgmt-1.9.7-2.el9.x86_64                                     
  python3-libxml2-2.9.13-6.el9_4.x86_64                                         
  python3-linux-procfs-0.7.3-1.el9.noarch                                       
  python3-nftables-1:1.0.9-1.el9.x86_64                                         
  python3-perf-5.14.0-427.42.1.el9_4.x86_64                                     
  python3-pip-wheel-21.2.3-8.el9.noarch                                         
  python3-policycoreutils-3.6-2.1.el9.noarch                                    
  python3-requests-2.25.1-8.el9.noarch                                          
  python3-rpm-4.16.1.3-29.el9.x86_64                                            
  python3-setools-4.4.4-1.el9.x86_64                                            
  python3-setuptools-53.0.0-12.el9_4.1.noarch                                   
  python3-setuptools-wheel-53.0.0-12.el9_4.1.noarch                             
  python3-tracer-1.1-2.el9.noarch                                               
  python3-urllib3-1.26.5-5.el9_4.1.noarch                                       
  qemu-guest-agent-17:8.2.0-11.el9_4.6.x86_64                                   
  realmd-0.17.1-2.el9.x86_64                                                    
  rocky-gpg-keys-9.4-1.7.el9.noarch                                             
  rocky-logos-90.15-2.el9.x86_64                                                
  rocky-release-9.4-1.7.el9.noarch                                              
  rocky-repos-9.4-1.7.el9.noarch                                                
  rpm-4.16.1.3-29.el9.x86_64                                                    
  rpm-build-libs-4.16.1.3-29.el9.x86_64                                         
  rpm-libs-4.16.1.3-29.el9.x86_64                                               
  rpm-plugin-audit-4.16.1.3-29.el9.x86_64                                       
  rpm-plugin-selinux-4.16.1.3-29.el9.x86_64                                     
  rpm-plugin-systemd-inhibit-4.16.1.3-29.el9.x86_64                             
  rpm-sign-libs-4.16.1.3-29.el9.x86_64                                          
  rsyslog-8.2310.0-4.el9.x86_64                                                 
  rsyslog-gnutls-8.2310.0-4.el9.x86_64                                          
  rsyslog-gssapi-8.2310.0-4.el9.x86_64                                          
  rsyslog-logrotate-8.2310.0-4.el9.x86_64                                       
  rsyslog-relp-8.2310.0-4.el9.x86_64                                            
  samba-client-libs-4.19.4-105.el9_4.x86_64                                     
  samba-common-4.19.4-105.el9_4.noarch                                          
  samba-common-libs-4.19.4-105.el9_4.x86_64                                     
  selinux-policy-38.1.35-2.el9_4.2.0.2.noarch                                   
  selinux-policy-targeted-38.1.35-2.el9_4.2.0.2.noarch                          
  setroubleshoot-server-3.3.32-1.el9.x86_64                                     
  setup-2.13.7-10.el9.noarch                                                    
  shadow-utils-2:4.9-8.el9.x86_64                                               
  smartmontools-1:7.2-9.el9.x86_64                                              
  sos-4.7.2-3.el9.noarch                                                        
  sqlite-libs-3.34.1-7.el9_3.x86_64                                             
  squashfs-tools-4.4-10.git1.el9.x86_64                                         
  sssd-2.9.4-6.el9_4.1.x86_64                                                   
  sssd-ad-2.9.4-6.el9_4.1.x86_64                                                
  sssd-client-2.9.4-6.el9_4.1.x86_64                                            
  sssd-common-2.9.4-6.el9_4.1.x86_64                                            
  sssd-common-pac-2.9.4-6.el9_4.1.x86_64                                        
  sssd-ipa-2.9.4-6.el9_4.1.x86_64                                               
  sssd-kcm-2.9.4-6.el9_4.1.x86_64                                               
  sssd-krb5-2.9.4-6.el9_4.1.x86_64                                              
  sssd-krb5-common-2.9.4-6.el9_4.1.x86_64                                       
  sssd-ldap-2.9.4-6.el9_4.1.x86_64                                              
  sssd-proxy-2.9.4-6.el9_4.1.x86_64                                             
  sudo-1.9.5p2-10.el9_3.x86_64                                                  
  systemd-252-32.el9_4.7.x86_64                                                 
  systemd-libs-252-32.el9_4.7.x86_64                                            
  systemd-pam-252-32.el9_4.7.x86_64                                             
  systemd-rpm-macros-252-32.el9_4.7.noarch                                      
  systemd-udev-252-32.el9_4.7.x86_64                                            
  tar-2:1.34-6.el9_4.1.x86_64                                                   
  tcpdump-14:4.99.0-9.el9.x86_64                                                
  tpm2-tss-3.2.2-2.el9.x86_64                                                   
  tracer-common-1.1-2.el9.noarch                                                
  tuned-2.22.1-1.el9.noarch                                                     
  tzdata-2024b-2.el9.noarch                                                     
  usbutils-015-1.el9.x86_64                                                     
  util-linux-2.37.4-18.el9.x86_64                                               
  util-linux-core-2.37.4-18.el9.x86_64                                          
  util-linux-user-2.37.4-18.el9.x86_64                                          
  vdo-8.2.2.2-1.el9.x86_64                                                      
  virt-what-1.25-5.el9.x86_64                                                   
  webkit2gtk3-jsc-2.46.1-2.el9_4.x86_64                                         
  wget-1.21.1-8.el9_4.x86_64                                                    
  which-2.21-29.el9.x86_64                                                      
  xfsdump-3.1.12-4.el9_3.x86_64                                                 
  xfsprogs-6.3.0-1.el9.x86_64                                                   
  zlib-1.2.11-40.el9.x86_64                                                     
Installed:
  fuse3-3.10.2-8.el9.x86_64                                                     
  fuse3-libs-3.10.2-8.el9.x86_64                                                
  grub2-tools-efi-1:2.06-82.el9_4.x86_64                                        
  grub2-tools-extra-1:2.06-82.el9_4.x86_64                                      
  jq-1.6-16.el9.x86_64                                                          
  kbd-legacy-2.4.0-9.el9.noarch                                                 
  kernel-5.14.0-427.42.1.el9_4.x86_64                                           
  kernel-core-5.14.0-427.42.1.el9_4.x86_64                                      
  kernel-modules-5.14.0-427.42.1.el9_4.x86_64                                   
  kernel-modules-core-5.14.0-427.42.1.el9_4.x86_64                              
  libtraceevent-1.5.3-3.el9.x86_64                                              
  liburing-2.5-1.el9.x86_64                                                     
  oniguruma-6.9.6-1.el9.5.0.1.x86_64                                            

Complete!
[root@rocky9kvm31 yum.repos.d]# 



As this update including some "Kernel" packages, the system needs to be rebooted for the new kernel to be booted up and used.

A simple "sudo reboot" command, without the quotes of course, will force an immediate reboot of the system.

Using DNF to Install New Software Packages

In this example, I will demonstrate not only how to install a new package, but a package that actually installs a new software repository as well!

There is a common repository containing many extra packages for RPM-based system, known as the "Extra Packages for Enterprise Linux", shorted to "EPEL". This is how to install the "EPEL" software repository.

Before installing ANY software on a system, it's good practice to ALWAYS first check for all available new software packages, using the "dnf check-update" command, with the "--refresh" switch, as shown here first:

[root@rocky9kvm31 ~]# dnf check-update --refresh
Rocky Linux 9 - BaseOS                          3.6 kB/s | 4.1 kB     00:01    
Rocky Linux 9 - AppStream                       7.9 kB/s | 4.5 kB     00:00    
Rocky Linux 9 - Extras                          1.1 kB/s | 2.9 kB     00:02    
[root@rocky9kvm31 ~]#



Now, on to the actual installation of the EPEL-Release package, which sets up the EPEL software repository in the required locacation, in the "/etc/yum.repos.d/" directory, as shown here:

[root@rocky9kvm31 ~]# dnf install epel-release
Last metadata expiration check: 0:00:15 ago on Fri 15 Nov 2024 04:25:42 PM PST.
Dependencies resolved.
================================================================================
 Package               Architecture    Version            Repository       Size
================================================================================
Installing:
 epel-release          noarch          9-7.el9            extras           19 k

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

Total download size: 19 k
Installed size: 26 k
Is this ok [y/N]: y
Downloading Packages:
epel-release-9-7.el9.noarch.rpm                  40 kB/s |  19 kB     00:00    
--------------------------------------------------------------------------------
Total                                            25 kB/s |  19 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : epel-release-9-7.el9.noarch                            1/1 
  Running scriptlet: epel-release-9-7.el9.noarch                            1/1 
Many EPEL packages require the CodeReady Builder (CRB) repository.
It is recommended that you run /usr/bin/crb enable to enable the CRB repository.

  Verifying        : epel-release-9-7.el9.noarch                            1/1 

Installed:
  epel-release-9-7.el9.noarch                                                   

Complete!
[root@rocky9kvm31 ~]#




Here is an example of how to use dnf to first search for, and then install over the internet, Blender, a very powerful tool to create your own custom animation, simulations and movies:

[root@fc24 ~]# dnf search blender
Last metadata expiration check: 2:29:11 ago on Sun Sep 11 00:31:02 2016.
=========================== N/S Matched: blender ============================
blender.x86_64 : 3D modeling, animation, rendering and post-production



After searching for and finding the package I want to install, I then use dnf, NOT YUM!, to perform the dependency checking, downloading of the package along with the required dependencies, install all of the packages, and then perform what is called the "Cleanup" portion of the process.

This is how to use dnf to download, install, and then clean up any left over junk:

[root@fc24 ~]# dnf install blender
Last metadata expiration check: 2:30:45 ago on Sun Sep 11 00:31:02 2016.
Dependencies resolved.
=============================================================================
 Package                      Arch      Version             Repository  Size
=============================================================================
Installing:
 Field3D                      x86_64    1.7.2-1.fc24        updates    519 k
 OpenColorIO                  x86_64    1.0.9-11.fc24       fedora     439 k
 OpenImageIO                  x86_64    1.6.16-1.fc24       updates    1.7 M
 blender                      x86_64    1:2.77a-1.fc24      updates     29 M
 boost-locale                 x86_64    1.60.0-7.fc24       updates    279 k
 boost-program-options        x86_64    1.60.0-7.fc24       updates    166 k
 boost-regex                  x86_64    1.60.0-7.fc24       updates    300 k
 fftw-libs-double             x86_64    3.3.4-7.fc24        fedora     805 k
 fonts-blender                noarch    1:2.77a-1.fc24      updates    4.7 M
 google-droid-sans-fonts      noarch    20120715-10.fc24    fedora     2.5 M
 hdf5                         x86_64    1.8.16-3.fc24       fedora     1.7 M
 jack-audio-connection-kit    x86_64    1.9.10-5.fc24       fedora     555 k
 jemalloc                     x86_64    4.2.1-1.fc24        updates    182 k
 libffado                     x86_64    2.2.1-8.fc24        fedora     690 k
 libspnav                     x86_64    0.2.3-3.fc24        fedora      17 k
 libxml++                     x86_64    2.40.1-2.fc24       fedora      89 k
 pugixml                      x86_64    1.7-2.fc24          fedora      92 k
 python3-numpy                x86_64    1:1.11.0-4.fc24     fedora     3.0 M
 tinyxml                      x86_64    2.6.2-11.fc24       fedora      54 k
 yaml-cpp03                   x86_64    0.3.0-9.fc24        fedora     151 k

Transaction Summary
=============================================================================
Install  20 Packages

Total download size: 47 M
Installed size: 178 M
Is this ok [y/N]: y



Red Hat Enterprise Linux 5,6 & 7 - Common Administrative Command Cheat Sheets

Here are some very nice printable cheat sheets of the most common Red Hat Enterprise Linux administrative commands:
RedHatEnterpriseLinux_5_6_7_Cheatsheets.pdf

File System Tools & Utilities

There are hundreds if not thousands of file system tools, utilities and apps, so here I will try to go over the main, best, and most useful file system tools in my opinion. This section will have to be a "work in progress", and I will add to this section as time permites, as I find myself needing to use these applilcations.

ALL of these tools and utilities must be ran as either the root superuser, or using the "sudo" prefix!

GDISK - The More Modern Disk Partitioning Tool with Support for GPT Partition Tables!!!

GDISK is a Linux command-line tool used to modify a GPT-Style partition table. The tool functions almost identically to it's old-school counterpart, FDISK, and uses almost identical commands.

The greatest advantage of using GDISK, besides being able tobe used on GPT partition tqables, is it's ability to create and manage more thanjust 4 primary partitions, as FDISK is limmited to. The other main difference is the usages of larger/longer hex-codes to differentiate different file-system types. For instance, the standard Linux filesystem type is specified bvy the hex code 0x83, or just 83, whereas using the GPT partitions table type, that same Linux basic filesystem type is identified with the hex code of 8300.

ALL GPT FILESYSTEM TYPES

0100 Microsoft basic data “FAT-12”
0400 Microsoft basic data “FAT-16 < 32M”
0600 Microsoft basic data “FAT-16”
0700 Microsoft basic data “NTFS (or HPFS)”
0701 Microsoft Storage Replica
0702 ArcaOS Type 1
0b00 Microsoft basic data “FAT-32”
0c00 Microsoft basic data “FAT-32 LBA”
0c01 Microsoft reserved
0e00 Microsoft basic data “FAT-16 LBA”
1100 Microsoft basic data “Hidden FAT-12”
1400 Microsoft basic data “Hidden FAT-16 < 32M”
1600 Microsoft basic data “Hidden FAT-16”
1700 Microsoft basic data “Hidden NTFS (or HPFS)”
1b00 Microsoft basic data “Hidden FAT-32”
1c00 Microsoft basic data “Hidden FAT-32 LBA”
1e00 Microsoft basic data “Hidden FAT-16 LBA”
2700 Windows RE
3000 ONIE boot
3001 ONIE config
3900 Plan 9
4100 PowerPC PReP boot
4200 Windows LDM data
4201 Windows LDM metadata
4202 Windows Storage Space
7501 IBM GPFS
7f00 ChromeOS kernel
7f01 ChromeOS root
7f02 ChromeOS reserved
7f03 ChromeOS firmware
7f04 ChromeOS mini-OS
7f05 ChromeOS hibernate
8200 Linux swap
8300 Linux filesystem
8301 Linux reserved
8302 Linux /home
8303 Linux x86 root (/)
8304 Linux x86-64 root (/)
8305 Linux ARM64 root (/)
8306 Linux /srv
8307 Linux ARM32 root (/)
8308 Linux dm-crypt
8309 Linux LUKS
830a Linux IA-64 root (/)
830b Linux x86 root verity
830c Linux x86-64 root verity
830d Linux ARM32 root verity
830e Linux ARM64 root verity
830f Linux IA-64 root verity
8310 Linux /var
8311 Linux /var/tmp
8312 Linux user’s home
8313 Linux x86 /usr
8314 Linux x86-64 /usr
8315 Linux ARM32 /usr
8316 Linux ARM64 /usr
8317 Linux IA-64 /usr
8318 Linux x86 /usr verity
8319 Linux x86-64 /usr verity
831a Linux ARM32 /usr verity
831b Linux ARM64 /usr verity
831c Linux IA-64 /usr verity
831d Linux Alpha root (/)
831e Linux ARC root (/)
831f Linux LoongArch root (/)
8320 Linux MIPS-32 BE root (/)
8321 Linux MIPS-64 BE root (/)
8322 Linux MIPS-32 LE root (/)
8323 Linux MIPS-64 LE root (/)
8324 Linux PA-RISC root (/)
8325 Linux PowerPC-32 root (/)
8326 Linux PowerPC-64 BE root (/)
8327 Linux PowerPC-64 LE root (/)
8328 Linux RISC-V-32 root (/)
8329 Linux RISC-V-64 root (/)
832a Linux s390 root (/)
832b Linux s390x root (/)
832c Linux TILE-Gx root (/)
832d Linux Alpha /usr
832e Linux ARC /usr
832f Linux LoongArch /usr
8330 Linux MIPS-32 BE /usr
8331 Linux MIPS-64 BE /usr
8332 Linux MIPS-32 LE /usr
8333 Linux MIPS-64 LE /usr
8334 Linux PA-RISC /usr
8335 Linux PowerPC-32 /usr
8336 Linux PowerPC-64 BE /usr
8337 Linux PowerPC-64 LE /usr
8338 Linux RISC-V-32 /usr
8339 Linux RISC-V-64 /usr
833a Linux s390 /usr
833b Linux s390x /usr
833c Linux TILE-Gx /usr
833d Linux Alpha root verity
833e Linux ARC root verity
833f Linux LoongArch root verity
8340 Linux MIPS-32 BE root verity
8341 Linux MIPS-64 BE root verity
8342 Linux MIPS-32 LE root verity
8343 Linux MIPS-64 LE root verity
8344 Linux PA-RISC root verity
8345 Linux PowerPC-64 LE root verity
8346 Linux PowerPC-64 BE root verity
8347 Linux PowerPC-32 root verity
8348 Linux RISC-V-32 root verity
8349 Linux RISC-V-64 root verity
834a Linux s390 root verity
834b Linux s390x root verity
834c Linux TILE-Gx root verity
834d Linux Alpha /usr verity
834e Linux ARC /usr verity
834f Linux LoongArch /usr verity
8350 Linux MIPS-32 BE /usr verity
8351 Linux MIPS-64 BE /usr verity
8352 Linux MIPS-32 LE /usr verity
8353 Linux MIPS-64 LE /usr verity
8354 Linux PA-RISC /usr verity
8355 Linux PowerPC-64 LE /usr verity
8356 Linux PowerPC-64 BE /usr verity
8357 Linux PowerPC-32 /usr verity
8358 Linux RISC-V-32 /usr verity
8359 Linux RISC-V-64 /usr verity
835a Linux s390 /usr verity
835b Linux s390x /usr verity
835c Linux TILE-Gx /usr verity
835d Linux Alpha root verity signature
835e Linux ARC root verity signature
835f Linux ARM32 root verity signature
8360 Linux ARM64 root verity signature
8361 Linux IA-64 root verity signature
8362 Linux LoongArch root verity signature
8363 Linux MIPS-32 BE root verity signature
8364 Linux MIPS-64 BE root verity signature
8365 Linux MIPS-32 LE root verity signature
8366 Linux MIPS-64 LE root verity signature
8367 Linux PA-RISC root verity signature
8368 Linux PowerPC-64 LE root verity signature
8369 Linux PowerPC-64 BE root verity signature
836a Linux PowerPC-32 root verity signature
836b Linux RISC-V-32 root verity signature
836c Linux RISC-V-64 root verity signature
836d Linux s390 root verity signature
836e Linux s390x root verity signature
836f Linux TILE-Gx root verity signature
8370 Linux x86-64 root verity signature
8371 Linux x86 root verity signature
8372 Linux Alpha /usr verity signature
8373 Linux ARC /usr verity signature
8374 Linux ARM32 /usr verity signature
8375 Linux ARM64 /usr verity signature
8376 Linux IA-64 /usr verity signature
8377 Linux LoongArch /usr verity signature
8378 Linux MIPS-32 BE /usr verity signature
8379 Linux MIPS-64 BE /usr verity signature
837a Linux MIPS-32 LE /usr verity signature
837b Linux MIPS-64 LE /usr verity signature
837c Linux PA-RISC /usr verity signature
837d Linux PowerPC-64 LE /usr verity signature
837e Linux PowerPC-64 BE /usr verity signature
837f Linux PowerPC-32 /usr verity signature
8380 Linux RISC-V-32 /usr verity signature
8381 Linux RISC-V-64 /usr verity signature
8382 Linux s390 /usr verity signature
8383 Linux s390x /usr verity signature
8384 Linux TILE-Gx /usr verity signature
8385 Linux x86-64 /usr verity signature
8386 Linux x86 /usr verity signature
8400 Intel Rapid Start
8401 SPDK block device
8500 Container Linux /usr
8501 Container Linux resizable rootfs
8502 Container Linux /OEM customization
8503 Container Linux root on RAID
8e00 Linux LVM
a000 Android bootloader
a001 Android bootloader 2
a002 Android boot
a003 Android recovery
a004 Android misc
a005 Android metadata
a006 Android system
a007 Android cache
a008 Android data
a009 Android persistent
a00a Android factory
a00b Android fastboot/tertiary
a00c Android OEM
a00d Android vendor
a00e Android config
a00f Android factory (alt)
a010 Android meta
a011 Android EXT
a012 Android SBL1
a013 Android SBL2
a014 Android SBL3
a015 Android APPSBL
a016 Android QSEE/tz
a017 Android QHEE/hyp
a018 Android RPM
a019 Android WDOG debug/sdi
a01a Android DDR
a01b Android CDT
a01c Android RAM dump
a01d Android SEC
a01e Android PMIC
a01f Android misc 1
a020 Android misc 2
a021 Android device info
a022 Android APDP
a023 Android MSADP
a024 Android DPO
a025 Android recovery 2
a026 Android persist
a027 Android modem ST1
a028 Android modem ST2
a029 Android FSC
a02a Android FSG 1
a02b Android FSG 2
a02c Android SSD
a02d Android keystore
a02e Android encrypt
a02f Android EKSST
a030 Android RCT
a031 Android spare1
a032 Android spare2
a033 Android spare3
a034 Android spare4
a035 Android raw resources
a036 Android boot 2
a037 Android FOTA
a038 Android system 2
a039 Android cache
a03a Android user data
a03b LG (Android) advanced flasher
a03c Android PG1FS
a03d Android PG2FS
a03e Android board info
a03f Android MFG
a040 Android limits
a200 Atari TOS basic data
a500 FreeBSD disklabel
a501 FreeBSD boot
a502 FreeBSD swap
a503 FreeBSD UFS
a504 FreeBSD ZFS
a505 FreeBSD Vinum/RAID
a506 FreeBSD nandfs
a580 Midnight BSD data
a581 Midnight BSD boot
a582 Midnight BSD swap
a583 Midnight BSD UFS
a584 Midnight BSD ZFS
a585 Midnight BSD Vinum
a600 OpenBSD disklabel
a800 Apple UFS
a900 FreeBSD disklabel “NetBSD partition types. Note that the main entry sets it up as a FreeBSD disklabel. I’m not 100% certain this is the correct behavior.”
a901 NetBSD swap
a902 NetBSD FFS
a903 NetBSD LFS
a904 NetBSD concatenated
a905 NetBSD encrypted
a906 NetBSD RAID
ab00 Recovery HD
af00 Apple HFS/HFS+
af01 Apple RAID
af02 Apple RAID offline
af03 Apple label
af04 AppleTV recovery
af05 Apple Core Storage
af06 Apple SoftRAID Status
af07 Apple SoftRAID Scratch
af08 Apple SoftRAID Volume
af09 Apple SoftRAID Cache
af0a Apple APFS
af0b Apple APFS Pre-Boot
af0c Apple APFS Recovery
b000 U-Boot boot loader
b300 QNX6 Power-Safe
bb00 Barebox boot loader
bc00 Acronis Secure Zone
be00 Solaris boot
bf00 Solaris root
bf01 Solaris /usr & Mac ZFS
bf02 Solaris swap
bf03 Solaris backup
bf04 Solaris /var
bf05 Solaris /home
bf06 Solaris alternate sector
bf07 Solaris Reserved 1
bf08 Solaris Reserved 2
bf09 Solaris Reserved 3
bf0a Solaris Reserved 4
bf0b Solaris Reserved 5
c001 HP-UX data
c002 HP-UX service
e100 ONIE boot
e101 ONIE config
e900 Veracrypt data
ea00 Freedesktop $BOOT
eb00 Haiku BFS
ed00 Sony system partition
ed01 Lenovo system partition
ef00 EFI System
ef01 MBR partition scheme
ef02 BIOS boot partition
f100 Fuchsia boot loader (slot A/B/R)
f101 Fuchsia durable mutable encrypted system data
f102 Fuchsia durable mutable boot loader
f103 Fuchsia factory ro system data
f104 Fuchsia factory ro bootloader data
f105 Fuchsia Volume Manager
f106 Fuchsia verified boot metadata (slot A/B/R)
f107 Fuchsia Zircon boot image (slot A/B/R)
f108 Fuchsia ESP
f109 Fuchsia System
f10a Fuchsia Data
f10b Fuchsia Install
f10c Fuchsia Blob
f10d Fuchsia FVM
f10e Fuchsia Zircon boot image (slot A)
f10f Fuchsia Zircon boot image (slot B)
f110 Fuchsia Zircon boot image (slot R)
f111 Fuchsia sys-config
f112 Fuchsia factory-config
f113 Fuchsia bootloader
f114 Fuchsia guid-test
f115 Fuchsia verified boot metadata (A)
f116 Fuchsia verified boot metadata (B)
f117 Fuchsia verified boot metadata (R)
f118 Fuchsia misc
f119 Fuchsia emmc-boot1
f11a Fuchsia emmc-boot2
f800 Ceph OSD
f801 Ceph dm-crypt OSD
f802 Ceph journal
f803 Ceph dm-crypt journal
f804 Ceph disk in creation
f805 Ceph dm-crypt disk in creation
f806 Ceph block
f807 Ceph block DB
f808 Ceph block write-ahead log
f809 Ceph lockbox for dm-crypt keys
f80a Ceph multipath OSD
f80b Ceph multipath journal
f80c Ceph multipath block 1
f80d Ceph multipath block 2
f80e Ceph multipath block DB
f80f Ceph multipath block write-ahead log
f810 Ceph dm-crypt block
f811 Ceph dm-crypt block DB
f812 Ceph dm-crypt block write-ahead log
f813 Ceph dm-crypt LUKS journal
f814 Ceph dm-crypt LUKS block
f815 Ceph dm-crypt LUKS block DB
f816 Ceph dm-crypt LUKS block write-ahead log
f817 Ceph dm-crypt LUKS OSD
fb00 VMWare VMFS
fb01 VMWare reserved
fc00 VMWare kcore crash partition
fd00 Linux RAID
“Note: DO NOT use the 0xffff code; that’s reserved to indicate an unknown GUID type code.”



Here's where this list came from:
https://www.toomanyatoms.com/computer/gdisk_gpt_partition_codes.html

Here's all of the GUID's:
https://www.toomanyatoms.com/computer/gpt_partition_type_guids.html

FDISK - The Original Old-School Partitioning Tool

fdisk, the disk partitionling command-line tool, as are all Linux command line commands, Case Sensitive, and therefore always lower case! fdisk doesn't always need switches, but ALWAYS MUST have arguments! In the case of fdisk, the most common switch is the "l" switch, a lower-case L. It's used to only LIST, and NOT change/modify any disk partitions. The "l" switch spits out the current partition pointed to with the argument, which is always a Linux "device" file, such as "/dev/sda", case sensitive, without the quotes. /dev/sda is the first hard drive, with the "s" part referring to the old SCSI protocol. Therefore, /dev/sda referres to SCSI device A, the first drive in a Linux system. The next drive would be /dev/sdb, the third drive would be /dev/sdc, and so on.

On more modern systems, that don't use old-school hard drives, the newest technology drives used for storage, especially on laptops, are M.1 drives, which are solid-state drives which usually use the NVMe standard, making the device files for those drives something like /dev/nvme01p0, or similar. CD & DVD writers(also referred to "burners"), often use "/dev/sr0" as the first CD/DVD burner on a system, which stand for "SCSI Recorder Number 0", since numbering usually starts with 0 on computer systems.

Regardless of the device files being used, the "fdisk" commands are all basically the same, other than the actual device you are partitionling, which is CRITICAl, as there is NO going back once you have partitioned and written that partion table to the drive!!! Therefore, you MUST ALWAYS be 100% CERTAIN you are using the correct hard of solid-state drive file!!!

One more BIG concern to take into account is if the disk already has an existing partion table created, from being previously used, you MUST be sure to use the CORRECT disk partitioning tools, as newer, larger and more modern computers use the new disk partitioning tool called GDISK, instead of FDISK! Both are used with all Lower Case letters(fdis & gdisk), but if there is already a "gdisk" partioned disk, known as a "GPT" partition table, you MUST use the "gdisk" tool to make any changes/modification to the disk's partition table, and visa versa in the case of a disk with an existing "fdisk" partion table, known as the "DOS" partition table type. It usually shows as all lower-case, such as "dos".

Usesage of both partitioning tools are almost identicle, with the only real differences being the partition type hex-codes used to define the partition types at creation time.

The first step is the unmount the USB flash drive, before using any partitioning tools, as it can otherwise corrupt the drive. Because I am using an existing 256GB USB 3.0 flash drive, I prefer to use the udiskctl utility to both unmount and power-off USB flash drives. Here is the command I use to "unmount" the drive, before making any changes to it's partition table:

[root@server.dawgland.com:~]# udisksctl unmount -b /dev/sdl
Unmounted /dev/sdl.
[root@server.dawgland.com:~]#

Next, I need to use the fdisk tool to delete the existing partitions on the USB flash drive:

[root@server.dawgland.com:~]# fdisk /dev/sdl

Welcome to fdisk (util-linux 2.35.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

The device contains 'exfat' signature and it will be removed by a write command. See fdisk(8) man page and --wipe option for more details.

Command (m for help): p

Disk /dev/sdl: 234.38 GiB, 251658240000 bytes, 491520000 sectors
Disk model: ProductCode     
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x00000000

Device     Boot      Start        End    Sectors  Size Id Type
/dev/sdl1       4294967295 8589934589 4294967295    2T ff BBT
/dev/sdl2       4294967295 8589934589 4294967295    2T ff BBT
/dev/sdl3       4294967295 8589934589 4294967295    2T ff BBT
/dev/sdl4       4294967295 5035196669  740229375  353G ff BBT

Command (m for help): d
Partition number (1-4, default 4): 

Partition 4 has been deleted.

Command (m for help): d
Partition number (1-3, default 3): 

Partition 3 has been deleted.

Command (m for help): d
Partition number (1,2, default 2): 

Partition 2 has been deleted.

Command (m for help): d
Selected partition 1
Partition 1 has been deleted.

Command (m for help): p
Disk /dev/sdl: 234.38 GiB, 251658240000 bytes, 491520000 sectors
Disk model: ProductCode     
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x00000000

Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.

[root@server.dawgland.com:~]#

I like to manually run the "sync" command a couple of times just to make sure the disks are all synced up! Here's is me doing so:

[root@server.dawgland.com:~]# sync
[root@server.dawgland.com:~]# sync
[root@server.dawgland.com:~]# sync
[root@server.dawgland.com:~]#

I then use the "fdisk" tool again to view my changes. As can be seen, although the 4 partitions had vanished, as intended, it still shows the deives contains an 'exfat' signature, and althoug it states it will be removed by a "write" command, doing the "w" command does NOT remove the 'exfat' signature, as seen in this example:

[root@server.dawgland.com:~]# fdisk /dev/sdl

Welcome to fdisk (util-linux 2.35.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

The device contains 'exfat' signature and it will be removed by a write command. See fdisk(8) man page and --wipe option for more details.

Command (m for help):

To resolve this issue, the "wipe" options must be CORRECTLY used, as shown in this example:

[root@server.dawgland.com:~]# fdisk -W always /dev/sdl

Welcome to fdisk (util-linux 2.35.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

The device contains 'exfat' signature and it will be removed by a write command. See fdisk(8) man page and --wipe option for more details.

Command (m for help): w

The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.

[root@server.dawgland.com:~]# sync
[root@server.dawgland.com:~]# sync
[root@server.dawgland.com:~]# fdisk /dev/sdl

Welcome to fdisk (util-linux 2.35.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

Device does not contain a recognized partition table.
Created a new DOS disklabel with disk identifier 0xe345e7b0.

Command (m for help):q
[root@server.dawgland.com:~]#

As you can now see, the 'exfat' signature warning is not gone! The disk can now be safely and correctly partitioned as normal!



      • The "wipe" switch has a caveat which requires the addition of "always" being used after the -W switch, which must be an upper-case W. Here is an example from a disk that had been partioned and formated using the "ExFAT" partition and filesystem, which held onto the 'exfat' signature and didn't want to clear it by a normal delete partion command and write partition table command. It still showed as 'exfat', as seen in these examples!


  • df - DiskFree - Shows how much space is used by files, and how much space is left on storage devices connected to the system in one way or another, both locally mounted and remotely mounted file systems.
  • du - DiskUsage - Shows how much space is used by files.
  • ls - List - List files with a multitude of options and switches. I use ls -l, of which there usually exists an alias using "ll" as a shortcut to the "ls -l" command. The -l switch shows a Long listing, which means it shows not only file names, but file sizes and file attrubutes, ownerships, etc. I often add the "-a" switch to the "ls" command as well, meaning show "ALL" files, including "hidden" files, which start with a dot to hide them from a normal directory listing. So, I usually always use "ls -al" to list the contents of a directory, such as here:


[jamie@rocky9vm32.dawgland.com:~]$ ls -al
total 20
drwx------. 7 jamie jamie  170 Oct  5 02:01 .
drwxr-xr-x. 3 root  root    19 Jan 26  2023 ..
drwx------. 3 jamie jamie   17 Oct  4 23:04 .ansible
-rw-------. 1 jamie jamie 2875 Oct  5 02:10 .bash_history
-rw-r--r--. 1 jamie jamie   18 Nov  1  2022 .bash_logout
-rw-r--r--. 1 jamie jamie  141 Nov  1  2022 .bash_profile
-rw-r--r--. 1 jamie jamie  660 Jan 27  2023 .bashrc
drwx------. 3 jamie jamie   24 Jul 25 21:40 .cache
drwx------. 3 jamie jamie   17 Jul 25 21:38 .config
-rw-------. 1 jamie jamie   20 Oct  5 02:01 .lesshst
drwx------. 3 jamie jamie   19 Jul 25 21:38 .local
drwx------. 2 jamie jamie   61 Jan 27  2023 .ssh
[jamie@rocky9vm32.dawgland.com:~]$



MariaDB - The "Free" MySQL Alternative


MySQL, the long time "free" SQL server and client that used to be included in all standard Linux server installations server, has been acquired by Oracle, and they've "commercialized" it, so that it is no longer "officially" free for any commercial or business usage, and only "free" for personal not-for-profit use. This caused a bunch of long time developers to create what has become the "de-facto" MySQL replacement, and uses the exact same MySQL commands and syntax that we have become accustomed to throughout the years.

Installation of MariaDB

This is how I installed MariaDB on my new Fedora Linux 24, the latest and greatest! In one command, I've installed both the server and client, along with all of their dependencies! Here's how I did it:

[root@fc24 ~]# dnf install mariadb-server mariadb
Last metadata expiration check: 3:08:41 ago on Sun Sep 11 00:31:02 2016.
Dependencies resolved.
=============================================================================
 Package                Arch        Version               Repository    Size
=============================================================================
Installing:
 mariadb                x86_64      3:10.1.16-1.fc24      updates      6.3 M
 mariadb-common         x86_64      3:10.1.16-1.fc24      updates       66 k
 mariadb-config         x86_64      3:10.1.16-1.fc24      updates       29 k
 mariadb-errmsg         x86_64      3:10.1.16-1.fc24      updates      203 k
 mariadb-libs           x86_64      3:10.1.16-1.fc24      updates      654 k
 mariadb-server         x86_64      3:10.1.16-1.fc24      updates       19 M
 perl-DBD-MySQL         x86_64      4.036-1.fc24          updates      146 k
 perl-DBI               x86_64      1.634-3.fc24          fedora       729 k
 perl-Math-BigInt       noarch      1.9997.15-2.fc24      fedora       178 k
 perl-Math-Complex      noarch      1.59-362.fc24         updates       95 k
 perl-Storable          x86_64      1:2.53-348.fc24       updates       84 k

Transaction Summary
=============================================================================
Install  11 Packages

Total download size: 28 M
Installed size: 140 M
Is this ok [y/N]:y



Here is the rest of the output from the "dnf" after hitting the "Y" key to proceed to download the installation RPM packages, install them, and then clean things up to finish the installation:

Downloading Packages:
(1/11): mariadb-common-10.1.16-1.fc24.x86_64 158 kB/s |  66 kB     00:00    
(2/11): perl-DBI-1.634-3.fc24.x86_64.rpm     1.3 MB/s | 729 kB     00:00    
(3/11): perl-Math-BigInt-1.9997.15-2.fc24.no 1.9 MB/s | 178 kB     00:00    
(4/11): mariadb-errmsg-10.1.16-1.fc24.x86_64 361 kB/s | 203 kB     00:00    
(5/11): mariadb-config-10.1.16-1.fc24.x86_64 295 kB/s |  29 kB     00:00    
(6/11): perl-DBD-MySQL-4.036-1.fc24.x86_64.r 532 kB/s | 146 kB     00:00    
(7/11): mariadb-libs-10.1.16-1.fc24.x86_64.r 930 kB/s | 654 kB     00:00    
(8/11): perl-Math-Complex-1.59-362.fc24.noar 1.0 MB/s |  95 kB     00:00    
(9/11): perl-Storable-2.53-348.fc24.x86_64.r 1.0 MB/s |  84 kB     00:00    
(10/11): mariadb-10.1.16-1.fc24.x86_64.rpm   2.2 MB/s | 6.3 MB     00:02    
(11/11): mariadb-server-10.1.16-1.fc24.x86_6 3.8 MB/s |  19 MB     00:05    
-----------------------------------------------------------------------------
Total                                        4.3 MB/s |  28 MB     00:06     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Installing  : mariadb-config-3:10.1.16-1.fc24.x86_64                  1/11 
  Installing  : mariadb-common-3:10.1.16-1.fc24.x86_64                  2/11 
  Installing  : mariadb-errmsg-3:10.1.16-1.fc24.x86_64                  3/11 
  Installing  : mariadb-3:10.1.16-1.fc24.x86_64                         4/11 
  Installing  : mariadb-libs-3:10.1.16-1.fc24.x86_64                    5/11 
  Installing  : perl-Storable-1:2.53-348.fc24.x86_64                    6/11 
  Installing  : perl-Math-Complex-1.59-362.fc24.noarch                  7/11 
  Installing  : perl-Math-BigInt-1.9997.15-2.fc24.noarch                8/11 
  Installing  : perl-DBI-1.634-3.fc24.x86_64                            9/11 
  Installing  : perl-DBD-MySQL-4.036-1.fc24.x86_64                     10/11 
  Installing  : mariadb-server-3:10.1.16-1.fc24.x86_64                 11/11 
  Verifying   : mariadb-server-3:10.1.16-1.fc24.x86_64                  1/11 
  Verifying   : perl-DBI-1.634-3.fc24.x86_64                            2/11 
  Verifying   : mariadb-common-3:10.1.16-1.fc24.x86_64                  3/11 
  Verifying   : mariadb-errmsg-3:10.1.16-1.fc24.x86_64                  4/11 
  Verifying   : perl-Math-BigInt-1.9997.15-2.fc24.noarch                5/11 
  Verifying   : mariadb-3:10.1.16-1.fc24.x86_64                         6/11 
  Verifying   : mariadb-config-3:10.1.16-1.fc24.x86_64                  7/11 
  Verifying   : perl-DBD-MySQL-4.036-1.fc24.x86_64                      8/11 
  Verifying   : mariadb-libs-3:10.1.16-1.fc24.x86_64                    9/11 
  Verifying   : perl-Math-Complex-1.59-362.fc24.noarch                 10/11 
  Verifying   : perl-Storable-1:2.53-348.fc24.x86_64                   11/11 

Installed:
  mariadb.x86_64 3:10.1.16-1.fc24                                            
  mariadb-common.x86_64 3:10.1.16-1.fc24                                     
  mariadb-config.x86_64 3:10.1.16-1.fc24                                     
  mariadb-errmsg.x86_64 3:10.1.16-1.fc24                                     
  mariadb-libs.x86_64 3:10.1.16-1.fc24                                       
  mariadb-server.x86_64 3:10.1.16-1.fc24                                     
  perl-DBD-MySQL.x86_64 4.036-1.fc24                                         
  perl-DBI.x86_64 1.634-3.fc24                                               
  perl-Math-BigInt.noarch 1.9997.15-2.fc24                                   
  perl-Math-Complex.noarch 1.59-362.fc24                                     
  perl-Storable.x86_64 1:2.53-348.fc24                                       

Complete!
[root@fc24 ~]# 



Secure MariaDB Database Server Before Enabling SQL Server for Production


Before you enable the MariaDB SQL server, you MUST secure the server, either manually or using the included mysql_secure_installation shell script. Personally, I prefer to do it manually so that I can fine tune and tweak my installation. But the ultimate choice is your's.

Samba/CIFS Information --> Sharing Linux & Windows Stuff - A Necessary Evil~!


Excellent information on Samba 4 and using it to replace Windows AD, can be found here:
Setting up Samba 4 as Windows Active Directory Domain Controller

Password Info & Creation


Usually, passwords are created from the command line using the "passwd" command.
When creating a new user account, by default no password is set, so it must be done so manually!

If you need to create a pasword hash that can be copy and pasted into some other file manually,
there are a number of ways to do it, however I personally prefer a tool that is included with most
Linux distributions, aka "Distros". This tool is part of the Apache web server, so most systems already have it installed.
The htpasswd command is very versatile. This is an example of how to create a password hash manually:

[root@server ~]# htpasswd -c /tmp/tmppass tim
New password: 
Re-type new password: 
Adding password for user tim
[root@server ~]# cat /tmp/tmppass 
tim:$apr1$2/FJ6Trp$YF8RcdKJvkHKsyrZBQn9N0



The hash is after the "tim:" part, and can be copy and pasted into any file you need it for.

7zip Archive Handling With Linux


Depending on your distro, you will want to get either the 7za package for RPM and APT based distros, and the p7zip packages for Slackware, my preferred server distro!

Fedora VNC Information


This is where the symlink for the vncserver@ service resides

[jamie@server system]$ ls -l vncserver@.service 
-rw-r--r--. 1 root root 1734 Jan 21  2014 vncserver@.service
[jamie@server system]$ pwd
/lib/systemd/system



Puppy Linux

Puppy Linux is one of the tiniest Linux distributions, at only 335MB in size for the 32-bit version. The verified ISO for PuppyLinux Bionic32 can be downloaded from here: https://thebestlinux.com/pub/BionicPup32-19.03-231016.iso