OpenHPC Installation Guide (via recipe.sh)
1. Introduction
We are going to install OpenHPC using the recipe.sh script. To make the installation process easier to understand and to check for errors step by step, we will divide this script into 15 individual sections, executing and verifying each one separately.
2. Section 1 of the recipe.sh script
#!/usr/bin/bash
# -----------------------------------------------------------------------------------------
# Example Installation Script Template
# This convenience script encapsulates command-line instructions highlighted in
# an OpenHPC Install Guide that can be used as a starting point to perform a local
# cluster install beginning with bare-metal. Necessary inputs that describe local
# hardware characteristics, desired network settings, and other customizations
# are controlled via a companion input file that is used to initialize variables
# within this script.
# Please see the OpenHPC Install Guide(s) for more information regarding the
# procedure. Note that the section numbering included in this script refers to
# corresponding sections from the companion install guide.
# -----------------------------------------------------------------------------------------
inputFile=${OHPC_INPUT_LOCAL:-/input.local}
Please specify the exact path where input.local is located. Make sure there are no spaces between the - and the /
if [ ! -e ${inputFile} ];then
echo "Error: Unable to access local input file -> ${inputFile}"
exit 1
else
. ${inputFile} || { echo "Error sourcing ${inputFile}"; exit 1; }
Fi
Explanation:
- If OHPC_INPUT_LOCAL is defined, then inputFile will take its value.
- Otherwise, it will default to /input.local.
# ---------------------------- Begin OpenHPC Recipe ---------------------------------------
# Commands below are extracted from an OpenHPC install guide recipe and are intended for
# execution on the master SMS host.
# -----------------------------------------------------------------------------------------
# Verify OpenHPC repository has been enabled before proceeding
dnf repolist | grep -q OpenHPC
if [ $? -ne 0 ];then
echo "Error: OpenHPC repository must be enabled locally"
exit 1
fi
It checks whether the OpenHPC repository is enabled using dnf repolist.
If it’s not enabled, an error message is displayed and the installation is stopped.
# Disable firewall
systemctl disable --now firewalld
It immediately disables the firewalld service and prevents it from starting automatically.
Running this section of recipe.sh should produce no output.
If any output appears, it indicates an error.
3. Section 2 of the recipe.sh script
#!/usr/bin/bash
# -----------------------------------------------------------------------------------------
# Example Installation Script Template
# This convenience script encapsulates command-line instructions highlighted in
# an OpenHPC Install Guide that can be used as a starting point to perform a local
# cluster install beginning with bare-metal. Necessary inputs that describe local
# hardware characteristics, desired network settings, and other customizations
# are controlled via a companion input file that is used to initialize variables
# within this script.
# Please see the OpenHPC Install Guide(s) for more information regarding the
# procedure. Note that the section numbering included in this script refers to
# corresponding sections from the companion install guide.
# -----------------------------------------------------------------------------------------
inputFile=${OHPC_INPUT_LOCAL:-/input.local}
if [ ! -e ${inputFile} ];then
echo "Error: Unable to access local input file -> ${inputFile}"
exit 1
else
. ${inputFile} || { echo "Error sourcing ${inputFile}"; exit 1; }
fi
# ------------------------------------------------------------
# Add baseline OpenHPC and provisioning services (Section 3.3)
# ------------------------------------------------------------
dnf -y install ohpc-base warewulf-ohpc hwloc-ohpc
Purpose : To install the essential packages for OpenHPC. The packages required for setting up and managing an HPC cluster are installed using dnf.
# Enable NTP services on SMS host
systemctl enable chronyd.service
Enable the NTP service : The time synchronization service chronyd is enabled to ensure that the SMS server remains synchronized with an NTP server.
echo "local stratum 10" >> /etc/chrony.conf
echo "server ${ntp_server}" >> /etc/chrony.conf
echo "allow all" >> /etc/chrony.conf
Configure NTP settings: The chrony.conf configuration file is modified to define a local server, specify an external NTP server, and allow all hosts to synchronize with this server.
systemctl restart chronyd
Restart the chronyd service : The service is restarted to apply the configuration changes.
Running this script may produce the following error (at least that was the case for me)
Rocky Linux 9 - BaseOS 0.0 B/s | 0 B 00:01
Errors during downloading metadata for repository 'baseos':
- Curl error (60): SSL peer certificate or SSH remote key was not OK for https://mirrors.rockylinux.org/mirrorlist?arch=x86_64&repo=BaseOS-9 [SSL certificate problem: certificate is not yet valid]
Error: Failed to download metadata for repo 'baseos': Cannot prepare internal mirrorlist: Curl error (60): SSL peer certificate or SSH remote key was not OK for https://mirrors.rockylinux.org/mirrorlist?arch=x86_64&repo=BaseOS-9 [SSL certificate problem: certificate is not yet valid
Solution: An SSL certificate error may occur if the system date and time are incorrect. If the system clock is significantly ahead or behind, SSL certificates may be considered invalid.
[root@master-ohpc /]# date
Wed Feb 5 08:33:12 AM EST 2025
[root@master-ohpc /]# date -s "2025-02-05 14:37:00"
Wed Feb 5 02:37:00 PM EST 2025
[root@master-ohpc /]# date
Wed Feb 5 02:37:05 PM EST 2025
[root@master-ohpc /]# ./recipe2.sh </pre>
OpenHPC-3 - Base 698 B/s | 1.5 kB 00:02
OpenHPC-3 - Updates 8.2 kB/s | 3.0 kB 00:00
Extra Packages for Enterprise Linux 9 - x86_64 4.9 kB/s | 79 kB 00:16
Rocky Linux 9 - BaseOS 12 kB/s | 4.1 kB 00:00
Rocky Linux 9 - AppStream 15 kB/s | 4.5 kB 00:00
Rocky Linux 9 - Extras 2.0 kB/s | 2.9 kB 00:01
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
hwloc-ohpc x86_64 2.11.1-320.ohpc.1.1 OpenHPC-updates 2.4 M
ohpc-base x86_64 3.2-320.ohpc.1.1 OpenHPC-updates 7.2 k
warewulf-ohpc x86_64 4.5.5-320.ohpc.3.1 OpenHPC-updates 24 M
Upgrading:
libipa_hbac x86_64 2.9.5-4.el9_5.4 baseos 35 k
libsss_certmap x86_64 2.9.5-4.el9_5.4 baseos 90 k
libsss_idmap x86_64 2.9.5-4.el9_5.4 baseos 41 k
libsss_nss_idmap x86_64 2.9.5-4.el9_5.4 baseos 45 k
libsss_sudo x86_64 2.9.5-4.el9_5.4 baseos 35 k
sssd x86_64 2.9.5-4.el9_5.4 baseos 27 k
sssd-ad x86_64 2.9.5-4.el9_5.4 baseos 215 k
sssd-client x86_64 2.9.5-4.el9_5.4 baseos 161 k
sssd-common x86_64 2.9.5-4.el9_5.4 baseos 1.6 M
sssd-common-pac x86_64 2.9.5-4.el9_5.4 baseos 96 k
sssd-ipa x86_64 2.9.5-4.el9_5.4 baseos 281 k
sssd-kcm x86_64 2.9.5-4.el9_5.4 baseos 109 k
sssd-krb5 x86_64 2.9.5-4.el9_5.4 baseos 72 k
sssd-krb5-common x86_64 2.9.5-4.el9_5.4 baseos 94 k
sssd-ldap x86_64 2.9.5-4.el9_5.4 baseos 159 k
sssd-proxy x86_64 2.9.5-4.el9_5.4 baseos 72 k
Installing dependencies:
OpenIPMI x86_64 2.0.36-1.el9 appstream 111 k
OpenIPMI-libs x86_64 2.0.36-1.el9 appstream 509 k
alsa-lib x86_64 1.2.12-1.el9 appstream 504 k
binutils-devel x86_64 2.35.2-54.el9 appstream 3.9 M
boost-regex x86_64 1.75.0-8.el9 appstream 277 k
cmake-filesystem x86_64 3.26.5-2.el9 appstream 11 k
cmake-ohpc x86_64 3.24.2-300.ohpc.1.6 OpenHPC 15 M
conman-ohpc x86_64 0.3.1-300.ohpc.1.6 OpenHPC 127 k
dhcp-common noarch 12:4.4.2-19.b1.el9 baseos 128 k
dhcp-server x86_64 12:4.4.2-19.b1.el9 baseos 1.2 M
emacs-common x86_64 1:27.2-10.el9_4 appstream 35 M
emacs-nox x86_64 1:27.2-10.el9_4 appstream 2.8 M
examples-ohpc x86_64 2.0-300.ohpc.1.6 OpenHPC 18 k
expect x86_64 5.45.4-16.el9 appstream 245 k
fish x86_64 3.3.1-3.el9 epel 3.3 M
freeipmi x86_64 1.6.14-2.el9 appstream 2.0 M
gdb x86_64 14.2-3.el9 appstream 146 k
gdb-headless x86_64 14.2-3.el9 appstream 4.8 M
gssproxy x86_64 0.8.4-7.el9 baseos 108 k
ipmitool x86_64 1.8.18-27.el9 appstream 385 k
ipxe-bootimgs-aarch64 noarch 20200823-9.git4bd064de.el9 appstream 124 k
ipxe-bootimgs-x86 noarch 20200823-9.git4bd064de.el9 appstream 1.6 M
libbabeltrace x86_64 1.5.8-10.el9 appstream 186 k
libev x86_64 4.33-5.el9.0.1 baseos 51 k
libipt x86_64 2.0.4-5.el9 appstream 55 k
libnfsidmap x86_64 1:2.5.4-27.el9 baseos 59 k
libstdc++-devel x86_64 11.5.0-2.el9 appstream 2.2 M
libunwind x86_64 1.6.2-1.el9 epel 67 k
libverto-libev x86_64 0.3.2-3.el9 baseos 13 k
libxml2-devel x86_64 2.9.13-6.el9_4 appstream 827 k
lmod-ohpc x86_64 8.7.53-320.ohpc.3.1 OpenHPC-updates 251 k
losf-ohpc noarch 0.56.0-300.ohpc.1.9 OpenHPC 90 k
lua x86_64 5.4.4-4.el9 appstream 187 k
lua-filesystem x86_64 1.8.0-5.el9 epel 34 k
lua-posix x86_64 35.0-8.el9 appstream 131 k
make x86_64 1:4.3-8.el9 baseos 529 k
net-snmp-libs x86_64 1:5.9.1-17.el9 appstream 740 k
nfs-utils x86_64 1:2.5.4-27.el9 baseos 431 k
pcre2-utf32 x86_64 10.40-6.el9 appstream 202 k
pdsh-ohpc x86_64 2.35-310.ohpc.4.1 OpenHPC-updates 104 k
perl-AutoLoader noarch 5.74-481.el9 appstream 20 k
perl-B x86_64 1.80-481.el9 appstream 178 k
perl-Carp noarch 1.50-460.el9 appstream 29 k
perl-Class-Struct noarch 0.66-481.el9 appstream 21 k
perl-Data-Dumper x86_64 2.174-462.el9 appstream 55 k
perl-Digest noarch 1.19-4.el9 appstream 25 k
perl-Digest-MD5 x86_64 2.58-4.el9 appstream 36 k
perl-Encode x86_64 4:3.08-462.el9 appstream 1.7 M
perl-Errno x86_64 1.30-481.el9 appstream 13 k
perl-Exporter noarch 5.74-461.el9 appstream 31 k
perl-Fcntl x86_64 1.13-481.el9 appstream 19 k
perl-File-Basename noarch 2.85-481.el9 appstream 16 k
perl-File-Path noarch 2.18-4.el9 appstream 35 k
perl-File-Temp noarch 1:0.231.100-4.el9 appstream 59 k
perl-File-stat noarch 1.09-481.el9 appstream 16 k
perl-FileHandle noarch 2.03-481.el9 appstream 14 k
perl-Getopt-Long noarch 1:2.52-4.el9 appstream 60 k
perl-Getopt-Std noarch 1.12-481.el9 appstream 14 k
perl-HTTP-Tiny noarch 0.076-462.el9 appstream 53 k
perl-IO x86_64 1.43-481.el9 appstream 85 k
perl-IO-Socket-IP noarch 0.41-5.el9 appstream 42 k
perl-IO-Socket-SSL noarch 2.073-2.el9 appstream 214 k
perl-IPC-Open3 noarch 1.21-481.el9 appstream 21 k
perl-MIME-Base64 x86_64 3.16-4.el9 appstream 30 k
perl-Mozilla-CA noarch 20200520-6.el9 appstream 12 k
perl-Net-SSLeay x86_64 1.94-1.el9 appstream 391 k
perl-POSIX x86_64 1.94-481.el9 appstream 95 k
perl-PathTools x86_64 3.78-461.el9 appstream 85 k
perl-Pod-Escapes noarch 1:1.07-460.el9 appstream 20 k
perl-Pod-Perldoc noarch 3.28.01-461.el9 appstream 83 k
perl-Pod-Simple noarch 1:3.42-4.el9 appstream 215 k
perl-Pod-Usage noarch 4:2.01-4.el9 appstream 40 k
perl-Scalar-List-Utils x86_64 4:1.56-462.el9 appstream 70 k
perl-SelectSaver noarch 1.02-481.el9 appstream 10 k
perl-Socket x86_64 4:2.031-4.el9 appstream 54 k
perl-Storable x86_64 1:3.21-460.el9 appstream 95 k
perl-Symbol noarch 1.08-481.el9 appstream 13 k
perl-Term-ANSIColor noarch 5.01-461.el9 appstream 48 k
perl-Term-Cap noarch 1.17-460.el9 appstream 22 k
perl-Text-ParseWords noarch 3.30-460.el9 appstream 16 k
perl-Text-Tabs+Wrap noarch 2013.0523-460.el9 appstream 23 k
perl-Time-Local noarch 2:1.300-7.el9 appstream 33 k
perl-URI noarch 5.09-3.el9 appstream 108 k
perl-base noarch 2.27-481.el9 appstream 15 k
perl-constant noarch 1.33-461.el9 appstream 23 k
perl-if noarch 0.60.800-481.el9 appstream 13 k
perl-interpreter x86_64 4:5.32.1-481.el9 appstream 70 k
perl-libnet noarch 3.13-4.el9 appstream 125 k
perl-libs x86_64 4:5.32.1-481.el9 appstream 2.0 M
perl-mro x86_64 1.23-481.el9 appstream 27 k
perl-overload noarch 1.31-481.el9 appstream 44 k
perl-overloading noarch 0.02-481.el9 appstream 11 k
perl-parent noarch 1:0.238-460.el9 appstream 14 k
perl-podlators noarch 1:4.14-460.el9 appstream 112 k
perl-subs noarch 1.03-481.el9 appstream 10 k
perl-vars noarch 1.05-481.el9 appstream 12 k
rc x86_64 1.7.4-16.el9 epel 92 k
rpcbind x86_64 1.2.6-7.el9 baseos 56 k
screen x86_64 4.8.0-6.el9 epel 649 k
source-highlight x86_64 3.1.9-12.el9 appstream 608 k
sssd-nfs-idmap x86_64 2.9.5-4.el9_5.4 baseos 39 k
tcl x86_64 1:8.6.10-7.el9 baseos 1.1 M
tcsh x86_64 6.22.03-6.el9 appstream 456 k
tftp-server x86_64 5.2-38.el9 appstream 40 k
xz-devel x86_64 5.2.5-8.el9_0 appstream 52 k
yum-utils noarch 4.3.0-16.el9 baseos 35 k
zlib-devel x86_64 1.2.11-40.el9 appstream 44 k
Installing weak dependencies:
perl-NDBM_File x86_64 1.15-481.el9 appstream 21 k
Transaction Summary
==============================================================================================================================================================================================================
Install 111 Packages
Upgrade 16 Packages
Total download size: 118 M
Downloading Packages:
(1/127): examples-ohpc-2.0-300.ohpc.1.6.x86_64.rpm 32 kB/s | 18 kB 00:00
(2/127): conman-ohpc-0.3.1-300.ohpc.1.6.x86_64.rpm 138 kB/s | 127 kB 00:00
(3/127): losf-ohpc-0.56.0-300.ohpc.1.9.noarch.rpm 243 kB/s | 90 kB 00:00
(4/127): lmod-ohpc-8.7.53-320.ohpc.3.1.x86_64.rpm 672 kB/s | 251 kB 00:00
(5/127): ohpc-base-3.2-320.ohpc.1.1.x86_64.rpm 38 kB/s | 7.2 kB 00:00
(6/127): pdsh-ohpc-2.35-310.ohpc.4.1.x86_64.rpm 548 kB/s | 104 kB 00:00
(7/127): hwloc-ohpc-2.11.1-320.ohpc.1.1.x86_64.rpm 1.6 MB/s | 2.4 MB 00:01
(8/127): cmake-ohpc-3.24.2-300.ohpc.1.6.x86_64.rpm 5.5 MB/s | 15 MB 00:02
(9/127): fish-3.3.1-3.el9.x86_64.rpm 12 MB/s | 3.3 MB 00:00
(10/127): libunwind-1.6.2-1.el9.x86_64.rpm 747 kB/s | 67 kB 00:00
(11/127): lua-filesystem-1.8.0-5.el9.x86_64.rpm 304 kB/s | 34 kB 00:00
(12/127): rc-1.7.4-16.el9.x86_64.rpm 508 kB/s | 92 kB 00:00
(13/127): libverto-libev-0.3.2-3.el9.x86_64.rpm 149 kB/s | 13 kB 00:00
(14/127): screen-4.8.0-6.el9.x86_64.rpm 2.6 MB/s | 649 kB 00:00
(15/127): yum-utils-4.3.0-16.el9.noarch.rpm 647 kB/s | 35 kB 00:00
(16/127): rpcbind-1.2.6-7.el9.x86_64.rpm 641 kB/s | 56 kB 00:00
(17/127): libev-4.33-5.el9.0.1.x86_64.rpm 414 kB/s | 51 kB 00:00
(18/127): sssd-nfs-idmap-2.9.5-4.el9_5.4.x86_64.rpm 386 kB/s | 39 kB 00:00
(19/127): tcl-8.6.10-7.el9.x86_64.rpm 4.9 MB/s | 1.1 MB 00:00
(20/127): dhcp-server-4.4.2-19.b1.el9.x86_64.rpm 4.3 MB/s | 1.2 MB 00:00
(21/127): dhcp-common-4.4.2-19.b1.el9.noarch.rpm 846 kB/s | 128 kB 00:00
(22/127): gssproxy-0.8.4-7.el9.x86_64.rpm 1.3 MB/s | 108 kB 00:00
(23/127): make-4.3-8.el9.x86_64.rpm 3.3 MB/s | 529 kB 00:00
(24/127): nfs-utils-2.5.4-27.el9.x86_64.rpm 2.0 MB/s | 431 kB 00:00
(25/127): libnfsidmap-2.5.4-27.el9.x86_64.rpm 502 kB/s | 59 kB 00:00
(26/127): perl-Text-ParseWords-3.30-460.el9.noarch.rpm 174 kB/s | 16 kB 00:00
(27/127): warewulf-ohpc-4.5.5-320.ohpc.3.1.x86_64.rpm 9.8 MB/s | 24 MB 00:02
(28/127): perl-Exporter-5.74-461.el9.noarch.rpm 114 kB/s | 31 kB 00:00
(29/127): perl-Pod-Simple-3.42-4.el9.noarch.rpm 1.0 MB/s | 215 kB 00:00
(30/127): perl-File-Path-2.18-4.el9.noarch.rpm 1.1 MB/s | 35 kB 00:00
(31/127): perl-Pod-Perldoc-3.28.01-461.el9.noarch.rpm 2.5 MB/s | 83 kB 00:00
(32/127): perl-Pod-Usage-2.01-4.el9.noarch.rpm 1.8 MB/s | 40 kB 00:00
(33/127): perl-Getopt-Long-2.52-4.el9.noarch.rpm 1.1 MB/s | 60 kB 00:00
(34/127): perl-IO-Socket-IP-0.41-5.el9.noarch.rpm 665 kB/s | 42 kB 00:00
(35/127): perl-libnet-3.13-4.el9.noarch.rpm 1.5 MB/s | 125 kB 00:00
(36/127): perl-Time-Local-1.300-7.el9.noarch.rpm 214 kB/s | 33 kB 00:00
(37/127): libbabeltrace-1.5.8-10.el9.x86_64.rpm 1.4 MB/s | 186 kB 00:00
(38/127): expect-5.45.4-16.el9.x86_64.rpm 1.3 MB/s | 245 kB 00:00
(39/127): binutils-devel-2.35.2-54.el9.x86_64.rpm 16 MB/s | 3.9 MB 00:00
(40/127): lua-5.4.4-4.el9.x86_64.rpm 862 kB/s | 187 kB 00:00
(41/127): freeipmi-1.6.14-2.el9.x86_64.rpm 5.8 MB/s | 2.0 MB 00:00
(42/127): libxml2-devel-2.9.13-6.el9_4.x86_64.rpm 9.4 MB/s | 827 kB 00:00
(43/127): lua-posix-35.0-8.el9.x86_64.rpm 693 kB/s | 131 kB 00:00
(44/127): perl-Carp-1.50-460.el9.noarch.rpm 234 kB/s | 29 kB 00:00
(45/127): perl-podlators-4.14-460.el9.noarch.rpm 1.1 MB/s | 112 kB 00:00
(46/127): perl-Term-Cap-1.17-460.el9.noarch.rpm 209 kB/s | 22 kB 00:00
(47/127): perl-Term-ANSIColor-5.01-461.el9.noarch.rpm 956 kB/s | 48 kB 00:00
(48/127): perl-HTTP-Tiny-0.076-462.el9.noarch.rpm 1.2 MB/s | 53 kB 00:00
(49/127): perl-URI-5.09-3.el9.noarch.rpm 3.8 MB/s | 108 kB 00:00
(50/127): perl-constant-1.33-461.el9.noarch.rpm 1.0 MB/s | 23 kB 00:00
(51/127): perl-Digest-1.19-4.el9.noarch.rpm 223 kB/s | 25 kB 00:00
(52/127): perl-Encode-3.08-462.el9.x86_64.rpm 15 MB/s | 1.7 MB 00:00
(53/127): perl-Data-Dumper-2.174-462.el9.x86_64.rpm 498 kB/s | 55 kB 00:00
(54/127): perl-IO-Socket-SSL-2.073-2.el9.noarch.rpm 4.6 MB/s | 214 kB 00:00
(55/127): perl-Storable-3.21-460.el9.x86_64.rpm 1.6 MB/s | 95 kB 00:00
(56/127): perl-PathTools-3.78-461.el9.x86_64.rpm 2.2 MB/s | 85 kB 00:00
(57/127): perl-Scalar-List-Utils-1.56-462.el9.x86_64.rpm 555 kB/s | 70 kB 00:00
(58/127): perl-Mozilla-CA-20200520-6.el9.noarch.rpm 289 kB/s | 12 kB 00:00
(59/127): perl-Text-Tabs+Wrap-2013.0523-460.el9.noarch.rpm 539 kB/s | 23 kB 00:00
(60/127): perl-Pod-Escapes-1.07-460.el9.noarch.rpm 963 kB/s | 20 kB 00:00
(61/127): pcre2-utf32-10.40-6.el9.x86_64.rpm 4.0 MB/s | 202 kB 00:00
(62/127): perl-Digest-MD5-2.58-4.el9.x86_64.rpm 387 kB/s | 36 kB 00:00
(63/127): libipt-2.0.4-5.el9.x86_64.rpm 577 kB/s | 55 kB 00:00
(64/127): perl-MIME-Base64-3.16-4.el9.x86_64.rpm 373 kB/s | 30 kB 00:00
(65/127): source-highlight-3.1.9-12.el9.x86_64.rpm 4.5 MB/s | 608 kB 00:00
(66/127): tftp-server-5.2-38.el9.x86_64.rpm 401 kB/s | 40 kB 00:00
(67/127): tcsh-6.22.03-6.el9.x86_64.rpm 2.9 MB/s | 456 kB 00:00
(68/127): xz-devel-5.2.5-8.el9_0.x86_64.rpm 518 kB/s | 52 kB 00:00
(69/127): perl-File-Temp-0.231.100-4.el9.noarch.rpm 618 kB/s | 59 kB 00:00
(70/127): cmake-filesystem-3.26.5-2.el9.x86_64.rpm 223 kB/s | 11 kB 00:00
(71/127): net-snmp-libs-5.9.1-17.el9.x86_64.rpm 5.0 MB/s | 740 kB 00:00
(72/127): ipxe-bootimgs-aarch64-20200823-9.git4bd064de.el9.noarch.rpm 1.0 MB/s | 124 kB 00:00
(73/127): ipxe-bootimgs-x86-20200823-9.git4bd064de.el9.noarch.rpm 6.8 MB/s | 1.6 MB 00:00
(74/127): OpenIPMI-2.0.36-1.el9.x86_64.rpm 1.2 MB/s | 111 kB 00:00
(75/127): OpenIPMI-libs-2.0.36-1.el9.x86_64.rpm 4.2 MB/s | 509 kB 00:00
(76/127): ipmitool-1.8.18-27.el9.x86_64.rpm 14 MB/s | 385 kB 00:00
(77/127): perl-Socket-2.031-4.el9.x86_64.rpm 736 kB/s | 54 kB 00:00
(78/127): perl-mro-1.23-481.el9.x86_64.rpm 399 kB/s | 27 kB 00:00
(79/127): alsa-lib-1.2.12-1.el9.x86_64.rpm 2.9 MB/s | 504 kB 00:00
(80/127): perl-interpreter-5.32.1-481.el9.x86_64.rpm 940 kB/s | 70 kB 00:00
(81/127): perl-libs-5.32.1-481.el9.x86_64.rpm 17 MB/s | 2.0 MB 00:00
(82/127): perl-NDBM_File-1.15-481.el9.x86_64.rpm 491 kB/s | 21 kB 00:00
(83/127): perl-IO-1.43-481.el9.x86_64.rpm 6.9 MB/s | 85 kB 00:00
(84/127): perl-Fcntl-1.13-481.el9.x86_64.rpm 832 kB/s | 19 kB 00:00
(85/127): perl-Errno-1.30-481.el9.x86_64.rpm 325 kB/s | 13 kB 00:00
(86/127): perl-B-1.80-481.el9.x86_64.rpm 3.6 MB/s | 178 kB 00:00
(87/127): perl-vars-1.05-481.el9.noarch.rpm 327 kB/s | 12 kB 00:00
(88/127): perl-subs-1.03-481.el9.noarch.rpm 544 kB/s | 10 kB 00:00
(89/127): perl-overloading-0.02-481.el9.noarch.rpm 532 kB/s | 11 kB 00:00
(90/127): perl-overload-1.31-481.el9.noarch.rpm 2.1 MB/s | 44 kB 00:00
(91/127): perl-POSIX-1.94-481.el9.x86_64.rpm 540 kB/s | 95 kB 00:00
(92/127): perl-if-0.60.800-481.el9.noarch.rpm 521 kB/s | 13 kB 00:00
(93/127): perl-base-2.27-481.el9.noarch.rpm 425 kB/s | 15 kB 00:00
(94/127): perl-Symbol-1.08-481.el9.noarch.rpm 472 kB/s | 13 kB 00:00
(95/127): perl-IPC-Open3-1.21-481.el9.noarch.rpm 931 kB/s | 21 kB 00:00
(96/127): perl-Getopt-Std-1.12-481.el9.noarch.rpm 372 kB/s | 14 kB 00:00
(97/127): perl-FileHandle-2.03-481.el9.noarch.rpm 418 kB/s | 14 kB 00:00
(98/127): perl-File-stat-1.09-481.el9.noarch.rpm 685 kB/s | 16 kB 00:00
(99/127): perl-File-Basename-2.85-481.el9.noarch.rpm 1.1 MB/s | 16 kB 00:00
(100/127): perl-Class-Struct-0.66-481.el9.noarch.rpm 893 kB/s | 21 kB 00:00
(101/127): perl-AutoLoader-5.74-481.el9.noarch.rpm 626 kB/s | 20 kB 00:00
(102/127): perl-SelectSaver-1.02-481.el9.noarch.rpm 63 kB/s | 10 kB 00:00
(103/127): perl-parent-0.238-460.el9.noarch.rpm 2.7 MB/s | 14 kB 00:00
(104/127): perl-Net-SSLeay-1.94-1.el9.x86_64.rpm 4.1 MB/s | 391 kB 00:00
(105/127): emacs-nox-27.2-10.el9_4.x86_64.rpm 26 MB/s | 2.8 MB 00:00
(106/127): boost-regex-1.75.0-8.el9.x86_64.rpm 1.6 MB/s | 277 kB 00:00
(107/127): gdb-14.2-3.el9.x86_64.rpm 1.2 MB/s | 146 kB 00:00
(108/127): gdb-headless-14.2-3.el9.x86_64.rpm 18 MB/s | 4.8 MB 00:00
(109/127): zlib-devel-1.2.11-40.el9.x86_64.rpm 313 kB/s | 44 kB 00:00
(110/127): sssd-proxy-2.9.5-4.el9_5.4.x86_64.rpm 2.8 MB/s | 72 kB 00:00
(111/127): emacs-common-27.2-10.el9_4.x86_64.rpm 59 MB/s | 35 MB 00:00
(112/127): sssd-ldap-2.9.5-4.el9_5.4.x86_64.rpm 672 kB/s | 159 kB 00:00
(113/127): sssd-krb5-common-2.9.5-4.el9_5.4.x86_64.rpm 6.0 MB/s | 94 kB 00:00
(114/127): sssd-krb5-2.9.5-4.el9_5.4.x86_64.rpm 5.4 MB/s | 72 kB 00:00
(115/127): libstdc++-devel-11.5.0-2.el9.x86_64.rpm 7.1 MB/s | 2.2 MB 00:00
(116/127): sssd-kcm-2.9.5-4.el9_5.4.x86_64.rpm 2.3 MB/s | 109 kB 00:00
(117/127): sssd-common-pac-2.9.5-4.el9_5.4.x86_64.rpm 4.5 MB/s | 96 kB 00:00
(118/127): sssd-ipa-2.9.5-4.el9_5.4.x86_64.rpm 3.7 MB/s | 281 kB 00:00
(119/127): sssd-client-2.9.5-4.el9_5.4.x86_64.rpm 2.2 MB/s | 161 kB 00:00
(120/127): sssd-2.9.5-4.el9_5.4.x86_64.rpm 2.2 MB/s | 27 kB 00:00
(121/127): libsss_sudo-2.9.5-4.el9_5.4.x86_64.rpm 2.5 MB/s | 35 kB 00:00
(122/127): libsss_nss_idmap-2.9.5-4.el9_5.4.x86_64.rpm 1.2 MB/s | 45 kB 00:00
(123/127): sssd-common-2.9.5-4.el9_5.4.x86_64.rpm 9.2 MB/s | 1.6 MB 00:00
(124/127): libsss_idmap-2.9.5-4.el9_5.4.x86_64.rpm 1.4 MB/s | 41 kB 00:00
(125/127): sssd-ad-2.9.5-4.el9_5.4.x86_64.rpm 1.4 MB/s | 215 kB 00:00
(126/127): libipa_hbac-2.9.5-4.el9_5.4.x86_64.rpm 1.1 MB/s | 35 kB 00:00
(127/127): libsss_certmap-2.9.5-4.el9_5.4.x86_64.rpm 2.0 MB/s | 90 kB 00:00
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 7.4 MB/s | 118 MB 00:15
Extra Packages for Enterprise Linux 9 - x86_64 1.6 MB/s | 1.6 kB 00:00
Importing GPG key 0x3228467C:
Userid : "Fedora (epel9) "
Fingerprint: FF8A D134 4597 106E CE81 3B91 8A38 72BF 3228 467C
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-9
Key imported successfully
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Upgrading : libsss_idmap-2.9.5-4.el9_5.4.x86_64 1/143
Upgrading : libsss_certmap-2.9.5-4.el9_5.4.x86_64 2/143
Installing : perl-Digest-1.19-4.el9.noarch 3/143
Installing : perl-Digest-MD5-2.58-4.el9.x86_64 4/143
Installing : perl-B-1.80-481.el9.x86_64 5/143
Installing : perl-FileHandle-2.03-481.el9.noarch 6/143
Installing : perl-Data-Dumper-2.174-462.el9.x86_64 7/143
Installing : perl-libnet-3.13-4.el9.noarch 8/143
Installing : perl-base-2.27-481.el9.noarch 9/143
Installing : perl-AutoLoader-5.74-481.el9.noarch 10/143
Installing : perl-URI-5.09-3.el9.noarch 11/143
Installing : perl-Mozilla-CA-20200520-6.el9.noarch 12/143
Installing : perl-Text-Tabs+Wrap-2013.0523-460.el9.noarch 13/143
Installing : perl-Pod-Escapes-1:1.07-460.el9.noarch 14/143
Installing : perl-if-0.60.800-481.el9.noarch 15/143
Installing : perl-File-Path-2.18-4.el9.noarch 16/143
Installing : perl-IO-Socket-IP-0.41-5.el9.noarch 17/143
Installing : perl-Net-SSLeay-1.94-1.el9.x86_64 18/143
Installing : perl-Time-Local-2:1.300-7.el9.noarch 19/143
Installing : perl-IO-Socket-SSL-2.073-2.el9.noarch 20/143
Installing : perl-Term-ANSIColor-5.01-461.el9.noarch 21/143
Installing : perl-POSIX-1.94-481.el9.x86_64 22/143
Installing : perl-Term-Cap-1.17-460.el9.noarch 23/143
Installing : perl-subs-1.03-481.el9.noarch 24/143
Installing : perl-Pod-Simple-1:3.42-4.el9.noarch 25/143
Installing : perl-IPC-Open3-1.21-481.el9.noarch 26/143
Installing : perl-Class-Struct-0.66-481.el9.noarch 27/143
Installing : perl-HTTP-Tiny-0.076-462.el9.noarch 28/143
Installing : perl-File-Temp-1:0.231.100-4.el9.noarch 29/143
Installing : perl-Socket-4:2.031-4.el9.x86_64 30/143
Installing : perl-Symbol-1.08-481.el9.noarch 31/143
Installing : perl-SelectSaver-1.02-481.el9.noarch 32/143
Installing : perl-File-stat-1.09-481.el9.noarch 33/143
Installing : perl-podlators-1:4.14-460.el9.noarch 34/143
Installing : perl-Pod-Perldoc-3.28.01-461.el9.noarch 35/143
Installing : perl-mro-1.23-481.el9.x86_64 36/143
Installing : perl-Fcntl-1.13-481.el9.x86_64 37/143
Installing : perl-overloading-0.02-481.el9.noarch 38/143
Installing : perl-IO-1.43-481.el9.x86_64 39/143
Installing : perl-Pod-Usage-4:2.01-4.el9.noarch 40/143
Installing : perl-Text-ParseWords-3.30-460.el9.noarch 41/143
Installing : perl-constant-1.33-461.el9.noarch 42/143
Installing : perl-Scalar-List-Utils-4:1.56-462.el9.x86_64 43/143
Installing : perl-MIME-Base64-3.16-4.el9.x86_64 44/143
Installing : perl-Errno-1.30-481.el9.x86_64 45/143
Installing : perl-vars-1.05-481.el9.noarch 46/143
Installing : perl-overload-1.31-481.el9.noarch 47/143
Installing : perl-Getopt-Std-1.12-481.el9.noarch 48/143
Installing : perl-File-Basename-2.85-481.el9.noarch 49/143
Installing : perl-Storable-1:3.21-460.el9.x86_64 50/143
Installing : perl-parent-1:0.238-460.el9.noarch 51/143
Installing : perl-Getopt-Long-1:2.52-4.el9.noarch 52/143
Installing : perl-Exporter-5.74-461.el9.noarch 53/143
Installing : perl-Carp-1.50-460.el9.noarch 54/143
Installing : perl-NDBM_File-1.15-481.el9.x86_64 55/143
Installing : perl-PathTools-3.78-461.el9.x86_64 56/143
Installing : perl-Encode-4:3.08-462.el9.x86_64 57/143
Installing : perl-libs-4:5.32.1-481.el9.x86_64 58/143
Installing : perl-interpreter-4:5.32.1-481.el9.x86_64 59/143
Installing : zlib-devel-1.2.11-40.el9.x86_64 60/143
Installing : net-snmp-libs-1:5.9.1-17.el9.x86_64 61/143
Installing : libnfsidmap-1:2.5.4-27.el9.x86_64 62/143
Installing : tcl-1:8.6.10-7.el9.x86_64 63/143
Installing : expect-5.45.4-16.el9.x86_64 64/143
Installing : sssd-nfs-idmap-2.9.5-4.el9_5.4.x86_64 65/143
Installing : OpenIPMI-libs-2.0.36-1.el9.x86_64 66/143
Installing : OpenIPMI-2.0.36-1.el9.x86_64 67/143
Running scriptlet: OpenIPMI-2.0.36-1.el9.x86_64 67/143
Installing : binutils-devel-2.35.2-54.el9.x86_64 68/143
Installing : pdsh-ohpc-2.35-310.ohpc.4.1.x86_64 69/143
Upgrading : libipa_hbac-2.9.5-4.el9_5.4.x86_64 70/143
Upgrading : libsss_nss_idmap-2.9.5-4.el9_5.4.x86_64 71/143
Upgrading : sssd-client-2.9.5-4.el9_5.4.x86_64 72/143
Running scriptlet: sssd-client-2.9.5-4.el9_5.4.x86_64 72/143
Upgrading : libsss_sudo-2.9.5-4.el9_5.4.x86_64 73/143
Running scriptlet: sssd-common-2.9.5-4.el9_5.4.x86_64 74/143
Upgrading : sssd-common-2.9.5-4.el9_5.4.x86_64 74/143
Running scriptlet: sssd-common-2.9.5-4.el9_5.4.x86_64 74/143
Upgrading : sssd-krb5-common-2.9.5-4.el9_5.4.x86_64 75/143
Upgrading : sssd-common-pac-2.9.5-4.el9_5.4.x86_64 76/143
Upgrading : sssd-ipa-2.9.5-4.el9_5.4.x86_64 77/143
Upgrading : sssd-ad-2.9.5-4.el9_5.4.x86_64 78/143
Upgrading : sssd-ldap-2.9.5-4.el9_5.4.x86_64 79/143
Upgrading : sssd-krb5-2.9.5-4.el9_5.4.x86_64 80/143
Upgrading : sssd-proxy-2.9.5-4.el9_5.4.x86_64 81/143
Installing : libstdc++-devel-11.5.0-2.el9.x86_64 82/143
Installing : emacs-common-1:27.2-10.el9_4.x86_64 83/143
Installing : boost-regex-1.75.0-8.el9.x86_64 84/143
Installing : source-highlight-3.1.9-12.el9.x86_64 85/143
Installing : ipmitool-1.8.18-27.el9.x86_64 86/143
Installing : alsa-lib-1.2.12-1.el9.x86_64 87/143
Installing : emacs-nox-1:27.2-10.el9_4.x86_64 88/143
Installing : ipxe-bootimgs-aarch64-20200823-9.git4bd064de.el9.noarch 89/143
Installing : ipxe-bootimgs-x86-20200823-9.git4bd064de.el9.noarch 90/143
Installing : cmake-filesystem-3.26.5-2.el9.x86_64 91/143
Installing : xz-devel-5.2.5-8.el9_0.x86_64 92/143
Installing : libxml2-devel-2.9.13-6.el9_4.x86_64 93/143
Installing : tcsh-6.22.03-6.el9.x86_64 94/143
Running scriptlet: tcsh-6.22.03-6.el9.x86_64 94/143
Installing : tftp-server-5.2-38.el9.x86_64 95/143
Running scriptlet: tftp-server-5.2-38.el9.x86_64 95/143
Installing : libipt-2.0.4-5.el9.x86_64 96/143
Installing : pcre2-utf32-10.40-6.el9.x86_64 97/143
Installing : fish-3.3.1-3.el9.x86_64 98/143
Running scriptlet: fish-3.3.1-3.el9.x86_64 98/143
Installing : lua-posix-35.0-8.el9.x86_64 99/143
Installing : lua-5.4.4-4.el9.x86_64 100/143
Installing : freeipmi-1.6.14-2.el9.x86_64 101/143
Installing : conman-ohpc-0.3.1-300.ohpc.1.6.x86_64 102/143
Running scriptlet: conman-ohpc-0.3.1-300.ohpc.1.6.x86_64 102/143
Installing : libbabeltrace-1.5.8-10.el9.x86_64 103/143
Installing : gdb-headless-14.2-3.el9.x86_64 104/143
Installing : gdb-14.2-3.el9.x86_64 105/143
Installing : make-1:4.3-8.el9.x86_64 106/143
Installing : dhcp-common-12:4.4.2-19.b1.el9.noarch 107/143
Running scriptlet: dhcp-server-12:4.4.2-19.b1.el9.x86_64 108/143
Installing : dhcp-server-12:4.4.2-19.b1.el9.x86_64 108/143
Running scriptlet: dhcp-server-12:4.4.2-19.b1.el9.x86_64 108/143
Installing : libev-4.33-5.el9.0.1.x86_64 109/143
Installing : libverto-libev-0.3.2-3.el9.x86_64 110/143
Installing : gssproxy-0.8.4-7.el9.x86_64 111/143
Running scriptlet: gssproxy-0.8.4-7.el9.x86_64 111/143
Running scriptlet: rpcbind-1.2.6-7.el9.x86_64 112/143
Installing : rpcbind-1.2.6-7.el9.x86_64 112/143
Running scriptlet: rpcbind-1.2.6-7.el9.x86_64 112/143
Created symlink /etc/systemd/system/multi-user.target.wants/rpcbind.service → /usr/lib/systemd/system/rpcbind.service.
Created symlink /etc/systemd/system/sockets.target.wants/rpcbind.socket → /usr/lib/systemd/system/rpcbind.socket.
Running scriptlet: nfs-utils-1:2.5.4-27.el9.x86_64 113/143
Installing : nfs-utils-1:2.5.4-27.el9.x86_64 113/143
Running scriptlet: nfs-utils-1:2.5.4-27.el9.x86_64 113/143
Installing : yum-utils-4.3.0-16.el9.noarch 114/143
Running scriptlet: screen-4.8.0-6.el9.x86_64 115/143
Installing : screen-4.8.0-6.el9.x86_64 115/143
Installing : rc-1.7.4-16.el9.x86_64 116/143
Running scriptlet: rc-1.7.4-16.el9.x86_64 116/143
Installing : lua-filesystem-1.8.0-5.el9.x86_64 117/143
Installing : lmod-ohpc-8.7.53-320.ohpc.3.1.x86_64 118/143
Installing : libunwind-1.6.2-1.el9.x86_64 119/143
Installing : losf-ohpc-0.56.0-300.ohpc.1.9.noarch 120/143
Installing : examples-ohpc-2.0-300.ohpc.1.6.x86_64 121/143
Installing : cmake-ohpc-3.24.2-300.ohpc.1.6.x86_64 122/143
Installing : ohpc-base-3.2-320.ohpc.1.1.x86_64 123/143
Running scriptlet: warewulf-ohpc-4.5.5-320.ohpc.3.1.x86_64 124/143
Installing : warewulf-ohpc-4.5.5-320.ohpc.3.1.x86_64 124/143
Running scriptlet: warewulf-ohpc-4.5.5-320.ohpc.3.1.x86_64 124/143
Installing : hwloc-ohpc-2.11.1-320.ohpc.1.1.x86_64 125/143
Upgrading : sssd-2.9.5-4.el9_5.4.x86_64 126/143
Upgrading : sssd-kcm-2.9.5-4.el9_5.4.x86_64 127/143
Running scriptlet: sssd-kcm-2.9.5-4.el9_5.4.x86_64 127/143
Cleanup : sssd-2.9.5-4.el9_5.1.x86_64 128/143
Cleanup : sssd-ipa-2.9.5-4.el9_5.1.x86_64 129/143
Cleanup : sssd-ad-2.9.5-4.el9_5.1.x86_64 130/143
Cleanup : sssd-ldap-2.9.5-4.el9_5.1.x86_64 131/143
Cleanup : sssd-proxy-2.9.5-4.el9_5.1.x86_64 132/143
Cleanup : sssd-common-pac-2.9.5-4.el9_5.1.x86_64 133/143
Cleanup : sssd-krb5-2.9.5-4.el9_5.1.x86_64 134/143
Running scriptlet: sssd-kcm-2.9.5-4.el9_5.1.x86_64 135/143
Cleanup : sssd-kcm-2.9.5-4.el9_5.1.x86_64 135/143
Running scriptlet: sssd-kcm-2.9.5-4.el9_5.1.x86_64 135/143
Cleanup : sssd-krb5-common-2.9.5-4.el9_5.1.x86_64 136/143
Running scriptlet: sssd-common-2.9.5-4.el9_5.1.x86_64 137/143
Cleanup : sssd-common-2.9.5-4.el9_5.1.x86_64 137/143
Running scriptlet: sssd-common-2.9.5-4.el9_5.1.x86_64 137/143
Running scriptlet: sssd-client-2.9.5-4.el9_5.1.x86_64 138/143
Cleanup : sssd-client-2.9.5-4.el9_5.1.x86_64 138/143
Cleanup : libsss_idmap-2.9.5-4.el9_5.1.x86_64 139/143
Cleanup : libsss_nss_idmap-2.9.5-4.el9_5.1.x86_64 140/143
Cleanup : libsss_sudo-2.9.5-4.el9_5.1.x86_64 141/143
Cleanup : libsss_certmap-2.9.5-4.el9_5.1.x86_64 142/143
Cleanup : libipa_hbac-2.9.5-4.el9_5.1.x86_64 143/143
Running scriptlet: sssd-common-2.9.5-4.el9_5.4.x86_64 143/143
Running scriptlet: emacs-common-1:27.2-10.el9_4.x86_64 143/143
Running scriptlet: emacs-nox-1:27.2-10.el9_4.x86_64 143/143
Running scriptlet: libipa_hbac-2.9.5-4.el9_5.1.x86_64 143/143
Verifying : cmake-ohpc-3.24.2-300.ohpc.1.6.x86_64 1/143
Verifying : conman-ohpc-0.3.1-300.ohpc.1.6.x86_64 2/143
Verifying : examples-ohpc-2.0-300.ohpc.1.6.x86_64 3/143
Verifying : losf-ohpc-0.56.0-300.ohpc.1.9.noarch 4/143
Verifying : hwloc-ohpc-2.11.1-320.ohpc.1.1.x86_64 5/143
Verifying : lmod-ohpc-8.7.53-320.ohpc.3.1.x86_64 6/143
Verifying : ohpc-base-3.2-320.ohpc.1.1.x86_64 7/143
Verifying : pdsh-ohpc-2.35-310.ohpc.4.1.x86_64 8/143
Verifying : warewulf-ohpc-4.5.5-320.ohpc.3.1.x86_64 9/143
Verifying : fish-3.3.1-3.el9.x86_64 10/143
Verifying : libunwind-1.6.2-1.el9.x86_64 11/143
Verifying : lua-filesystem-1.8.0-5.el9.x86_64 12/143
Verifying : rc-1.7.4-16.el9.x86_64 13/143
Verifying : screen-4.8.0-6.el9.x86_64 14/143
Verifying : libverto-libev-0.3.2-3.el9.x86_64 15/143
Verifying : yum-utils-4.3.0-16.el9.noarch 16/143
Verifying : rpcbind-1.2.6-7.el9.x86_64 17/143
Verifying : libev-4.33-5.el9.0.1.x86_64 18/143
Verifying : sssd-nfs-idmap-2.9.5-4.el9_5.4.x86_64 19/143
Verifying : tcl-1:8.6.10-7.el9.x86_64 20/143
Verifying : dhcp-server-12:4.4.2-19.b1.el9.x86_64 21/143
Verifying : dhcp-common-12:4.4.2-19.b1.el9.noarch 22/143
Verifying : gssproxy-0.8.4-7.el9.x86_64 23/143
Verifying : make-1:4.3-8.el9.x86_64 24/143
Verifying : nfs-utils-1:2.5.4-27.el9.x86_64 25/143
Verifying : libnfsidmap-1:2.5.4-27.el9.x86_64 26/143
Verifying : perl-Text-ParseWords-3.30-460.el9.noarch 27/143
Verifying : perl-Exporter-5.74-461.el9.noarch 28/143
Verifying : perl-Pod-Simple-1:3.42-4.el9.noarch 29/143
Verifying : perl-File-Path-2.18-4.el9.noarch 30/143
Verifying : perl-Pod-Perldoc-3.28.01-461.el9.noarch 31/143
Verifying : perl-Getopt-Long-1:2.52-4.el9.noarch 32/143
Verifying : perl-Pod-Usage-4:2.01-4.el9.noarch 33/143
Verifying : perl-IO-Socket-IP-0.41-5.el9.noarch 34/143
Verifying : perl-Time-Local-2:1.300-7.el9.noarch 35/143
Verifying : perl-libnet-3.13-4.el9.noarch 36/143
Verifying : libbabeltrace-1.5.8-10.el9.x86_64 37/143
Verifying : expect-5.45.4-16.el9.x86_64 38/143
Verifying : binutils-devel-2.35.2-54.el9.x86_64 39/143
Verifying : freeipmi-1.6.14-2.el9.x86_64 40/143
Verifying : lua-5.4.4-4.el9.x86_64 41/143
Verifying : lua-posix-35.0-8.el9.x86_64 42/143
Verifying : libxml2-devel-2.9.13-6.el9_4.x86_64 43/143
Verifying : perl-Carp-1.50-460.el9.noarch 44/143
Verifying : perl-podlators-1:4.14-460.el9.noarch 45/143
Verifying : perl-Term-Cap-1.17-460.el9.noarch 46/143
Verifying : perl-Term-ANSIColor-5.01-461.el9.noarch 47/143
Verifying : perl-HTTP-Tiny-0.076-462.el9.noarch 48/143
Verifying : perl-Digest-1.19-4.el9.noarch 49/143
Verifying : perl-URI-5.09-3.el9.noarch 50/143
Verifying : perl-constant-1.33-461.el9.noarch 51/143
Verifying : perl-Encode-4:3.08-462.el9.x86_64 52/143
Verifying : perl-Data-Dumper-2.174-462.el9.x86_64 53/143
Verifying : perl-Scalar-List-Utils-4:1.56-462.el9.x86_64 54/143
Verifying : perl-IO-Socket-SSL-2.073-2.el9.noarch 55/143
Verifying : perl-Storable-1:3.21-460.el9.x86_64 56/143
Verifying : perl-PathTools-3.78-461.el9.x86_64 57/143
Verifying : perl-Mozilla-CA-20200520-6.el9.noarch 58/143
Verifying : perl-Text-Tabs+Wrap-2013.0523-460.el9.noarch 59/143
Verifying : perl-Digest-MD5-2.58-4.el9.x86_64 60/143
Verifying : perl-Pod-Escapes-1:1.07-460.el9.noarch 61/143
Verifying : pcre2-utf32-10.40-6.el9.x86_64 62/143
Verifying : libipt-2.0.4-5.el9.x86_64 63/143
Verifying : perl-MIME-Base64-3.16-4.el9.x86_64 64/143
Verifying : source-highlight-3.1.9-12.el9.x86_64 65/143
Verifying : tftp-server-5.2-38.el9.x86_64 66/143
Verifying : tcsh-6.22.03-6.el9.x86_64 67/143
Verifying : xz-devel-5.2.5-8.el9_0.x86_64 68/143
Verifying : perl-File-Temp-1:0.231.100-4.el9.noarch 69/143
Verifying : cmake-filesystem-3.26.5-2.el9.x86_64 70/143
Verifying : net-snmp-libs-1:5.9.1-17.el9.x86_64 71/143
Verifying : ipxe-bootimgs-x86-20200823-9.git4bd064de.el9.noarch 72/143
Verifying : ipxe-bootimgs-aarch64-20200823-9.git4bd064de.el9.noarch 73/143
Verifying : OpenIPMI-libs-2.0.36-1.el9.x86_64 74/143
Verifying : OpenIPMI-2.0.36-1.el9.x86_64 75/143
Verifying : alsa-lib-1.2.12-1.el9.x86_64 76/143
Verifying : ipmitool-1.8.18-27.el9.x86_64 77/143
Verifying : perl-Socket-4:2.031-4.el9.x86_64 78/143
Verifying : perl-mro-1.23-481.el9.x86_64 79/143
Verifying : perl-libs-4:5.32.1-481.el9.x86_64 80/143
Verifying : perl-interpreter-4:5.32.1-481.el9.x86_64 81/143
Verifying : perl-POSIX-1.94-481.el9.x86_64 82/143
Verifying : perl-NDBM_File-1.15-481.el9.x86_64 83/143
Verifying : perl-IO-1.43-481.el9.x86_64 84/143
Verifying : perl-Fcntl-1.13-481.el9.x86_64 85/143
Verifying : perl-Errno-1.30-481.el9.x86_64 86/143
Verifying : perl-B-1.80-481.el9.x86_64 87/143
Verifying : perl-vars-1.05-481.el9.noarch 88/143
Verifying : perl-subs-1.03-481.el9.noarch 89/143
Verifying : perl-overloading-0.02-481.el9.noarch 90/143
Verifying : perl-overload-1.31-481.el9.noarch 91/143
Verifying : perl-if-0.60.800-481.el9.noarch 92/143
Verifying : perl-base-2.27-481.el9.noarch 93/143
Verifying : perl-Symbol-1.08-481.el9.noarch 94/143
Verifying : perl-SelectSaver-1.02-481.el9.noarch 95/143
Verifying : perl-IPC-Open3-1.21-481.el9.noarch 96/143
Verifying : perl-Getopt-Std-1.12-481.el9.noarch 97/143
Verifying : perl-FileHandle-2.03-481.el9.noarch 98/143
Verifying : perl-File-stat-1.09-481.el9.noarch 99/143
Verifying : perl-File-Basename-2.85-481.el9.noarch 100/143
Verifying : perl-Class-Struct-0.66-481.el9.noarch 101/143
Verifying : perl-AutoLoader-5.74-481.el9.noarch 102/143
Verifying : perl-Net-SSLeay-1.94-1.el9.x86_64 103/143
Verifying : boost-regex-1.75.0-8.el9.x86_64 104/143
Verifying : perl-parent-1:0.238-460.el9.noarch 105/143
Verifying : emacs-nox-1:27.2-10.el9_4.x86_64 106/143
Verifying : emacs-common-1:27.2-10.el9_4.x86_64 107/143
Verifying : gdb-headless-14.2-3.el9.x86_64 108/143
Verifying : gdb-14.2-3.el9.x86_64 109/143
Verifying : zlib-devel-1.2.11-40.el9.x86_64 110/143
Verifying : libstdc++-devel-11.5.0-2.el9.x86_64 111/143
Verifying : sssd-proxy-2.9.5-4.el9_5.4.x86_64 112/143
Verifying : sssd-proxy-2.9.5-4.el9_5.1.x86_64 113/143
Verifying : sssd-ldap-2.9.5-4.el9_5.4.x86_64 114/143
Verifying : sssd-ldap-2.9.5-4.el9_5.1.x86_64 115/143
Verifying : sssd-krb5-common-2.9.5-4.el9_5.4.x86_64 116/143
Verifying : sssd-krb5-common-2.9.5-4.el9_5.1.x86_64 117/143
Verifying : sssd-krb5-2.9.5-4.el9_5.4.x86_64 118/143
Verifying : sssd-krb5-2.9.5-4.el9_5.1.x86_64 119/143
Verifying : sssd-kcm-2.9.5-4.el9_5.4.x86_64 120/143
Verifying : sssd-kcm-2.9.5-4.el9_5.1.x86_64 121/143
Verifying : sssd-ipa-2.9.5-4.el9_5.4.x86_64 122/143
Verifying : sssd-ipa-2.9.5-4.el9_5.1.x86_64 123/143
Verifying : sssd-common-pac-2.9.5-4.el9_5.4.x86_64 124/143
Verifying : sssd-common-pac-2.9.5-4.el9_5.1.x86_64 125/143
Verifying : sssd-common-2.9.5-4.el9_5.4.x86_64 126/143
Verifying : sssd-common-2.9.5-4.el9_5.1.x86_64 127/143
Verifying : sssd-client-2.9.5-4.el9_5.4.x86_64 128/143
Verifying : sssd-client-2.9.5-4.el9_5.1.x86_64 129/143
Verifying : sssd-ad-2.9.5-4.el9_5.4.x86_64 130/143
Verifying : sssd-ad-2.9.5-4.el9_5.1.x86_64 131/143
Verifying : sssd-2.9.5-4.el9_5.4.x86_64 132/143
Verifying : sssd-2.9.5-4.el9_5.1.x86_64 133/143
Verifying : libsss_sudo-2.9.5-4.el9_5.4.x86_64 134/143
Verifying : libsss_sudo-2.9.5-4.el9_5.1.x86_64 135/143
Verifying : libsss_nss_idmap-2.9.5-4.el9_5.4.x86_64 136/143
Verifying : libsss_nss_idmap-2.9.5-4.el9_5.1.x86_64 137/143
Verifying : libsss_idmap-2.9.5-4.el9_5.4.x86_64 138/143
Verifying : libsss_idmap-2.9.5-4.el9_5.1.x86_64 139/143
Verifying : libsss_certmap-2.9.5-4.el9_5.4.x86_64 140/143
Verifying : libsss_certmap-2.9.5-4.el9_5.1.x86_64 141/143
Verifying : libipa_hbac-2.9.5-4.el9_5.4.x86_64 142/143
Verifying : libipa_hbac-2.9.5-4.el9_5.1.x86_64 143/143
Upgraded:
libipa_hbac-2.9.5-4.el9_5.4.x86_64 libsss_certmap-2.9.5-4.el9_5.4.x86_64 libsss_idmap-2.9.5-4.el9_5.4.x86_64 libsss_nss_idmap-2.9.5-4.el9_5.4.x86_64 libsss_sudo-2.9.5-4.el9_5.4.x86_64
sssd-2.9.5-4.el9_5.4.x86_64 sssd-ad-2.9.5-4.el9_5.4.x86_64 sssd-client-2.9.5-4.el9_5.4.x86_64 sssd-common-2.9.5-4.el9_5.4.x86_64 sssd-common-pac-2.9.5-4.el9_5.4.x86_64
sssd-ipa-2.9.5-4.el9_5.4.x86_64 sssd-kcm-2.9.5-4.el9_5.4.x86_64 sssd-krb5-2.9.5-4.el9_5.4.x86_64 sssd-krb5-common-2.9.5-4.el9_5.4.x86_64 sssd-ldap-2.9.5-4.el9_5.4.x86_64
sssd-proxy-2.9.5-4.el9_5.4.x86_64
Installed:
OpenIPMI-2.0.36-1.el9.x86_64 OpenIPMI-libs-2.0.36-1.el9.x86_64 alsa-lib-1.2.12-1.el9.x86_64 binutils-devel-2.35.2-54.el9.x86_64
boost-regex-1.75.0-8.el9.x86_64 cmake-filesystem-3.26.5-2.el9.x86_64 cmake-ohpc-3.24.2-300.ohpc.1.6.x86_64 conman-ohpc-0.3.1-300.ohpc.1.6.x86_64
dhcp-common-12:4.4.2-19.b1.el9.noarch dhcp-server-12:4.4.2-19.b1.el9.x86_64 emacs-common-1:27.2-10.el9_4.x86_64 emacs-nox-1:27.2-10.el9_4.x86_64
examples-ohpc-2.0-300.ohpc.1.6.x86_64 expect-5.45.4-16.el9.x86_64 fish-3.3.1-3.el9.x86_64 freeipmi-1.6.14-2.el9.x86_64
gdb-14.2-3.el9.x86_64 gdb-headless-14.2-3.el9.x86_64 gssproxy-0.8.4-7.el9.x86_64 hwloc-ohpc-2.11.1-320.ohpc.1.1.x86_64
ipmitool-1.8.18-27.el9.x86_64 ipxe-bootimgs-aarch64-20200823-9.git4bd064de.el9.noarch ipxe-bootimgs-x86-20200823-9.git4bd064de.el9.noarch libbabeltrace-1.5.8-10.el9.x86_64
libev-4.33-5.el9.0.1.x86_64 libipt-2.0.4-5.el9.x86_64 libnfsidmap-1:2.5.4-27.el9.x86_64 libstdc++-devel-11.5.0-2.el9.x86_64
libunwind-1.6.2-1.el9.x86_64 libverto-libev-0.3.2-3.el9.x86_64 libxml2-devel-2.9.13-6.el9_4.x86_64 lmod-ohpc-8.7.53-320.ohpc.3.1.x86_64
losf-ohpc-0.56.0-300.ohpc.1.9.noarch lua-5.4.4-4.el9.x86_64 lua-filesystem-1.8.0-5.el9.x86_64 lua-posix-35.0-8.el9.x86_64
make-1:4.3-8.el9.x86_64 net-snmp-libs-1:5.9.1-17.el9.x86_64 nfs-utils-1:2.5.4-27.el9.x86_64 ohpc-base-3.2-320.ohpc.1.1.x86_64
pcre2-utf32-10.40-6.el9.x86_64 pdsh-ohpc-2.35-310.ohpc.4.1.x86_64 perl-AutoLoader-5.74-481.el9.noarch perl-B-1.80-481.el9.x86_64
perl-Carp-1.50-460.el9.noarch perl-Class-Struct-0.66-481.el9.noarch perl-Data-Dumper-2.174-462.el9.x86_64 perl-Digest-1.19-4.el9.noarch
perl-Digest-MD5-2.58-4.el9.x86_64 perl-Encode-4:3.08-462.el9.x86_64 perl-Errno-1.30-481.el9.x86_64 perl-Exporter-5.74-461.el9.noarch
perl-Fcntl-1.13-481.el9.x86_64 perl-File-Basename-2.85-481.el9.noarch perl-File-Path-2.18-4.el9.noarch perl-File-Temp-1:0.231.100-4.el9.noarch
perl-File-stat-1.09-481.el9.noarch perl-FileHandle-2.03-481.el9.noarch perl-Getopt-Long-1:2.52-4.el9.noarch perl-Getopt-Std-1.12-481.el9.noarch
perl-HTTP-Tiny-0.076-462.el9.noarch perl-IO-1.43-481.el9.x86_64 perl-IO-Socket-IP-0.41-5.el9.noarch perl-IO-Socket-SSL-2.073-2.el9.noarch
perl-IPC-Open3-1.21-481.el9.noarch perl-MIME-Base64-3.16-4.el9.x86_64 perl-Mozilla-CA-20200520-6.el9.noarch perl-NDBM_File-1.15-481.el9.x86_64
perl-Net-SSLeay-1.94-1.el9.x86_64 perl-POSIX-1.94-481.el9.x86_64 perl-PathTools-3.78-461.el9.x86_64 perl-Pod-Escapes-1:1.07-460.el9.noarch
perl-Pod-Perldoc-3.28.01-461.el9.noarch perl-Pod-Simple-1:3.42-4.el9.noarch perl-Pod-Usage-4:2.01-4.el9.noarch perl-Scalar-List-Utils-4:1.56-462.el9.x86_64
perl-SelectSaver-1.02-481.el9.noarch perl-Socket-4:2.031-4.el9.x86_64 perl-Storable-1:3.21-460.el9.x86_64 perl-Symbol-1.08-481.el9.noarch
perl-Term-ANSIColor-5.01-461.el9.noarch perl-Term-Cap-1.17-460.el9.noarch perl-Text-ParseWords-3.30-460.el9.noarch perl-Text-Tabs+Wrap-2013.0523-460.el9.noarch
perl-Time-Local-2:1.300-7.el9.noarch perl-URI-5.09-3.el9.noarch perl-base-2.27-481.el9.noarch perl-constant-1.33-461.el9.noarch
perl-if-0.60.800-481.el9.noarch perl-interpreter-4:5.32.1-481.el9.x86_64 perl-libnet-3.13-4.el9.noarch perl-libs-4:5.32.1-481.el9.x86_64
perl-mro-1.23-481.el9.x86_64 perl-overload-1.31-481.el9.noarch perl-overloading-0.02-481.el9.noarch perl-parent-1:0.238-460.el9.noarch
perl-podlators-1:4.14-460.el9.noarch perl-subs-1.03-481.el9.noarch perl-vars-1.05-481.el9.noarch rc-1.7.4-16.el9.x86_64
rpcbind-1.2.6-7.el9.x86_64 screen-4.8.0-6.el9.x86_64 source-highlight-3.1.9-12.el9.x86_64 sssd-nfs-idmap-2.9.5-4.el9_5.4.x86_64
tcl-1:8.6.10-7.el9.x86_64 tcsh-6.22.03-6.el9.x86_64 tftp-server-5.2-38.el9.x86_64 warewulf-ohpc-4.5.5-320.ohpc.3.1.x86_64
xz-devel-5.2.5-8.el9_0.x86_64 yum-utils-4.3.0-16.el9.noarch zlib-devel-1.2.11-40.el9.x86_64
Complete!
4. Section 3 of the recipe.sh script
#!/usr/bin/bash
# -----------------------------------------------------------------------------------------
# Example Installation Script Template
# This convenience script encapsulates command-line instructions highlighted in
# an OpenHPC Install Guide that can be used as a starting point to perform a local
# cluster install beginning with bare-metal. Necessary inputs that describe local
# hardware characteristics, desired network settings, and other customizations
# are controlled via a companion input file that is used to initialize variables
# within this script.
# Please see the OpenHPC Install Guide(s) for more information regarding the
# procedure. Note that the section numbering included in this script refers to
# corresponding sections from the companion install guide.
# -----------------------------------------------------------------------------------------
inputFile=${OHPC_INPUT_LOCAL:-/input.local}
if [ ! -e ${inputFile} ];then
echo "Error: Unable to access local input file -> ${inputFile}"
exit 1
else
. ${inputFile} || { echo "Error sourcing ${inputFile}"; exit 1; }
Fi
# -------------------------------------------------------------
# Add resource management services on master node (Section 3.4)
# -------------------------------------------------------------
dnf -y install ohpc-slurm-server
Installs Slurm, a workload manager for HPC jobs, using dnf -y install to automate the process without requiring confirmation.
cp /etc/slurm/slurm.conf.ohpc /etc/slurm/slurm.conf
cp /etc/slurm/cgroup.conf.example /etc/slurm/cgroup.conf
Copies a default Slurm configuration file (slurm.conf.ohpc → slurm.conf) and a sample cgroup configuration file (cgroup.conf.example → cgroup.conf), which is used to limit and isolate CPU and memory resources via cgroups.
perl -pi -e "s/SlurmctldHost=\S+/SlurmctldHost=${sms_name}/" /etc/slurm/slurm.conf
Replaces the SlurmctldHost=… line in /etc/slurm/slurm.conf with SlurmctldHost=${sms_name}, where ${sms_name} is defined in the input.local configuration file. This variable represents the master node of the cluster.
Once this configuration is applied, the script generates the following output:
Last metadata expiration check: 0:55:27 ago on Fri 07 Feb 2025 04:11:23 AM EST.
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
ohpc-slurm-server x86_64 3.2-320.ohpc.1.1 OpenHPC-updates 7.0 k
Installing dependencies:
libjwt x86_64 1.12.1-11.el9 epel 29 k
mariadb-connector-c x86_64 3.2.6-1.el9_0 appstream 195 k
mariadb-connector-c-config noarch 3.2.6-1.el9_0 appstream 9.8 k
munge x86_64 0.5.13-13.el9 appstream 110 k
munge-libs x86_64 0.5.13-13.el9 appstream 20 k
pdsh-mod-slurm-ohpc x86_64 2.35-310.ohpc.4.1 OpenHPC-updates 13 k
pmix-ohpc x86_64 4.2.9-310.ohpc.3.1 OpenHPC-updates 3.6 M
slurm-devel-ohpc x86_64 23.11.10-320.ohpc.3.1 OpenHPC-updates 82 k
slurm-example-configs-ohpc x86_64 23.11.10-320.ohpc.3.1 OpenHPC-updates 247 k
slurm-ohpc x86_64 23.11.10-320.ohpc.3.1 OpenHPC-updates 18 M
slurm-perlapi-ohpc x86_64 23.11.10-320.ohpc.3.1 OpenHPC-updates 827 k
slurm-slurmctld-ohpc x86_64 23.11.10-320.ohpc.3.1 OpenHPC-updates 1.6 M
slurm-slurmdbd-ohpc x86_64 23.11.10-320.ohpc.3.1 OpenHPC-updates 873 k
Transaction Summary
==============================================================================================================================================================================================================
Install 14 Packages
Total download size: 25 M
Installed size: 93 M
Downloading Packages:
(1/14): ohpc-slurm-server-3.2-320.ohpc.1.1.x86_64.rpm 2.1 kB/s | 7.0 kB 00:03
(2/14): pdsh-mod-slurm-ohpc-2.35-310.ohpc.4.1.x86_64.rpm 3.8 kB/s | 13 kB 00:03
(3/14): slurm-devel-ohpc-23.11.10-320.ohpc.3.1.x86_64.rpm 145 kB/s | 82 kB 00:00
(4/14): slurm-example-configs-ohpc-23.11.10-320.ohpc.3.1.x86_64.rpm 323 kB/s | 247 kB 00:00
(5/14): slurm-perlapi-ohpc-23.11.10-320.ohpc.3.1.x86_64.rpm 803 kB/s | 827 kB 00:01
(6/14): pmix-ohpc-4.2.9-310.ohpc.3.1.x86_64.rpm 702 kB/s | 3.6 MB 00:05
(7/14): slurm-slurmdbd-ohpc-23.11.10-320.ohpc.3.1.x86_64.rpm 2.6 MB/s | 873 kB 00:00
(8/14): slurm-slurmctld-ohpc-23.11.10-320.ohpc.3.1.x86_64.rpm 3.8 MB/s | 1.6 MB 00:00
(9/14): libjwt-1.12.1-11.el9.x86_64.rpm 412 kB/s | 29 kB 00:00
(10/14): mariadb-connector-c-config-3.2.6-1.el9_0.noarch.rpm 224 kB/s | 9.8 kB 00:00
(11/14): mariadb-connector-c-3.2.6-1.el9_0.x86_64.rpm 2.1 MB/s | 195 kB 00:00
(12/14): munge-libs-0.5.13-13.el9.x86_64.rpm 766 kB/s | 20 kB 00:00
(13/14): munge-0.5.13-13.el9.x86_64.rpm 7.2 MB/s | 110 kB 00:00
(14/14): slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64.rpm 6.0 MB/s | 18 MB 00:02
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 1.7 MB/s | 25 MB 00:14
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : munge-libs-0.5.13-13.el9.x86_64 1/14
Running scriptlet: munge-0.5.13-13.el9.x86_64 2/14
Installing : munge-0.5.13-13.el9.x86_64 2/14
Running scriptlet: munge-0.5.13-13.el9.x86_64 2/14
Installing : slurm-example-configs-ohpc-23.11.10-320.ohpc.3.1.x86_64 3/14
Running scriptlet: slurm-example-configs-ohpc-23.11.10-320.ohpc.3.1.x86_64 3/14
Installing : mariadb-connector-c-config-3.2.6-1.el9_0.noarch 4/14
Installing : mariadb-connector-c-3.2.6-1.el9_0.x86_64 5/14
Installing : libjwt-1.12.1-11.el9.x86_64 6/14
Installing : pmix-ohpc-4.2.9-310.ohpc.3.1.x86_64 7/14
Running scriptlet: slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64 8/14
Installing : slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64 8/14
Running scriptlet: slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64 8/14
Installing : pdsh-mod-slurm-ohpc-2.35-310.ohpc.4.1.x86_64 9/14
Installing : slurm-devel-ohpc-23.11.10-320.ohpc.3.1.x86_64 10/14
Installing : slurm-perlapi-ohpc-23.11.10-320.ohpc.3.1.x86_64 11/14
Installing : slurm-slurmctld-ohpc-23.11.10-320.ohpc.3.1.x86_64 12/14
Running scriptlet: slurm-slurmctld-ohpc-23.11.10-320.ohpc.3.1.x86_64 12/14
Installing : slurm-slurmdbd-ohpc-23.11.10-320.ohpc.3.1.x86_64 13/14
Running scriptlet: slurm-slurmdbd-ohpc-23.11.10-320.ohpc.3.1.x86_64 13/14
Installing : ohpc-slurm-server-3.2-320.ohpc.1.1.x86_64 14/14
Running scriptlet: ohpc-slurm-server-3.2-320.ohpc.1.1.x86_64 14/14
Verifying : ohpc-slurm-server-3.2-320.ohpc.1.1.x86_64 1/14
Verifying : pdsh-mod-slurm-ohpc-2.35-310.ohpc.4.1.x86_64 2/14
Verifying : pmix-ohpc-4.2.9-310.ohpc.3.1.x86_64 3/14
Verifying : slurm-devel-ohpc-23.11.10-320.ohpc.3.1.x86_64 4/14
Verifying : slurm-example-configs-ohpc-23.11.10-320.ohpc.3.1.x86_64 5/14
Verifying : slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64 6/14
Verifying : slurm-perlapi-ohpc-23.11.10-320.ohpc.3.1.x86_64 7/14
Verifying : slurm-slurmctld-ohpc-23.11.10-320.ohpc.3.1.x86_64 8/14
Verifying : slurm-slurmdbd-ohpc-23.11.10-320.ohpc.3.1.x86_64 9/14
Verifying : libjwt-1.12.1-11.el9.x86_64 10/14
Verifying : mariadb-connector-c-3.2.6-1.el9_0.x86_64 11/14
Verifying : mariadb-connector-c-config-3.2.6-1.el9_0.noarch 12/14
Verifying : munge-libs-0.5.13-13.el9.x86_64 13/14
Verifying : munge-0.5.13-13.el9.x86_64 14/14
Installed:
libjwt-1.12.1-11.el9.x86_64 mariadb-connector-c-3.2.6-1.el9_0.x86_64 mariadb-connector-c-config-3.2.6-1.el9_0.noarch munge-0.5.13-13.el9.x86_64
munge-libs-0.5.13-13.el9.x86_64 ohpc-slurm-server-3.2-320.ohpc.1.1.x86_64 pdsh-mod-slurm-ohpc-2.35-310.ohpc.4.1.x86_64 pmix-ohpc-4.2.9-310.ohpc.3.1.x86_64
slurm-devel-ohpc-23.11.10-320.ohpc.3.1.x86_64 slurm-example-configs-ohpc-23.11.10-320.ohpc.3.1.x86_64 slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64 slurm-perlapi-ohpc-23.11.10-320.ohpc.3.1.x86_64
slurm-slurmctld-ohpc-23.11.10-320.ohpc.3.1.x86_64 slurm-slurmdbd-ohpc-23.11.10-320.ohpc.3.1.x86_64
Complete!
Verification : Confirm that the SlurmctldHost=… line in /etc/slurm/slurm.conf has been correctly replaced with SlurmctldHost=${sms_name}.
Cd /etc/slurm/
Nano slurm.conf
# Example slurm.conf file. Please run configurator.html
# (in doc/html) to build a configuration file customized
# for your environment.
#
# slurm.conf file generated by configurator.html.
# Put this file on all nodes of your cluster.
# See the slurm.conf man page for more information.
ClusterName=cluster
SlurmctldHost=master-ohpc
#SlurmctldHost=
#DisableRootJobs=NO
#EnforcePartLimits=NO
#Epilog=
#EpilogSlurmctld=
#FirstJobId=1
5. Section 4 of the recipe.sh script
#!/usr/bin/bash
# -----------------------------------------------------------------------------------------
# Example Installation Script Template
# This convenience script encapsulates command-line instructions highlighted in
# an OpenHPC Install Guide that can be used as a starting point to perform a local
# cluster install beginning with bare-metal. Necessary inputs that describe local
# hardware characteristics, desired network settings, and other customizations
# are controlled via a companion input file that is used to initialize variables
# within this script.
# Please see the OpenHPC Install Guide(s) for more information regarding the
# procedure. Note that the section numbering included in this script refers to
# corresponding sections from the companion install guide.
# -----------------------------------------------------------------------------------------
inputFile=${OHPC_INPUT_LOCAL:-/input.local}
if [ ! -e ${inputFile} ];then
echo "Error: Unable to access local input file -> ${inputFile}"
exit 1
else
. ${inputFile} || { echo "Error sourcing ${inputFile}"; exit 1; }
fi
# ----------------------------------------
# Update node configuration for slurm.conf
# ----------------------------------------
if [[ ${update_slurm_nodeconfig} -eq 1 ]];then (if [[ ${update_slurm_nodeconfig} -eq 1 ]]; then
Check if the variable update_slurm_nodeconfig is set to 1 → this indicates that the node configuration in the input.local file needs to be updated.
perl -pi -e "s/^NodeName=.+$/#/" /etc/slurm/slurm.conf
Replace all lines starting with NodeName= with a comment (#).
perl -pi -e "s/ Nodes=c\S+ / Nodes=${compute_prefix}[1-${num_computes}] /" /etc/slurm/slurm.conf
Modify the Slurm node configuration to match the prefixes defined in compute_prefix.
echo -e ${slurm_node_config} >> /etc/slurm/slurm.conf
Fi
Add the value of the slurm_node_config variable to the bottom of the slurm.conf configuration file.
The script should run silently without generating any output, but it’s important to verify that the modifications have been properly applied to the relevant file.
Verifications
Cd /etc/slurm/
Nano slurm.conf
To verify this :echo -e ${slurm_node_config} >> /etc/slurm/slurm.conf
# Enable configless option
SlurmctldParameters=enable_configless
# Setup interactive jobs for salloc
LaunchParameters=use_interactive_step
compute[1-2] Sockets=2 CoresPerSocket=12 ThreadsPerCore=2
To verify this :perl -pi -e "s/ Nodes=c\S+ / Nodes=${compute_prefix}[1-${num_computes}] /" /etc/slurm/slurm.conf
PartitionName=normal Nodes=compute[1-2] Default=YES MaxTime=24:00:00 State=UP OverSubscribe=EXCLUSIVE
# Enable configless option
SlurmctldParameters=enable_configless
To verify this :perl -pi -e "s/^NodeName=.+$/#/" /etc/slurm/slurm.conf
# COMPUTE NODES
#NodeName=linux[1-32] CPUs=1 State=UNKNOWN
#PartitionName=debug Nodes=ALL Default=YES MaxTime=INFINITE State=UP
6. Section 5 of the recipe.sh script
#!/usr/bin/bash
# -----------------------------------------------------------------------------------------
# Example Installation Script Template
# This convenience script encapsulates command-line instructions highlighted in
# an OpenHPC Install Guide that can be used as a starting point to perform a local
# cluster install beginning with bare-metal. Necessary inputs that describe local
# hardware characteristics, desired network settings, and other customizations
# are controlled via a companion input file that is used to initialize variables
# within this script.
# Please see the OpenHPC Install Guide(s) for more information regarding the
# procedure. Note that the section numbering included in this script refers to
# corresponding sections from the companion install guide.
# -----------------------------------------------------------------------------------------
inputFile=${OHPC_INPUT_LOCAL:-/input.local}
if [ ! -e ${inputFile} ];then
echo "Error: Unable to access local input file -> ${inputFile}"
exit 1
else
. ${inputFile} || { echo "Error sourcing ${inputFile}"; exit 1; }
fi
# -----------------------------------------------------------------------
# Optionally add InfiniBand support services on master node (Section 3.5)
# -----------------------------------------------------------------------
if [[ ${enable_ib} -eq 1 ]];then
dnf -y groupinstall "InfiniBand Support"
udevadm trigger --type=devices --action=add
systemctl restart rdma-load-modules@infiniband.service
fi
# Optionally enable opensm subnet manager
if [[ ${enable_opensm} -eq 1 ]];then
dnf -y install opensm
systemctl enable opensm
systemctl start opensm
fi
# Optionally enable IPoIB interface on SMS
if [[ ${enable_ipoib} -eq 1 ]];then
# Enable ib0
cp /opt/ohpc/pub/examples/network/centos/ifcfg-ib0 /etc/sysconfig/network-scripts
perl -pi -e "s/master_ipoib/${sms_ipoib}/" /etc/sysconfig/network-scripts/ifcfg-ib0
perl -pi -e "s/ipoib_netmask/${ipoib_netmask}/" /etc/sysconfig/network-scripts/ifcfg-ib0
echo "[main]" > /etc/NetworkManager/conf.d/90-dns-none.conf
echo "dns=none" >> /etc/NetworkManager/conf.d/90-dns-none.conf
systemctl start NetworkManager
fi
# ----------------------------------------------------------------------
# Optionally add Omni-Path support services on master node (Section 3.6)
# ----------------------------------------------------------------------
if [[ ${enable_opa} -eq 1 ]];then
dnf -y install opa-basic-tools
fi
# Optionally enable OPA fabric manager
if [[ ${enable_opafm} -eq 1 ]];then
dnf -y install opa-fm
systemctl enable opafm
systemctl start opafm
fi
This section conditionally enables support for high-performance networking on the master node, including InfiniBand, IP over InfiniBand (IPoIB), Omni-Path Architecture (OPA), and the associated subnet/fabric managers, based on configuration variables.
[root@master-ohpc /]# Chmod +x ./recipe5.sh
[root@master-ohpc /]# ./recipe5.sh
The script recipe5.sh is made executable with chmod +x, then executed without producing any output, indicating that it likely ran successfully and silently.
7. Section 6 of the recipe.sh script
#!/usr/bin/bash
# -----------------------------------------------------------------------------------------
# Example Installation Script Template
# This convenience script encapsulates command-line instructions highlighted in
# an OpenHPC Install Guide that can be used as a starting point to perform a local
# cluster install beginning with bare-metal. Necessary inputs that describe local
# hardware characteristics, desired network settings, and other customizations
# are controlled via a companion input file that is used to initialize variables
# within this script.
# Please see the OpenHPC Install Guide(s) for more information regarding the
# procedure. Note that the section numbering included in this script refers to
# corresponding sections from the companion install guide.
# -----------------------------------------------------------------------------------------
inputFile=${OHPC_INPUT_LOCAL:-/input.local}
if [ ! -e ${inputFile} ];then
echo "Error: Unable to access local input file -> ${inputFile}"
exit 1
else
. ${inputFile} || { echo "Error sourcing ${inputFile}"; exit 1; }
fi
# -----------------------------------------------------------
# Complete basic Warewulf setup for master node (Section 3.7)
# -----------------------------------------------------------
ip link set dev ${sms_eth_internal} up
ip address add ${sms_ip}/${internal_netmask} broadcast + dev ${sms_eth_internal}
perl -pi -e "s/ipaddr:.*/ipaddr: ${sms_ip}/" /etc/warewulf/warewulf.conf
perl -pi -e "s/netmask:.*/netmask: ${internal_netmask}/" /etc/warewulf/warewulf.conf
perl -pi -e "s/network:.*/network: ${internal_network}/" /etc/warewulf/warewulf.conf
perl -pi -e 's/template:.*/template: static/' /etc/warewulf/warewulf.conf
perl -pi -e "s/range start:.*/range start: ${c_ip[0]}/" /etc/warewulf/warewulf.conf
perl -pi -e "s/range end:.*/range end: ${c_ip[$((num_computes-1))]}/" /etc/warewulf/warewulf.conf
perl -pi -e "s/mount: false/mount: true/" /etc/warewulf/warewulf.conf
wwctl profile set -y default --netmask=${internal_netmask}
wwctl profile set -y default --gateway=${ipv4_gateway}
wwctl profile set -y default --netdev=default --nettagadd=DNS=${dns_servers}
perl -pi -e "s/warewulf/${sms_name}/" /srv/warewulf/overlays/host/rootfs/etc/hosts.ww
perl -pi -e "s/warewulf/${sms_name}/" /srv/warewulf/overlays/generic/rootfs/etc/hosts.ww
echo "next-server ${sms_ip};" >> /srv/warewulf/overlays/host/rootfs/etc/dhcpd.conf.ww
systemctl enable --now warewulfd
wwctl configure --all
bash /etc/profile.d/ssh_setup.sh
# Update /etc/hosts template to have ${hostname}.localdomain as the first host entry
sed -e 's_\({{$node.Id.Get}}{{end}}\)_{{$node.Id.Get}}.localdomain \1_g' -i /srv/warewulf/overlays/host/rootfs/etc/hosts.ww
this script sets up the internal network interface, updates the Warewulf configuration to reflect the cluster topology and networking, and prepares services for provisioning compute nodes.
Step-by-step summary of the script
Configures the internal network interface of the master server (sms_eth_internal), assigning it an IP address, netmask, and bringing it up.
Modifies the warewulf.conf file:
Sets the IP address, netmask, network, and static network template
Configures the IP range for compute nodes (range start / end)
Enables file system mounting
Configures the default Warewulf profile with:
The netmask
The gateway address
The default network device and DNS servers
Customizes the hosts.ww and dhcpd.conf.ww files to reflect the master server’s name (sms_name) and add the next-server directive in the DHCP config.
Enables and configures the warewulfd service:
Starts and enables the Warewulf daemon
Applies configuration with wwctl configure –all
Runs the default SSH configuration script (ssh_setup.sh)
Updates the /etc/hosts template for the nodes to include hostname.localdomain as the first host entry.
Verifications
To verify that the configuration was applied correctly, open the file /etc/warewulf/warewulf.conf and check that the values match the expected settings:
GNU nano 5.4
WW_INTERNAL: 45
ipaddr: 192.168.70.41
netmask: 255.255.255.0
gateway: 192.168.70.1
nameserv:
port: 9873
secure: false
update_interval: 60
autobuild_overlays: true
host_overlay: true
base: static
datastore: /usr/share
grubboot: false
dhcp:
enabled: true
template: static
range_start: 192.168.70.51
range_end: 192.168.70.52
systemd_name: dhcpd
tftp:
enabled: true
tftproot: /srv/tftpboot
systemd_name: tftp
ipxe:
"00:00": undionly.kpxe
"00:07": ipxe-snponly-x86_64.efi
"00:09": ipxe-snponly-x86_64.efi
"00:0B": arm64-efi/snponly.efi
nfs:
enabled: true
export_paths:
- path: /home
export_options: rw,sync
mount_options: defaults
mount: true
- path: /opt
export_options: ro,sync,no_root_squash
mount_options: defaults
mount: true
systemd_name: nfs-server
ssh:
key_types:
- rsa
- dsa
- ecdsa
- ed25519
container_mounts:
- source: /etc/resolv.conf
- source: /etc/localtime
readonly: true
paths:
bindir: /usr/bin
sysconfdir: /etc
To verify that the DHCP configuration has been applied correctly, open the dhcpd.conf.ww file and check the relevant settings:
# Pure BIOS clients will get iPXE configuration
filename "http://${s.ipaddr}:${s.Warewulf.Port}/ipxe/${mac:hexhyp}";
# EFI clients will get shim and grub instead
filename "warewulf/shim.efi";
} elsif substring (option vendor-class-identifier, 0, 10) = "HTTPClient" {
filename "http://${s.ipaddr}:${s.Warewulf.Port}/efiboot.img";
} else {
# iPXE vendor-class and option 175 = "iPXE" {
filename "http://${s.ipaddr}:${s.Warewulf.Port}/ipxe/${mac:hexhyp}?assetkey=${asset}&u
} else {
{{range $type,$name := $.Tftp.IpxeBinaries }}
if option architecture-type = {{ $type }} {
filename "/warewulf/{{ basename $name }}";
}
{{end}}{{/* range IpxeBinaries */}}
{{end}}{{/* BootMethod */}}
subnet {{$.Network}} netmask {{$.Netmask}} {
max-lease-time 120;
{{- if ne .Dhcp.Template "static" }}
range {{$.Dhcp.RangeStart}} {{$.Dhcp.RangeEnd}};
next-server {{.Ipaddr}};
{{end}}
}
{{- if eq .Dhcp.Template "static" }}
{{- range $nodes := $.AllNodes}}
{{- range $devs := $.netDevs }}
host {{$nodes.Id.Get}}-{{$netname}}
{{- if $netdevs.Hwaddr.Defined}}
hardware ethernet {{$netdevs.Hwaddr.Get}};
{{- end}}
{{- if $netdevs.Ipaddr.Defined}}
fixed-address {{$netdevs.Ipaddr.Get}};
{{- end }}
{{- if $netdevs.Primary.GetB}}
option host-name "{{$nodes.Id.Get}}";
{{- end }}
}
{{end }}{{/* range NetDevs */}}
{{end }}{{/* range AllNodes */}}
{{end }}{{/* if static */}}
}
{{abort}}
}
{{- end}}{{/* dhcp enabled */}}
{{- end}}{{/* primary */}}
next-server 192.168.70.41;
Review the file /srv/warewulf/overlays/generic/rootfs/etc/hosts.ww to ensure that hostnames and IP mappings have been properly configured for the compute nodes:
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
# Warewulf Server
{{$.Ipaddr}} {{$.BuildHost}} master-ohpc
{{- range $node := $.AllNodes}} {{/* for each node */}}
{{- range $netname,$netdevs := $node.NetDevs}} {{/* for each network device on the node */}}
{{- if $netdevs.OnThisNetwork $.Network}} {{/* only if this device has an IP address on this network */}}
{{$netdevs.Ipaddr.Get}} {{$node.Id.Get}}-{{$netname}} # {{$node.Comment.Print}} if this is the primary */}}
8. Section 7 of the recipe.sh script
#!/usr/bin/bash
# -----------------------------------------------------------------------------------------
# Example Installation Script Template
# This convenience script encapsulates command-line instructions highlighted in
# an OpenHPC Install Guide that can be used as a starting point to perform a local
# cluster install beginning with bare-metal. Necessary inputs that describe local
# hardware characteristics, desired network settings, and other customizations
# are controlled via a companion input file that is used to initialize variables
# within this script.
# Please see the OpenHPC Install Guide(s) for more information regarding the
# procedure. Note that the section numbering included in this script refers to
# corresponding sections from the companion install guide.
# -----------------------------------------------------------------------------------------
inputFile=${OHPC_INPUT_LOCAL:-/input.local}
if [ ! -e ${inputFile} ];then
echo "Error: Unable to access local input file -> ${inputFile}"
exit 1
else
. ${inputFile} || { echo "Error sourcing ${inputFile}"; exit 1; }
fi
# -------------------------------------------------
# Create compute image for Warewulf (Section 3.8.1)
# -------------------------------------------------
This section explains how to create a compute image for Warewulf, a cluster management tool used to install and manage compute nodes. This image is used to configure the compute nodes within the cluster.
wwctl container import docker://ghcr.io/warewulf/warewulf-rockylinux:9 rocky-9.4 –syncuser
This command uses wwctl (Warewulf’s command-line tool) to import a preconfigured Docker image of Rocky Linux 9.4 from the ghcr.io/warewulf registry. The –syncuser flag ensures that users and groups in the Docker image are synchronized with those on the host system.
wwctl container exec rocky-9.4 /bin/bash <<- EOF
dnf -y install http://repos.openhpc.community/OpenHPC/3/EL_9/x86_64/ohpc-release-3-1.el9.x86_64.rpm
dnf -y update
EOF
The wwctl container exec command runs a command inside the Rocky Linux 9.4 Docker container that we previously imported.
The commands executed inside the container are:
- Installation of ohpc-release: This installs the ohpc-release package from the OpenHPC repository for Rocky Linux 9.4. It configures the system to enable the installation of OpenHPC-specific software and resources.
- System update: The dnf -y update command updates all packages in the container to their latest available versions.
export CHROOT=/srv/warewulf/chroots/rocky-9.4/rootfs
This line defines an environment variable CHROOT that points to the directory containing the filesystem of the Rocky Linux 9.4 compute image we just created. This directory is essential for integrating the compute image into the Warewulf system, as it represents the environment in which the compute nodes will be deployed.
After running the script, the output is displayed as follows:
[root@master-ohpc /]# ./recipe7.sh
Copying blob 4f4fb700ef54 done
Copying blob 0046cb37027b [==============================>---------] 436.2MiB / 611.4MiB | 20.6 MiB/s
Copying blob cc311bfc628a done
Copying blob 30e5d205dca1 done
Copying blob 3442e16c7069 done
Verifications
Container Import Verification
Ensure that the rocky-9.4 container has been successfully imported. You can verify this by checking whether it appears in the list using the appropriate command. If the rocky-9.4 container is listed, it means the import was successful.
Verify the installation of the ohpc-release package: After running the script, the ohpc-release package should be installed inside the container. To confirm this, access the container and check the package status.
[root@master-ohpc /]# wwctl container list
ERROR : lstat /srv/warewulf/chroots/rocky-9.4/rootfs/proc/3089049: no such file or directory
CONTAINER NAME NODES KERNEL VERSION CREATION TIME MODIFICATION TIME SIZE
rocky-9.4 0 5.14.0-503.19.1.el9_5.x86_64 10 Feb 25 10:27 EST 10 Feb 25 08:17 EST 1.7 GiB
[root@master-ohpc /]# nano recipe7.sh
[root@master-ohpc /]# wwctl container exec rocky-9.4 /bin/bash
[rocky-9.4] warewulf# rpm -qa | grep ohpc-release
ohpc-release-3.1-1.el9.x86_64
[rocky-9.4] warewulf#
- Once inside, verify that the package is properly installed. (If the package is present, it confirms that the initial dnf command was executed successfully.)
[rocky-9.4] Warewulf> rpm -qa | grep ohpc-release
ohpc-release-3-1.el9.x86_64
- Check for system updates: After running dnf -y update, you need to ensure that the system has been properly updated. To do this, check for any remaining available updates:
[rocky-9.4] Warewulf> dnf check-update
OpenHPC-3 - Base 321 kB/s | 3.6 MB 00:11
OpenHPC-3 - Updates 860 kB/s | 5.0 MB 00:05
Extra Packages for Enterprise Linux 9 - x86_64 0.6 kB/s | 2.3 kB 00:04
Extra Packages for Enterprise Linux 9 openh264 (From Ci 2.0 kB/s | 2.5 kB 00:01
Rocky Linux 9 - BaseOS 5.2 MB/s | 2.0 MB 00:00
Rocky Linux 9 - AppStream 5.0 MB/s | 8.7 MB 00:01
Rocky Linux 9 - Extras 30 kB/s | 18 kB 00:00
[rocky-9.4] Warewulf>
- Verifying the chroot directory : The script does not directly modify the chroot directory, but you should check that the path to the chroot exists and contains the necessary files. Make sure the directory exists and has a structure similar to a typical Linux filesystem. If the directory is empty or incomplete, it may indicate that the container was not initialized correctly.
[root@master-ohpc /]# ls -l /srv/warewulf/chroots/rocky-9.4/rootfs/
total 16
lrwxrwxrwx. 1 root root 7 Nov 2 21:29 bin -> usr/bin
dr-xr-xr-x. 2 root root 4096 Feb 10 08:17 boot
drwxr-xr-x. 2 root root 18 Feb 10 01:01 dev
drwxrwxrwx. 63 root root 4096 Feb 10 08:17 etc
drwxr-xr-x. 2 root root 6 Nov 2 21:29 home
lrwxrwxrwx. 1 root root 7 Nov 2 21:29 lib -> usr/lib
lrwxrwxrwx. 1 root root 9 Nov 2 21:29 lib64 -> usr/lib64
drwxr-xr-x. 2 root root 6 Nov 2 21:29 media
drwxr-xr-x. 2 root root 6 Nov 2 21:29 mnt
drwxr-xr-x. 2 root root 6 Nov 2 21:29 opt
drwxr-xr-x. 2 root root 6 Jan 8 14:47 proc
dr-xr-x---. 3 root root 124 Feb 10 10:05 root
drwxr-xr-x. 14 root root 188 Feb 10 08:17 run
lrwxrwxrwx. 1 root root 8 Nov 2 21:29 sbin -> usr/sbin
drwxr-xr-x. 2 root root 6 Nov 2 21:29 srv
drwxr-xr-x. 2 root root 6 Nov 18 14:46 sys
drwxrwxrwt. 2 root root 144 Nov 18 14:47 tmp
drwxr-xr-x. 12 root root 4096 Nov 18 14:47 usr
drwxr-xr-x. 18 root root 238 Feb 11 03:29 var
- Verifying the overall integrity of the container : You can also enter the container directly to ensure everything is working properly (for example, by running a simple command like uname -a to check the system state). If you see the kernel output and system information, it confirms that the container is functioning normally.
[root@master-ohpc /]# wwctl container exec rocky-9.4 /bin/bash
[rocky-9.4] Warewulf> uname -a
Linux rocky-9.4 5.14.0-503.14.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Nov 15 12:04:32 UT
C 2024 x86_64 x86_64 x86_64 GNU/Linux
9. Section 8 of the recipe.sh script
#!/usr/bin/bash
# -----------------------------------------------------------------------------------------
# Example Installation Script Template
# This convenience script encapsulates command-line instructions highlighted in
# an OpenHPC Install Guide that can be used as a starting point to perform a local
# cluster install beginning with bare-metal. Necessary inputs that describe local
# hardware characteristics, desired network settings, and other customizations
# are controlled via a companion input file that is used to initialize variables
# within this script.
# Please see the OpenHPC Install Guide(s) for more information regarding the
# procedure. Note that the section numbering included in this script refers to
# corresponding sections from the companion install guide.
# -----------------------------------------------------------------------------------------
inputFile=${OHPC_INPUT_LOCAL:-/input.local}
if [ ! -e ${inputFile} ];then
echo "Error: Unable to access local input file -> ${inputFile}"
exit 1
else
. ${inputFile} || { echo "Error sourcing ${inputFile}"; exit 1; }
Fi
# ------------------------------------------------------------
# Add OpenHPC base components to compute image (Section 3.8.2)
# ------------------------------------------------------------
wwctl container exec rocky-9.4 /bin/bash <<- EOF
dnf -y install ohpc-base-compute
EOF
# Add SLURM and other components to compute instance
wwctl container exec rocky-9.4 /bin/bash <<- EOF
# Add Slurm client support meta-package and enable munge and slurmd
dnf -y install ohpc-slurm-client
systemctl enable munge
systemctl enable slurmd
# Add Network Time Protocol (NTP) support
dnf -y install chrony
# Include modules user environment
dnf -y install lmod-ohpc
EOF
if [[ ${enable_intel_packages} -eq 1 ]];then
mkdir /opt/intel
echo "/opt/intel *(ro,no_subtree_check,fsid=12)" >> /etc/exports
echo "${sms_ip}:/opt/intel /opt/intel nfs nfsvers=4,nodev 0 0" >> $CHROOT/etc/fstab
fi
# Update basic slurm configuration if additional computes defined
if [ ${num_computes} -gt 4 ];then
perl -pi -e "s/^NodeName=(\S+)/NodeName=${compute_prefix}[1-${num_computes}]/" /etc/slurm/slurm.conf
perl -pi -e "s/^PartitionName=normal Nodes=(\S+)/PartitionName=normal Nodes=${compute_prefix}[1-${num_computes}]/" /etc/slurm/slurm.conf
fi
Analysis of the script output
Objective of the script:
The main goal of this script is to automate the installation and configuration of the necessary components for an HPC cluster, including OpenHPC tools, Slurm, and other required dependencies.
Installation Details:
- Repository Setup:
The script begins by updating and importing the following repositories:
- OpenHPC-3 – Base
- OpenHPC-3 – Updates
- EPEL (Extra Packages for Enterprise Linux 9)
- Rocky Linux 9 – BaseOS, AppStream, and Extras
These repositories are essential for retrieving the latest versions of required packages.
- Installation of OpenHPC Components:
The following packages are installed by the script:
- ohpc-base-compute: Core OpenHPC components
- ohpc-slurm-client: Slurm client for job management
- chrony: Time synchronization tool
- lmod-ohpc: Environment module system for user environments
- Service Configuration
After the installation, the script enables and configures several key services:
- munge (systemctl enable munge): Authentication service used by Slurm
- slurmd (systemctl enable slurmd): Slurm compute node daemon
- chronyd (systemctl enable chronyd): NTP time synchronization service
- Installation of Additional Dependencies
The script also installs various additional libraries and tools, including:
- Graphics libraries: cairo, harfbuzz, freetype
- Development tools: gcc, perl, libxml2
- Compression and file system utilities: brotli, squashfs, LZO
- Additional HPC modules: libibverbs, librdmacm (for Infiniband support)
Summary of Installed Packages
In total, the script installed 154 packages, including essential libraries and cluster management tools. Key installed packages include:
- ohpc-base-compute
- ohpc-slurm-client
- chrony
- lmod-ohpc
- singularity-ce
- perl-libs, perl-IO, perl-Net-SSLeay
- python3.11
- libX11, libXext, libXrender
- libselinux-devel, libsepol-devel
Conclusion
The execution of recipe8.sh completed successfully. The OpenHPC environment is now properly configured with all required components to run HPC workloads.
The output
[root@master-ohpc /]# ./recipe8.sh
OpenHPC-3 - Base 1.1 MB/s | 3.6 MB 00:03
OpenHPC-3 - Updates 2.0 MB/s | 5.0 MB 00:02
Extra Packages for Enterprise Linux 9 - x86_64 10 MB/s | 23 MB 00:02
Extra Packages for Enterprise Linux 9 openh264 (From Cisco) - x86_64 153 B/s | 2.5 kB 00:16
Rocky Linux 9 - BaseOS 2.6 MB/s | 2.3 MB 00:00
Rocky Linux 9 - AppStream 16 MB/s | 8.7 MB 00:00
Rocky Linux 9 - Extras 47 kB/s | 16 kB 00:00
Dependencies resolved.
===========================================================================================================================================================================================================================================
Package Architecture Version Repository Size
===========================================================================================================================================================================================================================================
Installing:
ohpc-base-compute x86_64 3.2-320.ohpc.1.1 OpenHPC-updates 7.2 k
Installing dependencies:
brotli x86_64 1.0.9-7.el9_5 appstream 311 k
brotli-devel x86_64 1.0.9-7.el9_5 appstream 30 k
bzip2-devel x86_64 1.0.8-10.el9_5 appstream 213 k
cairo x86_64 1.17.4-7.el9 appstream 659 k
cairo-devel x86_64 1.17.4-7.el9 appstream 190 k
cmake-filesystem x86_64 3.26.5-2.el9 appstream 11 k
conmon x86_64 3:2.1.12-1.el9 appstream 51 k
criu x86_64 3.19-1.el9 appstream 559 k
crun x86_64 1.16.1-1.el9 appstream 223 k
cryptsetup x86_64 2.7.2-3.el9_5 baseos 310 k
dejavu-sans-fonts noarch 2.37-18.el9 baseos 1.3 M
fontconfig x86_64 2.14.0-2.el9_1 appstream 274 k
fontconfig-devel x86_64 2.14.0-2.el9_1 appstream 127 k
fonts-filesystem noarch 1:2.0.5-7.el9.1 baseos 9.0 k
freetype x86_64 2.10.4-9.el9 baseos 387 k
freetype-devel x86_64 2.10.4-9.el9 appstream 1.1 M
fuse x86_64 2.9.9-16.el9 baseos 78 k
fuse-common x86_64 3.10.2-9.el9 baseos 7.3 k
fuse3 x86_64 3.10.2-9.el9 appstream 53 k
fuse3-libs x86_64 3.10.2-9.el9 appstream 91 k
gettext x86_64 0.21-8.el9 baseos 1.1 M
gettext-libs x86_64 0.21-8.el9 baseos 302 k
glib2-devel x86_64 2.68.4-14.el9_4.1 appstream 471 k
graphite2 x86_64 1.3.14-9.el9 baseos 94 k
graphite2-devel x86_64 1.3.14-9.el9 appstream 21 k
groff-base x86_64 1.22.4-10.el9 baseos 1.0 M
harfbuzz x86_64 2.7.4-10.el9 baseos 623 k
harfbuzz-devel x86_64 2.7.4-10.el9 appstream 305 k
harfbuzz-icu x86_64 2.7.4-10.el9 appstream 13 k
langpacks-core-font-en noarch 3.0-16.el9 appstream 9.5 k
libX11 x86_64 1.7.0-9.el9 appstream 650 k
libX11-common noarch 1.7.0-9.el9 appstream 151 k
libX11-devel x86_64 1.7.0-9.el9 appstream 939 k
libX11-xcb x86_64 1.7.0-9.el9 appstream 10 k
libXau x86_64 1.0.9-8.el9 appstream 30 k
libXau-devel x86_64 1.0.9-8.el9 appstream 13 k
libXext x86_64 1.3.4-8.el9 appstream 39 k
libXext-devel x86_64 1.3.4-8.el9 appstream 72 k
libXrender x86_64 0.9.10-16.el9 appstream 27 k
libXrender-devel x86_64 0.9.10-16.el9 appstream 16 k
libblkid-devel x86_64 2.37.4-20.el9 appstream 16 k
libbrotli x86_64 1.0.9-7.el9_5 baseos 312 k
libffi-devel x86_64 3.4.2-8.el9 appstream 28 k
libibverbs x86_64 51.0-1.el9 baseos 427 k
libicu x86_64 67.1-9.el9 baseos 9.6 M
libicu-devel x86_64 67.1-9.el9 appstream 830 k
libmount-devel x86_64 2.37.4-20.el9 appstream 17 k
libnet x86_64 1.2-7.el9 appstream 57 k
libnl3 x86_64 3.9.0-1.el9 baseos 351 k
libnsl2 x86_64 2.0.0-1.el9.0.1 appstream 30 k
libpciaccess x86_64 0.16-7.el9 baseos 26 k
libpkgconf x86_64 1.7.3-10.el9 baseos 35 k
libpng x86_64 2:1.6.37-12.el9 baseos 116 k
libpng-devel x86_64 2:1.6.37-12.el9 appstream 290 k
libpsm2 x86_64 11.2.230-1.el9 appstream 208 k
librdmacm x86_64 51.0-1.el9 baseos 70 k
libselinux-devel x86_64 3.6-1.el9 appstream 113 k
libsepol-devel x86_64 3.6-1.el9 appstream 39 k
libunwind x86_64 1.6.2-1.el9 epel 67 k
libxcb x86_64 1.13.1-9.el9 appstream 224 k
libxcb-devel x86_64 1.13.1-9.el9 appstream 1.0 M
libxml2-devel x86_64 2.9.13-6.el9_4 appstream 827 k
lzo x86_64 2.10-7.el9 baseos 66 k
mpdecimal x86_64 2.5.1-3.el9 appstream 85 k
ncurses x86_64 6.2-10.20210508.el9 baseos 399 k
numactl x86_64 2.0.18-2.el9 baseos 68 k
numactl-libs x86_64 2.0.18-2.el9 baseos 31 k
pcre-cpp x86_64 8.44-4.el9 appstream 25 k
pcre-devel x86_64 8.44-4.el9 appstream 469 k
pcre-utf16 x86_64 8.44-4.el9 appstream 183 k
pcre-utf32 x86_64 8.44-4.el9 appstream 173 k
pcre2-devel x86_64 10.40-6.el9 appstream 471 k
pcre2-utf16 x86_64 10.40-6.el9 appstream 213 k
pcre2-utf32 x86_64 10.40-6.el9 appstream 202 k
perl-AutoLoader noarch 5.74-481.el9 appstream 20 k
perl-B x86_64 1.80-481.el9 appstream 178 k
perl-Carp noarch 1.50-460.el9 appstream 29 k
perl-Class-Struct noarch 0.66-481.el9 appstream 21 k
perl-Data-Dumper x86_64 2.174-462.el9 appstream 55 k
perl-Digest noarch 1.19-4.el9 appstream 25 k
perl-Digest-MD5 x86_64 2.58-4.el9 appstream 36 k
perl-Encode x86_64 4:3.08-462.el9 appstream 1.7 M
perl-Errno x86_64 1.30-481.el9 appstream 13 k
perl-Exporter noarch 5.74-461.el9 appstream 31 k
perl-Fcntl x86_64 1.13-481.el9 appstream 19 k
perl-File-Basename noarch 2.85-481.el9 appstream 16 k
perl-File-Path noarch 2.18-4.el9 appstream 35 k
perl-File-Temp noarch 1:0.231.100-4.el9 appstream 59 k
perl-File-stat noarch 1.09-481.el9 appstream 16 k
perl-FileHandle noarch 2.03-481.el9 appstream 14 k
perl-Getopt-Long noarch 1:2.52-4.el9 appstream 60 k
perl-Getopt-Std noarch 1.12-481.el9 appstream 14 k
perl-HTTP-Tiny noarch 0.076-462.el9 appstream 53 k
perl-IO x86_64 1.43-481.el9 appstream 85 k
perl-IO-Socket-IP noarch 0.41-5.el9 appstream 42 k
perl-IO-Socket-SSL noarch 2.073-2.el9 appstream 214 k
perl-IPC-Open3 noarch 1.21-481.el9 appstream 21 k
perl-MIME-Base64 x86_64 3.16-4.el9 appstream 30 k
perl-Mozilla-CA noarch 20200520-6.el9 appstream 12 k
perl-Net-SSLeay x86_64 1.94-1.el9 appstream 391 k
perl-POSIX x86_64 1.94-481.el9 appstream 95 k
perl-PathTools x86_64 3.78-461.el9 appstream 85 k
perl-Pod-Escapes noarch 1:1.07-460.el9 appstream 20 k
perl-Pod-Perldoc noarch 3.28.01-461.el9 appstream 83 k
perl-Pod-Simple noarch 1:3.42-4.el9 appstream 215 k
perl-Pod-Usage noarch 4:2.01-4.el9 appstream 40 k
perl-Scalar-List-Utils x86_64 4:1.56-462.el9 appstream 70 k
perl-SelectSaver noarch 1.02-481.el9 appstream 10 k
perl-Socket x86_64 4:2.031-4.el9 appstream 54 k
perl-Storable x86_64 1:3.21-460.el9 appstream 95 k
perl-Symbol noarch 1.08-481.el9 appstream 13 k
perl-Term-ANSIColor noarch 5.01-461.el9 appstream 48 k
perl-Term-Cap noarch 1.17-460.el9 appstream 22 k
perl-Text-ParseWords noarch 3.30-460.el9 appstream 16 k
perl-Text-Tabs+Wrap noarch 2013.0523-460.el9 appstream 23 k
perl-Time-Local noarch 2:1.300-7.el9 appstream 33 k
perl-URI noarch 5.09-3.el9 appstream 108 k
perl-base noarch 2.27-481.el9 appstream 15 k
perl-constant noarch 1.33-461.el9 appstream 23 k
perl-if noarch 0.60.800-481.el9 appstream 13 k
perl-interpreter x86_64 4:5.32.1-481.el9 appstream 70 k
perl-libnet noarch 3.13-4.el9 appstream 125 k
perl-libs x86_64 4:5.32.1-481.el9 appstream 2.0 M
perl-mro x86_64 1.23-481.el9 appstream 27 k
perl-overload noarch 1.31-481.el9 appstream 44 k
perl-overloading noarch 0.02-481.el9 appstream 11 k
perl-parent noarch 1:0.238-460.el9 appstream 14 k
perl-podlators noarch 1:4.14-460.el9 appstream 112 k
perl-subs noarch 1.03-481.el9 appstream 10 k
perl-vars noarch 1.05-481.el9 appstream 12 k
pixman x86_64 0.40.0-6.el9_3 appstream 269 k
pixman-devel x86_64 0.40.0-6.el9_3 appstream 16 k
pkgconf x86_64 1.7.3-10.el9 baseos 40 k
pkgconf-m4 noarch 1.7.3-10.el9 baseos 14 k
pkgconf-pkg-config x86_64 1.7.3-10.el9 baseos 10 k
protobuf-c x86_64 1.3.3-13.el9 baseos 34 k
python3.11 x86_64 3.11.9-7.el9_5.2 appstream 27 k
python3.11-libs x86_64 3.11.9-7.el9_5.2 appstream 9.7 M
python3.11-pip-wheel noarch 22.3.1-5.el9 appstream 1.4 M
python3.11-setuptools-wheel noarch 65.5.1-3.el9 appstream 713 k
squashfs-tools x86_64 4.4-10.git1.el9 baseos 164 k
squashfs-tools-ng x86_64 1.3.1-1.el9 epel 117 k
squashfs-tools-ng-libs x86_64 1.3.1-1.el9 epel 49 k
sysprof-capture-devel x86_64 3.40.1-3.el9 appstream 59 k
xml-common noarch 0.6.3-58.el9 appstream 31 k
xorg-x11-proto-devel noarch 2024.1-1.el9 appstream 265 k
xz-devel x86_64 5.2.5-8.el9_0 appstream 52 k
yajl x86_64 2.1.0-22.el9 appstream 37 k
zlib-devel x86_64 1.2.11-40.el9 appstream 44 k
Installing weak dependencies:
criu-libs x86_64 3.19-1.el9 appstream 31 k
libxcrypt-compat x86_64 4.4.18-3.el9 appstream 88 k
perl-NDBM_File x86_64 1.15-481.el9 appstream 21 k
singularity-ce x86_64 4.2.2-1.el9 epel 45 M
Transaction Summary
===========================================================================================================================================================================================================================================
Install 154 Packages
Total download size: 93 M
Installed size: 364 M
Downloading Packages:
(1/154): libunwind-1.6.2-1.el9.x86_64.rpm 666 kB/s | 67 kB 00:00
(2/154): squashfs-tools-ng-1.3.1-1.el9.x86_64.rpm 1.4 MB/s | 117 kB 00:00
(3/154): squashfs-tools-ng-libs-1.3.1-1.el9.x86_64.rpm 365 kB/s | 49 kB 00:00
(4/154): ohpc-base-compute-3.2-320.ohpc.1.1.x86_64.rpm 19 kB/s | 7.2 kB 00:00
(5/154): singularity-ce-4.2.2-1.el9.x86_64.rpm 61 MB/s | 45 MB 00:00
(6/154): fonts-filesystem-2.0.5-7.el9.1.noarch.rpm 26 kB/s | 9.0 kB 00:00
(7/154): harfbuzz-2.7.4-10.el9.x86_64.rpm 10 MB/s | 623 kB 00:00
(8/154): libbrotli-1.0.9-7.el9_5.x86_64.rpm 3.9 MB/s | 312 kB 00:00
(9/154): dejavu-sans-fonts-2.37-18.el9.noarch.rpm 2.6 MB/s | 1.3 MB 00:00
(10/154): graphite2-1.3.14-9.el9.x86_64.rpm 1.1 MB/s | 94 kB 00:00
(11/154): libibverbs-51.0-1.el9.x86_64.rpm 7.2 MB/s | 427 kB 00:00
(12/154): fuse-2.9.9-16.el9.x86_64.rpm 1.3 MB/s | 78 kB 00:00
(13/154): groff-base-1.22.4-10.el9.x86_64.rpm 3.9 MB/s | 1.0 MB 00:00
(14/154): cryptsetup-2.7.2-3.el9_5.x86_64.rpm 3.9 MB/s | 310 kB 00:00
(15/154): librdmacm-51.0-1.el9.x86_64.rpm 259 kB/s | 70 kB 00:00
(16/154): libpciaccess-0.16-7.el9.x86_64.rpm 727 kB/s | 26 kB 00:00
(17/154): pkgconf-m4-1.7.3-10.el9.noarch.rpm 223 kB/s | 14 kB 00:00
(18/154): pkgconf-1.7.3-10.el9.x86_64.rpm 1.2 MB/s | 40 kB 00:00
(19/154): libpkgconf-1.7.3-10.el9.x86_64.rpm 1.6 MB/s | 35 kB 00:00
(20/154): gettext-libs-0.21-8.el9.x86_64.rpm 3.7 MB/s | 302 kB 00:00
(21/154): gettext-0.21-8.el9.x86_64.rpm 13 MB/s | 1.1 MB 00:00
(22/154): squashfs-tools-4.4-10.git1.el9.x86_64.rpm 446 kB/s | 164 kB 00:00
(23/154): pkgconf-pkg-config-1.7.3-10.el9.x86_64.rpm 31 kB/s | 10 kB 00:00
(24/154): libicu-67.1-9.el9.x86_64.rpm 44 MB/s | 9.6 MB 00:00
(25/154): libnl3-3.9.0-1.el9.x86_64.rpm 2.8 MB/s | 351 kB 00:00
(26/154): freetype-2.10.4-9.el9.x86_64.rpm 1.0 MB/s | 387 kB 00:00
(27/154): libpng-1.6.37-12.el9.x86_64.rpm 289 kB/s | 116 kB 00:00
(28/154): lzo-2.10-7.el9.x86_64.rpm 375 kB/s | 66 kB 00:00
(29/154): protobuf-c-1.3.3-13.el9.x86_64.rpm 733 kB/s | 34 kB 00:00
(30/154): numactl-libs-2.0.18-2.el9.x86_64.rpm 141 kB/s | 31 kB 00:00
(31/154): numactl-2.0.18-2.el9.x86_64.rpm 313 kB/s | 68 kB 00:00
(32/154): ncurses-6.2-10.20210508.el9.x86_64.rpm 3.8 MB/s | 399 kB 00:00
(33/154): perl-Exporter-5.74-461.el9.noarch.rpm 444 kB/s | 31 kB 00:00
(34/154): perl-Pod-Simple-3.42-4.el9.noarch.rpm 3.2 MB/s | 215 kB 00:00
(35/154): perl-File-Path-2.18-4.el9.noarch.rpm 1.1 MB/s | 35 kB 00:00
(36/154): perl-Pod-Perldoc-3.28.01-461.el9.noarch.rpm 1.6 MB/s | 83 kB 00:00
(37/154): perl-Getopt-Long-2.52-4.el9.noarch.rpm 3.3 MB/s | 60 kB 00:00
(38/154): perl-Pod-Usage-2.01-4.el9.noarch.rpm 1.9 MB/s | 40 kB 00:00
(39/154): perl-IO-Socket-IP-0.41-5.el9.noarch.rpm 2.4 MB/s | 42 kB 00:00
(40/154): fuse-common-3.10.2-9.el9.x86_64.rpm 23 kB/s | 7.3 kB 00:00
(41/154): perl-Text-ParseWords-3.30-460.el9.noarch.rpm 49 kB/s | 16 kB 00:00
(42/154): perl-Time-Local-1.300-7.el9.noarch.rpm 1.1 MB/s | 33 kB 00:00
(43/154): brotli-devel-1.0.9-7.el9_5.x86_64.rpm 488 kB/s | 30 kB 00:00
(44/154): brotli-1.0.9-7.el9_5.x86_64.rpm 5.6 MB/s | 311 kB 00:00
(45/154): glib2-devel-2.68.4-14.el9_4.1.x86_64.rpm 3.4 MB/s | 471 kB 00:00
(46/154): bzip2-devel-1.0.8-10.el9_5.x86_64.rpm 4.3 MB/s | 213 kB 00:00
(47/154): xorg-x11-proto-devel-2024.1-1.el9.noarch.rpm 650 kB/s | 265 kB 00:00
(48/154): perl-libnet-3.13-4.el9.noarch.rpm 321 kB/s | 125 kB 00:00
(49/154): harfbuzz-icu-2.7.4-10.el9.x86_64.rpm 144 kB/s | 13 kB 00:00
(50/154): graphite2-devel-1.3.14-9.el9.x86_64.rpm 400 kB/s | 21 kB 00:00
(51/154): fontconfig-devel-2.14.0-2.el9_1.x86_64.rpm 1.4 MB/s | 127 kB 00:00
(52/154): fontconfig-2.14.0-2.el9_1.x86_64.rpm 2.2 MB/s | 274 kB 00:00
(53/154): harfbuzz-devel-2.7.4-10.el9.x86_64.rpm 952 kB/s | 305 kB 00:00
(54/154): conmon-2.1.12-1.el9.x86_64.rpm 147 kB/s | 51 kB 00:00
(55/154): libnsl2-2.0.0-1.el9.0.1.x86_64.rpm 234 kB/s | 30 kB 00:00
(56/154): perl-Carp-1.50-460.el9.noarch.rpm 620 kB/s | 29 kB 00:00
(57/154): perl-podlators-4.14-460.el9.noarch.rpm 3.9 MB/s | 112 kB 00:00
(58/154): perl-Term-Cap-1.17-460.el9.noarch.rpm 441 kB/s | 22 kB 00:00
(59/154): perl-Term-ANSIColor-5.01-461.el9.noarch.rpm 1.1 MB/s | 48 kB 00:00
(60/154): perl-HTTP-Tiny-0.076-462.el9.noarch.rpm 710 kB/s | 53 kB 00:00
(61/154): perl-Digest-1.19-4.el9.noarch.rpm 593 kB/s | 25 kB 00:00
(62/154): libxml2-devel-2.9.13-6.el9_4.x86_64.rpm 2.0 MB/s | 827 kB 00:00
(63/154): perl-URI-5.09-3.el9.noarch.rpm 3.7 MB/s | 108 kB 00:00
(64/154): perl-Encode-3.08-462.el9.x86_64.rpm 19 MB/s | 1.7 MB 00:00
(65/154): perl-Data-Dumper-2.174-462.el9.x86_64.rpm 1.3 MB/s | 55 kB 00:00
(66/154): libX11-common-1.7.0-9.el9.noarch.rpm 304 kB/s | 151 kB 00:00
(67/154): perl-Scalar-List-Utils-1.56-462.el9.x86_64.rpm 4.7 MB/s | 70 kB 00:00
(68/154): perl-Storable-3.21-460.el9.x86_64.rpm 2.8 MB/s | 95 kB 00:00
(69/154): perl-constant-1.33-461.el9.noarch.rpm 118 kB/s | 23 kB 00:00
(70/154): perl-PathTools-3.78-461.el9.x86_64.rpm 3.0 MB/s | 85 kB 00:00
(71/154): perl-Text-Tabs+Wrap-2013.0523-460.el9.noarch.rpm 1.1 MB/s | 23 kB 00:00
(72/154): perl-IO-Socket-SSL-2.073-2.el9.noarch.rpm 1.5 MB/s | 214 kB 00:00
(73/154): perl-Digest-MD5-2.58-4.el9.x86_64.rpm 419 kB/s | 36 kB 00:00
(74/154): perl-Mozilla-CA-20200520-6.el9.noarch.rpm 66 kB/s | 12 kB 00:00
(75/154): perl-Pod-Escapes-1.07-460.el9.noarch.rpm 171 kB/s | 20 kB 00:00
(76/154): pcre2-utf32-10.40-6.el9.x86_64.rpm 1.9 MB/s | 202 kB 00:00
(77/154): libpsm2-11.2.230-1.el9.x86_64.rpm 3.2 MB/s | 208 kB 00:00
(78/154): yajl-2.1.0-22.el9.x86_64.rpm 622 kB/s | 37 kB 00:00
(79/154): perl-MIME-Base64-3.16-4.el9.x86_64.rpm 1.7 MB/s | 30 kB 00:00
(80/154): pcre2-utf16-10.40-6.el9.x86_64.rpm 1.0 MB/s | 213 kB 00:00
(81/154): xz-devel-5.2.5-8.el9_0.x86_64.rpm 2.0 MB/s | 52 kB 00:00
(82/154): langpacks-core-font-en-3.0-16.el9.noarch.rpm 652 kB/s | 9.5 kB 00:00
(83/154): perl-File-Temp-0.231.100-4.el9.noarch.rpm 2.9 MB/s | 59 kB 00:00
(84/154): pcre2-devel-10.40-6.el9.x86_64.rpm 2.0 MB/s | 471 kB 00:00
(85/154): cmake-filesystem-3.26.5-2.el9.x86_64.rpm 334 kB/s | 11 kB 00:00
(86/154): libXau-1.0.9-8.el9.x86_64.rpm 1.5 MB/s | 30 kB 00:00
(87/154): criu-libs-3.19-1.el9.x86_64.rpm 652 kB/s | 31 kB 00:00
(88/154): sysprof-capture-devel-3.40.1-3.el9.x86_64.rpm 317 kB/s | 59 kB 00:00
(89/154): criu-3.19-1.el9.x86_64.rpm 8.9 MB/s | 559 kB 00:00
(90/154): libxcb-1.13.1-9.el9.x86_64.rpm 3.7 MB/s | 224 kB 00:00
(91/154): libXau-devel-1.0.9-8.el9.x86_64.rpm 56 kB/s | 13 kB 00:00
(92/154): libffi-devel-3.4.2-8.el9.x86_64.rpm 583 kB/s | 28 kB 00:00
(93/154): libXrender-devel-0.9.10-16.el9.x86_64.rpm 577 kB/s | 16 kB 00:00
(94/154): libXrender-0.9.10-16.el9.x86_64.rpm 1.8 MB/s | 27 kB 00:00
(95/154): libxcb-devel-1.13.1-9.el9.x86_64.rpm 4.4 MB/s | 1.0 MB 00:00
(96/154): libicu-devel-67.1-9.el9.x86_64.rpm 8.3 MB/s | 830 kB 00:00
(97/154): libXext-devel-1.3.4-8.el9.x86_64.rpm 1.9 MB/s | 72 kB 00:00
(98/154): crun-1.16.1-1.el9.x86_64.rpm 958 kB/s | 223 kB 00:00
(99/154): libXext-1.3.4-8.el9.x86_64.rpm 1.0 MB/s | 39 kB 00:00
(100/154): libnet-1.2-7.el9.x86_64.rpm 2.5 MB/s | 57 kB 00:00
(101/154): libpng-devel-1.6.37-12.el9.x86_64.rpm 8.0 MB/s | 290 kB 00:00
(102/154): libselinux-devel-3.6-1.el9.x86_64.rpm 7.8 MB/s | 113 kB 00:00
(103/154): libxcrypt-compat-4.4.18-3.el9.x86_64.rpm 3.1 MB/s | 88 kB 00:00
(104/154): libsepol-devel-3.6-1.el9.x86_64.rpm 164 kB/s | 39 kB 00:00
(105/154): perl-Socket-2.031-4.el9.x86_64.rpm 1.0 MB/s | 54 kB 00:00
(106/154): pcre-utf16-8.44-4.el9.x86_64.rpm 4.1 MB/s | 183 kB 00:00
(107/154): freetype-devel-2.10.4-9.el9.x86_64.rpm 4.5 MB/s | 1.1 MB 00:00
(108/154): pcre-devel-8.44-4.el9.x86_64.rpm 6.7 MB/s | 469 kB 00:00
(109/154): perl-mro-1.23-481.el9.x86_64.rpm 1.0 MB/s | 27 kB 00:00
(110/154): perl-libs-5.32.1-481.el9.x86_64.rpm 20 MB/s | 2.0 MB 00:00
(111/154): perl-interpreter-5.32.1-481.el9.x86_64.rpm 4.1 MB/s | 70 kB 00:00
(112/154): pcre-utf32-8.44-4.el9.x86_64.rpm 571 kB/s | 173 kB 00:00
(113/154): perl-POSIX-1.94-481.el9.x86_64.rpm 3.8 MB/s | 95 kB 00:00
(114/154): perl-IO-1.43-481.el9.x86_64.rpm 6.1 MB/s | 85 kB 00:00
(115/154): perl-Fcntl-1.13-481.el9.x86_64.rpm 629 kB/s | 19 kB 00:00
(116/154): pcre-cpp-8.44-4.el9.x86_64.rpm 94 kB/s | 25 kB 00:00
(117/154): perl-Errno-1.30-481.el9.x86_64.rpm 238 kB/s | 13 kB 00:00
(118/154): perl-vars-1.05-481.el9.noarch.rpm 289 kB/s | 12 kB 00:00
(119/154): perl-subs-1.03-481.el9.noarch.rpm 1.5 MB/s | 10 kB 00:00
(120/154): perl-overloading-0.02-481.el9.noarch.rpm 652 kB/s | 11 kB 00:00
(121/154): perl-overload-1.31-481.el9.noarch.rpm 4.2 MB/s | 44 kB 00:00
(122/154): perl-if-0.60.800-481.el9.noarch.rpm 720 kB/s | 13 kB 00:00
(123/154): perl-base-2.27-481.el9.noarch.rpm 1.7 MB/s | 15 kB 00:00
(124/154): perl-Symbol-1.08-481.el9.noarch.rpm 1.0 MB/s | 13 kB 00:00
(125/154): perl-SelectSaver-1.02-481.el9.noarch.rpm 663 kB/s | 10 kB 00:00
(126/154): perl-NDBM_File-1.15-481.el9.x86_64.rpm 81 kB/s | 21 kB 00:00
(127/154): perl-IPC-Open3-1.21-481.el9.noarch.rpm 631 kB/s | 21 kB 00:00
(128/154): perl-FileHandle-2.03-481.el9.noarch.rpm 591 kB/s | 14 kB 00:00
(129/154): perl-B-1.80-481.el9.x86_64.rpm 711 kB/s | 178 kB 00:00
(130/154): perl-File-stat-1.09-481.el9.noarch.rpm 574 kB/s | 16 kB 00:00
(131/154): perl-Class-Struct-0.66-481.el9.noarch.rpm 939 kB/s | 21 kB 00:00
(132/154): perl-AutoLoader-5.74-481.el9.noarch.rpm 771 kB/s | 20 kB 00:00
(133/154): pixman-devel-0.40.0-6.el9_3.x86_64.rpm 657 kB/s | 16 kB 00:00
(134/154): pixman-0.40.0-6.el9_3.x86_64.rpm 9.8 MB/s | 269 kB 00:00
(135/154): perl-Net-SSLeay-1.94-1.el9.x86_64.rpm 7.1 MB/s | 391 kB 00:00
(136/154): perl-Getopt-Std-1.12-481.el9.noarch.rpm 61 kB/s | 14 kB 00:00
(137/154): perl-File-Basename-2.85-481.el9.noarch.rpm 80 kB/s | 16 kB 00:00
(138/154): perl-parent-0.238-460.el9.noarch.rpm 454 kB/s | 14 kB 00:00
(139/154): cairo-1.17.4-7.el9.x86_64.rpm 8.6 MB/s | 659 kB 00:00
(140/154): libX11-xcb-1.7.0-9.el9.x86_64.rpm 147 kB/s | 10 kB 00:00
(141/154): libX11-devel-1.7.0-9.el9.x86_64.rpm 9.2 MB/s | 939 kB 00:00
(142/154): libX11-1.7.0-9.el9.x86_64.rpm 8.9 MB/s | 650 kB 00:00
(143/154): fuse3-libs-3.10.2-9.el9.x86_64.rpm 2.9 MB/s | 91 kB 00:00
(144/154): fuse3-3.10.2-9.el9.x86_64.rpm 2.5 MB/s | 53 kB 00:00
(145/154): zlib-devel-1.2.11-40.el9.x86_64.rpm 1.0 MB/s | 44 kB 00:00
(146/154): xml-common-0.6.3-58.el9.noarch.rpm 67 kB/s | 31 kB 00:00
(147/154): libmount-devel-2.37.4-20.el9.x86_64.rpm 579 kB/s | 17 kB 00:00
(148/154): cairo-devel-1.17.4-7.el9.x86_64.rpm 392 kB/s | 190 kB 00:00
(149/154): mpdecimal-2.5.1-3.el9.x86_64.rpm 1.1 MB/s | 85 kB 00:00
(150/154): python3.11-3.11.9-7.el9_5.2.x86_64.rpm 323 kB/s | 27 kB 00:00
(151/154): python3.11-setuptools-wheel-65.5.1-3.el9.noarch.rpm 6.8 MB/s | 713 kB 00:00
(152/154): python3.11-pip-wheel-22.3.1-5.el9.noarch.rpm 18 MB/s | 1.4 MB 00:00
(153/154): libblkid-devel-2.37.4-20.el9.x86_64.rpm 40 kB/s | 16 kB 00:00
(154/154): python3.11-libs-3.11.9-7.el9_5.2.x86_64.rpm 14 MB/s | 9.7 MB 00:00
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 12 MB/s | 93 MB 00:07
OpenHPC-3 - Updates 1.3 MB/s | 1.4 kB 00:00
Importing GPG key 0x40A90CC8:
Userid : "OpenHPC3 OBS Project "
Fingerprint: 6E19 BE11 D9A0 82C0 0A7D B41A 7AC0 5F09 40A9 0CC8
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-OpenHPC-3
Key imported successfully
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : libnl3-3.9.0-1.el9.x86_64 1/154
Installing : libpng-2:1.6.37-12.el9.x86_64 2/154
Installing : libicu-67.1-9.el9.x86_64 3/154
Installing : libbrotli-1.0.9-7.el9_5.x86_64 4/154
Installing : fuse3-libs-3.10.2-9.el9.x86_64 5/154
Installing : pixman-0.40.0-6.el9_3.x86_64 6/154
Installing : libXau-1.0.9-8.el9.x86_64 7/154
Installing : libxcb-1.13.1-9.el9.x86_64 8/154
Installing : fuse-common-3.10.2-9.el9.x86_64 9/154
Installing : protobuf-c-1.3.3-13.el9.x86_64 10/154
Installing : numactl-libs-2.0.18-2.el9.x86_64 11/154
Installing : lzo-2.10-7.el9.x86_64 12/154
Installing : graphite2-1.3.14-9.el9.x86_64 13/154
Installing : harfbuzz-2.7.4-10.el9.x86_64 14/154
Installing : freetype-2.10.4-9.el9.x86_64 15/154
Installing : fonts-filesystem-1:2.0.5-7.el9.1.noarch 16/154
Installing : dejavu-sans-fonts-2.37-18.el9.noarch 17/154
Installing : langpacks-core-font-en-3.0-16.el9.noarch 18/154
Installing : harfbuzz-icu-2.7.4-10.el9.x86_64 19/154
Installing : squashfs-tools-4.4-10.git1.el9.x86_64 20/154
Installing : numactl-2.0.18-2.el9.x86_64 21/154
Installing : libpsm2-11.2.230-1.el9.x86_64 22/154
Installing : fuse-2.9.9-16.el9.x86_64 23/154
Installing : fuse3-3.10.2-9.el9.x86_64 24/154
Installing : brotli-1.0.9-7.el9_5.x86_64 25/154
Installing : libibverbs-51.0-1.el9.x86_64 26/154
Installing : librdmacm-51.0-1.el9.x86_64 27/154
Installing : python3.11-setuptools-wheel-65.5.1-3.el9.noarch 28/154
Installing : mpdecimal-2.5.1-3.el9.x86_64 29/154
Installing : libX11-xcb-1.7.0-9.el9.x86_64 30/154
Running scriptlet: xml-common-0.6.3-58.el9.noarch 31/154
Installing : xml-common-0.6.3-58.el9.noarch 31/154
Installing : fontconfig-2.14.0-2.el9_1.x86_64 32/154
Running scriptlet: fontconfig-2.14.0-2.el9_1.x86_64 32/154
Installing : pcre-cpp-8.44-4.el9.x86_64 33/154
Installing : pcre-utf16-8.44-4.el9.x86_64 34/154
Installing : pcre-utf32-8.44-4.el9.x86_64 35/154
Installing : libxcrypt-compat-4.4.18-3.el9.x86_64 36/154
Installing : python3.11-pip-wheel-22.3.1-5.el9.noarch 37/154
Installing : libnet-1.2-7.el9.x86_64 38/154
Installing : criu-3.19-1.el9.x86_64 39/154
Installing : criu-libs-3.19-1.el9.x86_64 40/154
Installing : cmake-filesystem-3.26.5-2.el9.x86_64 41/154
Installing : yajl-2.1.0-22.el9.x86_64 42/154
Installing : crun-1.16.1-1.el9.x86_64 43/154
Installing : pcre2-utf16-10.40-6.el9.x86_64 44/154
Installing : pcre2-utf32-10.40-6.el9.x86_64 45/154
Installing : libX11-common-1.7.0-9.el9.noarch 46/154
Installing : libX11-1.7.0-9.el9.x86_64 47/154
Installing : libXrender-0.9.10-16.el9.x86_64 48/154
Installing : libXext-1.3.4-8.el9.x86_64 49/154
Installing : cairo-1.17.4-7.el9.x86_64 50/154
Installing : libnsl2-2.0.0-1.el9.0.1.x86_64 51/154
Installing : python3.11-3.11.9-7.el9_5.2.x86_64 52/154
Installing : python3.11-libs-3.11.9-7.el9_5.2.x86_64 53/154
Installing : conmon-3:2.1.12-1.el9.x86_64 54/154
Installing : ncurses-6.2-10.20210508.el9.x86_64 55/154
Installing : gettext-libs-0.21-8.el9.x86_64 56/154
Installing : gettext-0.21-8.el9.x86_64 57/154
Installing : libpkgconf-1.7.3-10.el9.x86_64 58/154
Installing : pkgconf-1.7.3-10.el9.x86_64 59/154
Installing : pkgconf-m4-1.7.3-10.el9.noarch 60/154
Installing : pkgconf-pkg-config-1.7.3-10.el9.x86_64 61/154
Installing : xorg-x11-proto-devel-2024.1-1.el9.noarch 62/154
Installing : zlib-devel-1.2.11-40.el9.x86_64 63/154
Installing : libpng-devel-2:1.6.37-12.el9.x86_64 64/154
Installing : libXau-devel-1.0.9-8.el9.x86_64 65/154
Installing : libxcb-devel-1.13.1-9.el9.x86_64 66/154
Installing : libX11-devel-1.7.0-9.el9.x86_64 67/154
Installing : libXrender-devel-0.9.10-16.el9.x86_64 68/154
Installing : libXext-devel-1.3.4-8.el9.x86_64 69/154
Installing : brotli-devel-1.0.9-7.el9_5.x86_64 70/154
Installing : bzip2-devel-1.0.8-10.el9_5.x86_64 71/154
Installing : graphite2-devel-1.3.14-9.el9.x86_64 72/154
Installing : pcre2-devel-10.40-6.el9.x86_64 73/154
Installing : xz-devel-5.2.5-8.el9_0.x86_64 74/154
Installing : libxml2-devel-2.9.13-6.el9_4.x86_64 75/154
Installing : sysprof-capture-devel-3.40.1-3.el9.x86_64 76/154
Installing : libffi-devel-3.4.2-8.el9.x86_64 77/154
Installing : libicu-devel-67.1-9.el9.x86_64 78/154
Installing : libsepol-devel-3.6-1.el9.x86_64 79/154
Installing : libselinux-devel-3.6-1.el9.x86_64 80/154
Installing : pcre-devel-8.44-4.el9.x86_64 81/154
Installing : pixman-devel-0.40.0-6.el9_3.x86_64 82/154
Installing : libblkid-devel-2.37.4-20.el9.x86_64 83/154
Installing : libmount-devel-2.37.4-20.el9.x86_64 84/154
Installing : glib2-devel-2.68.4-14.el9_4.1.x86_64 85/154
Installing : freetype-devel-2.10.4-9.el9.x86_64 86/154
Installing : harfbuzz-devel-2.7.4-10.el9.x86_64 87/154
Installing : fontconfig-devel-2.14.0-2.el9_1.x86_64 88/154
Installing : cairo-devel-1.17.4-7.el9.x86_64 89/154
Installing : libpciaccess-0.16-7.el9.x86_64 90/154
Installing : cryptsetup-2.7.2-3.el9_5.x86_64 91/154
Running scriptlet: groff-base-1.22.4-10.el9.x86_64 92/154
Installing : groff-base-1.22.4-10.el9.x86_64 92/154
Running scriptlet: groff-base-1.22.4-10.el9.x86_64 92/154
Installing : perl-Digest-1.19-4.el9.noarch 93/154
Installing : perl-Digest-MD5-2.58-4.el9.x86_64 94/154
Installing : perl-B-1.80-481.el9.x86_64 95/154
Installing : perl-FileHandle-2.03-481.el9.noarch 96/154
Installing : perl-Data-Dumper-2.174-462.el9.x86_64 97/154
Installing : perl-libnet-3.13-4.el9.noarch 98/154
Installing : perl-base-2.27-481.el9.noarch 99/154
Installing : perl-AutoLoader-5.74-481.el9.noarch 100/154
Installing : perl-URI-5.09-3.el9.noarch 101/154
Installing : perl-Mozilla-CA-20200520-6.el9.noarch 102/154
Installing : perl-Text-Tabs+Wrap-2013.0523-460.el9.noarch 103/154
Installing : perl-Pod-Escapes-1:1.07-460.el9.noarch 104/154
Installing : perl-if-0.60.800-481.el9.noarch 105/154
Installing : perl-File-Path-2.18-4.el9.noarch 106/154
Installing : perl-IO-Socket-IP-0.41-5.el9.noarch 107/154
Installing : perl-Net-SSLeay-1.94-1.el9.x86_64 108/154
Installing : perl-Time-Local-2:1.300-7.el9.noarch 109/154
Installing : perl-IO-Socket-SSL-2.073-2.el9.noarch 110/154
Installing : perl-Term-ANSIColor-5.01-461.el9.noarch 111/154
Installing : perl-POSIX-1.94-481.el9.x86_64 112/154
Installing : perl-Term-Cap-1.17-460.el9.noarch 113/154
Installing : perl-subs-1.03-481.el9.noarch 114/154
Installing : perl-Pod-Simple-1:3.42-4.el9.noarch 115/154
Installing : perl-IPC-Open3-1.21-481.el9.noarch 116/154
Installing : perl-Class-Struct-0.66-481.el9.noarch 117/154
Installing : perl-HTTP-Tiny-0.076-462.el9.noarch 118/154
Installing : perl-File-Temp-1:0.231.100-4.el9.noarch 119/154
Installing : perl-Socket-4:2.031-4.el9.x86_64 120/154
Installing : perl-Symbol-1.08-481.el9.noarch 121/154
Installing : perl-SelectSaver-1.02-481.el9.noarch 122/154
Installing : perl-File-stat-1.09-481.el9.noarch 123/154
Installing : perl-podlators-1:4.14-460.el9.noarch 124/154
Installing : perl-Pod-Perldoc-3.28.01-461.el9.noarch 125/154
Installing : perl-Text-ParseWords-3.30-460.el9.noarch 126/154
Installing : perl-mro-1.23-481.el9.x86_64 127/154
Installing : perl-Fcntl-1.13-481.el9.x86_64 128/154
Installing : perl-overloading-0.02-481.el9.noarch 129/154
Installing : perl-IO-1.43-481.el9.x86_64 130/154
Installing : perl-Pod-Usage-4:2.01-4.el9.noarch 131/154
Installing : perl-constant-1.33-461.el9.noarch 132/154
Installing : perl-Scalar-List-Utils-4:1.56-462.el9.x86_64 133/154
Installing : perl-MIME-Base64-3.16-4.el9.x86_64 134/154
Installing : perl-Errno-1.30-481.el9.x86_64 135/154
Installing : perl-vars-1.05-481.el9.noarch 136/154
Installing : perl-overload-1.31-481.el9.noarch 137/154
Installing : perl-Getopt-Std-1.12-481.el9.noarch 138/154
Installing : perl-File-Basename-2.85-481.el9.noarch 139/154
Installing : perl-Storable-1:3.21-460.el9.x86_64 140/154
Installing : perl-parent-1:0.238-460.el9.noarch 141/154
Installing : perl-Getopt-Long-1:2.52-4.el9.noarch 142/154
Installing : perl-Exporter-5.74-461.el9.noarch 143/154
Installing : perl-Carp-1.50-460.el9.noarch 144/154
Installing : perl-NDBM_File-1.15-481.el9.x86_64 145/154
Installing : perl-PathTools-3.78-461.el9.x86_64 146/154
Installing : perl-Encode-4:3.08-462.el9.x86_64 147/154
Installing : perl-libs-4:5.32.1-481.el9.x86_64 148/154
Installing : perl-interpreter-4:5.32.1-481.el9.x86_64 149/154
Installing : squashfs-tools-ng-libs-1.3.1-1.el9.x86_64 150/154
Installing : squashfs-tools-ng-1.3.1-1.el9.x86_64 151/154
Installing : singularity-ce-4.2.2-1.el9.x86_64 152/154
Installing : libunwind-1.6.2-1.el9.x86_64 153/154
Installing : ohpc-base-compute-3.2-320.ohpc.1.1.x86_64 154/154
Running scriptlet: fontconfig-2.14.0-2.el9_1.x86_64 154/154
Running scriptlet: ohpc-base-compute-3.2-320.ohpc.1.1.x86_64 154/154
Verifying : ohpc-base-compute-3.2-320.ohpc.1.1.x86_64 1/154
Verifying : libunwind-1.6.2-1.el9.x86_64 2/154
Verifying : singularity-ce-4.2.2-1.el9.x86_64 3/154
Verifying : squashfs-tools-ng-1.3.1-1.el9.x86_64 4/154
Verifying : squashfs-tools-ng-libs-1.3.1-1.el9.x86_64 5/154
Verifying : dejavu-sans-fonts-2.37-18.el9.noarch 6/154
Verifying : fonts-filesystem-1:2.0.5-7.el9.1.noarch 7/154
Verifying : libbrotli-1.0.9-7.el9_5.x86_64 8/154
Verifying : harfbuzz-2.7.4-10.el9.x86_64 9/154
Verifying : groff-base-1.22.4-10.el9.x86_64 10/154
Verifying : graphite2-1.3.14-9.el9.x86_64 11/154
Verifying : librdmacm-51.0-1.el9.x86_64 12/154
Verifying : libibverbs-51.0-1.el9.x86_64 13/154
Verifying : fuse-2.9.9-16.el9.x86_64 14/154
Verifying : cryptsetup-2.7.2-3.el9_5.x86_64 15/154
Verifying : squashfs-tools-4.4-10.git1.el9.x86_64 16/154
Verifying : libpciaccess-0.16-7.el9.x86_64 17/154
Verifying : pkgconf-pkg-config-1.7.3-10.el9.x86_64 18/154
Verifying : pkgconf-m4-1.7.3-10.el9.noarch 19/154
Verifying : pkgconf-1.7.3-10.el9.x86_64 20/154
Verifying : libpkgconf-1.7.3-10.el9.x86_64 21/154
Verifying : gettext-libs-0.21-8.el9.x86_64 22/154
Verifying : gettext-0.21-8.el9.x86_64 23/154
Verifying : libicu-67.1-9.el9.x86_64 24/154
Verifying : freetype-2.10.4-9.el9.x86_64 25/154
Verifying : libpng-2:1.6.37-12.el9.x86_64 26/154
Verifying : libnl3-3.9.0-1.el9.x86_64 27/154
Verifying : lzo-2.10-7.el9.x86_64 28/154
Verifying : numactl-libs-2.0.18-2.el9.x86_64 29/154
Verifying : numactl-2.0.18-2.el9.x86_64 30/154
Verifying : protobuf-c-1.3.3-13.el9.x86_64 31/154
Verifying : ncurses-6.2-10.20210508.el9.x86_64 32/154
Verifying : fuse-common-3.10.2-9.el9.x86_64 33/154
Verifying : perl-Text-ParseWords-3.30-460.el9.noarch 34/154
Verifying : perl-Exporter-5.74-461.el9.noarch 35/154
Verifying : perl-Pod-Simple-1:3.42-4.el9.noarch 36/154
Verifying : perl-File-Path-2.18-4.el9.noarch 37/154
Verifying : perl-Pod-Perldoc-3.28.01-461.el9.noarch 38/154
Verifying : perl-Getopt-Long-1:2.52-4.el9.noarch 39/154
Verifying : perl-Pod-Usage-4:2.01-4.el9.noarch 40/154
Verifying : perl-IO-Socket-IP-0.41-5.el9.noarch 41/154
Verifying : xorg-x11-proto-devel-2024.1-1.el9.noarch 42/154
Verifying : perl-Time-Local-2:1.300-7.el9.noarch 43/154
Verifying : perl-libnet-3.13-4.el9.noarch 44/154
Verifying : brotli-devel-1.0.9-7.el9_5.x86_64 45/154
Verifying : brotli-1.0.9-7.el9_5.x86_64 46/154
Verifying : glib2-devel-2.68.4-14.el9_4.1.x86_64 47/154
Verifying : bzip2-devel-1.0.8-10.el9_5.x86_64 48/154
Verifying : harfbuzz-icu-2.7.4-10.el9.x86_64 49/154
Verifying : harfbuzz-devel-2.7.4-10.el9.x86_64 50/154
Verifying : graphite2-devel-1.3.14-9.el9.x86_64 51/154
Verifying : conmon-3:2.1.12-1.el9.x86_64 52/154
Verifying : fontconfig-devel-2.14.0-2.el9_1.x86_64 53/154
Verifying : fontconfig-2.14.0-2.el9_1.x86_64 54/154
Verifying : libnsl2-2.0.0-1.el9.0.1.x86_64 55/154
Verifying : libxml2-devel-2.9.13-6.el9_4.x86_64 56/154
Verifying : libX11-common-1.7.0-9.el9.noarch 57/154
Verifying : perl-Carp-1.50-460.el9.noarch 58/154
Verifying : perl-podlators-1:4.14-460.el9.noarch 59/154
Verifying : perl-Term-Cap-1.17-460.el9.noarch 60/154
Verifying : perl-Term-ANSIColor-5.01-461.el9.noarch 61/154
Verifying : perl-HTTP-Tiny-0.076-462.el9.noarch 62/154
Verifying : perl-Digest-1.19-4.el9.noarch 63/154
Verifying : perl-URI-5.09-3.el9.noarch 64/154
Verifying : perl-constant-1.33-461.el9.noarch 65/154
Verifying : perl-Encode-4:3.08-462.el9.x86_64 66/154
Verifying : perl-Data-Dumper-2.174-462.el9.x86_64 67/154
Verifying : perl-Scalar-List-Utils-4:1.56-462.el9.x86_64 68/154
Verifying : perl-IO-Socket-SSL-2.073-2.el9.noarch 69/154
Verifying : perl-Storable-1:3.21-460.el9.x86_64 70/154
Verifying : perl-PathTools-3.78-461.el9.x86_64 71/154
Verifying : perl-Mozilla-CA-20200520-6.el9.noarch 72/154
Verifying : perl-Text-Tabs+Wrap-2013.0523-460.el9.noarch 73/154
Verifying : perl-Digest-MD5-2.58-4.el9.x86_64 74/154
Verifying : perl-Pod-Escapes-1:1.07-460.el9.noarch 75/154
Verifying : pcre2-utf32-10.40-6.el9.x86_64 76/154
Verifying : pcre2-utf16-10.40-6.el9.x86_64 77/154
Verifying : pcre2-devel-10.40-6.el9.x86_64 78/154
Verifying : libpsm2-11.2.230-1.el9.x86_64 79/154
Verifying : yajl-2.1.0-22.el9.x86_64 80/154
Verifying : perl-MIME-Base64-3.16-4.el9.x86_64 81/154
Verifying : xz-devel-5.2.5-8.el9_0.x86_64 82/154
Verifying : sysprof-capture-devel-3.40.1-3.el9.x86_64 83/154
Verifying : langpacks-core-font-en-3.0-16.el9.noarch 84/154
Verifying : perl-File-Temp-1:0.231.100-4.el9.noarch 85/154
Verifying : cmake-filesystem-3.26.5-2.el9.x86_64 86/154
Verifying : libXau-devel-1.0.9-8.el9.x86_64 87/154
Verifying : libXau-1.0.9-8.el9.x86_64 88/154
Verifying : criu-libs-3.19-1.el9.x86_64 89/154
Verifying : criu-3.19-1.el9.x86_64 90/154
Verifying : libxcb-devel-1.13.1-9.el9.x86_64 91/154
Verifying : libxcb-1.13.1-9.el9.x86_64 92/154
Verifying : libffi-devel-3.4.2-8.el9.x86_64 93/154
Verifying : crun-1.16.1-1.el9.x86_64 94/154
Verifying : libXrender-devel-0.9.10-16.el9.x86_64 95/154
Verifying : libXrender-0.9.10-16.el9.x86_64 96/154
Verifying : libicu-devel-67.1-9.el9.x86_64 97/154
Verifying : libsepol-devel-3.6-1.el9.x86_64 98/154
Verifying : libXext-devel-1.3.4-8.el9.x86_64 99/154
Verifying : libXext-1.3.4-8.el9.x86_64 100/154
Verifying : freetype-devel-2.10.4-9.el9.x86_64 101/154
Verifying : libnet-1.2-7.el9.x86_64 102/154
Verifying : libpng-devel-2:1.6.37-12.el9.x86_64 103/154
Verifying : libselinux-devel-3.6-1.el9.x86_64 104/154
Verifying : libxcrypt-compat-4.4.18-3.el9.x86_64 105/154
Verifying : perl-Socket-4:2.031-4.el9.x86_64 106/154
Verifying : pcre-utf32-8.44-4.el9.x86_64 107/154
Verifying : pcre-utf16-8.44-4.el9.x86_64 108/154
Verifying : pcre-devel-8.44-4.el9.x86_64 109/154
Verifying : pcre-cpp-8.44-4.el9.x86_64 110/154
Verifying : perl-mro-1.23-481.el9.x86_64 111/154
Verifying : perl-libs-4:5.32.1-481.el9.x86_64 112/154
Verifying : perl-interpreter-4:5.32.1-481.el9.x86_64 113/154
Verifying : perl-POSIX-1.94-481.el9.x86_64 114/154
Verifying : perl-NDBM_File-1.15-481.el9.x86_64 115/154
Verifying : perl-IO-1.43-481.el9.x86_64 116/154
Verifying : perl-Fcntl-1.13-481.el9.x86_64 117/154
Verifying : perl-Errno-1.30-481.el9.x86_64 118/154
Verifying : perl-B-1.80-481.el9.x86_64 119/154
Verifying : perl-vars-1.05-481.el9.noarch 120/154
Verifying : perl-subs-1.03-481.el9.noarch 121/154
Verifying : perl-overloading-0.02-481.el9.noarch 122/154
Verifying : perl-overload-1.31-481.el9.noarch 123/154
Verifying : perl-if-0.60.800-481.el9.noarch 124/154
Verifying : perl-base-2.27-481.el9.noarch 125/154
Verifying : perl-Symbol-1.08-481.el9.noarch 126/154
Verifying : perl-SelectSaver-1.02-481.el9.noarch 127/154
Verifying : perl-IPC-Open3-1.21-481.el9.noarch 128/154
Verifying : perl-Getopt-Std-1.12-481.el9.noarch 129/154
Verifying : perl-FileHandle-2.03-481.el9.noarch 130/154
Verifying : perl-File-stat-1.09-481.el9.noarch 131/154
Verifying : perl-File-Basename-2.85-481.el9.noarch 132/154
Verifying : perl-Class-Struct-0.66-481.el9.noarch 133/154
Verifying : perl-AutoLoader-5.74-481.el9.noarch 134/154
Verifying : pixman-devel-0.40.0-6.el9_3.x86_64 135/154
Verifying : pixman-0.40.0-6.el9_3.x86_64 136/154
Verifying : perl-Net-SSLeay-1.94-1.el9.x86_64 137/154
Verifying : xml-common-0.6.3-58.el9.noarch 138/154
Verifying : perl-parent-1:0.238-460.el9.noarch 139/154
Verifying : cairo-devel-1.17.4-7.el9.x86_64 140/154
Verifying : cairo-1.17.4-7.el9.x86_64 141/154
Verifying : libX11-xcb-1.7.0-9.el9.x86_64 142/154
Verifying : libX11-devel-1.7.0-9.el9.x86_64 143/154
Verifying : libX11-1.7.0-9.el9.x86_64 144/154
Verifying : fuse3-libs-3.10.2-9.el9.x86_64 145/154
Verifying : fuse3-3.10.2-9.el9.x86_64 146/154
Verifying : zlib-devel-1.2.11-40.el9.x86_64 147/154
Verifying : libmount-devel-2.37.4-20.el9.x86_64 148/154
Verifying : libblkid-devel-2.37.4-20.el9.x86_64 149/154
Verifying : mpdecimal-2.5.1-3.el9.x86_64 150/154
Verifying : python3.11-libs-3.11.9-7.el9_5.2.x86_64 151/154
Verifying : python3.11-3.11.9-7.el9_5.2.x86_64 152/154
Verifying : python3.11-setuptools-wheel-65.5.1-3.el9.noarch 153/154
Verifying : python3.11-pip-wheel-22.3.1-5.el9.noarch 154/154
Installed:
brotli-1.0.9-7.el9_5.x86_64 brotli-devel-1.0.9-7.el9_5.x86_64 bzip2-devel-1.0.8-10.el9_5.x86_64 cairo-1.17.4-7.el9.x86_64 cairo-devel-1.17.4-7.el9.x86_64
cmake-filesystem-3.26.5-2.el9.x86_64 conmon-3:2.1.12-1.el9.x86_64 criu-3.19-1.el9.x86_64 criu-libs-3.19-1.el9.x86_64 crun-1.16.1-1.el9.x86_64
cryptsetup-2.7.2-3.el9_5.x86_64 dejavu-sans-fonts-2.37-18.el9.noarch fontconfig-2.14.0-2.el9_1.x86_64 fontconfig-devel-2.14.0-2.el9_1.x86_64 fonts-filesystem-1:2.0.5-7.el9.1.noarch
freetype-2.10.4-9.el9.x86_64 freetype-devel-2.10.4-9.el9.x86_64 fuse-2.9.9-16.el9.x86_64 fuse-common-3.10.2-9.el9.x86_64 fuse3-3.10.2-9.el9.x86_64
fuse3-libs-3.10.2-9.el9.x86_64 gettext-0.21-8.el9.x86_64 gettext-libs-0.21-8.el9.x86_64 glib2-devel-2.68.4-14.el9_4.1.x86_64 graphite2-1.3.14-9.el9.x86_64
graphite2-devel-1.3.14-9.el9.x86_64 groff-base-1.22.4-10.el9.x86_64 harfbuzz-2.7.4-10.el9.x86_64 harfbuzz-devel-2.7.4-10.el9.x86_64 harfbuzz-icu-2.7.4-10.el9.x86_64
langpacks-core-font-en-3.0-16.el9.noarch libX11-1.7.0-9.el9.x86_64 libX11-common-1.7.0-9.el9.noarch libX11-devel-1.7.0-9.el9.x86_64 libX11-xcb-1.7.0-9.el9.x86_64
libXau-1.0.9-8.el9.x86_64 libXau-devel-1.0.9-8.el9.x86_64 libXext-1.3.4-8.el9.x86_64 libXext-devel-1.3.4-8.el9.x86_64 libXrender-0.9.10-16.el9.x86_64
libXrender-devel-0.9.10-16.el9.x86_64 libblkid-devel-2.37.4-20.el9.x86_64 libbrotli-1.0.9-7.el9_5.x86_64 libffi-devel-3.4.2-8.el9.x86_64 libibverbs-51.0-1.el9.x86_64
libicu-67.1-9.el9.x86_64 libicu-devel-67.1-9.el9.x86_64 libmount-devel-2.37.4-20.el9.x86_64 libnet-1.2-7.el9.x86_64 libnl3-3.9.0-1.el9.x86_64
libnsl2-2.0.0-1.el9.0.1.x86_64 libpciaccess-0.16-7.el9.x86_64 libpkgconf-1.7.3-10.el9.x86_64 libpng-2:1.6.37-12.el9.x86_64 libpng-devel-2:1.6.37-12.el9.x86_64
libpsm2-11.2.230-1.el9.x86_64 librdmacm-51.0-1.el9.x86_64 libselinux-devel-3.6-1.el9.x86_64 libsepol-devel-3.6-1.el9.x86_64 libunwind-1.6.2-1.el9.x86_64
libxcb-1.13.1-9.el9.x86_64 libxcb-devel-1.13.1-9.el9.x86_64 libxcrypt-compat-4.4.18-3.el9.x86_64 libxml2-devel-2.9.13-6.el9_4.x86_64 lzo-2.10-7.el9.x86_64
mpdecimal-2.5.1-3.el9.x86_64 ncurses-6.2-10.20210508.el9.x86_64 numactl-2.0.18-2.el9.x86_64 numactl-libs-2.0.18-2.el9.x86_64 ohpc-base-compute-3.2-320.ohpc.1.1.x86_64
pcre-cpp-8.44-4.el9.x86_64 pcre-devel-8.44-4.el9.x86_64 pcre-utf16-8.44-4.el9.x86_64 pcre-utf32-8.44-4.el9.x86_64 pcre2-devel-10.40-6.el9.x86_64
pcre2-utf16-10.40-6.el9.x86_64 pcre2-utf32-10.40-6.el9.x86_64 perl-AutoLoader-5.74-481.el9.noarch perl-B-1.80-481.el9.x86_64 perl-Carp-1.50-460.el9.noarch
perl-Class-Struct-0.66-481.el9.noarch perl-Data-Dumper-2.174-462.el9.x86_64 perl-Digest-1.19-4.el9.noarch perl-Digest-MD5-2.58-4.el9.x86_64 perl-Encode-4:3.08-462.el9.x86_64
perl-Errno-1.30-481.el9.x86_64 perl-Exporter-5.74-461.el9.noarch perl-Fcntl-1.13-481.el9.x86_64 perl-File-Basename-2.85-481.el9.noarch perl-File-Path-2.18-4.el9.noarch
perl-File-Temp-1:0.231.100-4.el9.noarch perl-File-stat-1.09-481.el9.noarch perl-FileHandle-2.03-481.el9.noarch perl-Getopt-Long-1:2.52-4.el9.noarch perl-Getopt-Std-1.12-481.el9.noarch
perl-HTTP-Tiny-0.076-462.el9.noarch perl-IO-1.43-481.el9.x86_64 perl-IO-Socket-IP-0.41-5.el9.noarch perl-IO-Socket-SSL-2.073-2.el9.noarch perl-IPC-Open3-1.21-481.el9.noarch
perl-MIME-Base64-3.16-4.el9.x86_64 perl-Mozilla-CA-20200520-6.el9.noarch perl-NDBM_File-1.15-481.el9.x86_64 perl-Net-SSLeay-1.94-1.el9.x86_64 perl-POSIX-1.94-481.el9.x86_64
perl-PathTools-3.78-461.el9.x86_64 perl-Pod-Escapes-1:1.07-460.el9.noarch perl-Pod-Perldoc-3.28.01-461.el9.noarch perl-Pod-Simple-1:3.42-4.el9.noarch perl-Pod-Usage-4:2.01-4.el9.noarch
perl-Scalar-List-Utils-4:1.56-462.el9.x86_64 perl-SelectSaver-1.02-481.el9.noarch perl-Socket-4:2.031-4.el9.x86_64 perl-Storable-1:3.21-460.el9.x86_64 perl-Symbol-1.08-481.el9.noarch
perl-Term-ANSIColor-5.01-461.el9.noarch perl-Term-Cap-1.17-460.el9.noarch perl-Text-ParseWords-3.30-460.el9.noarch perl-Text-Tabs+Wrap-2013.0523-460.el9.noarch perl-Time-Local-2:1.300-7.el9.noarch
perl-URI-5.09-3.el9.noarch perl-base-2.27-481.el9.noarch perl-constant-1.33-461.el9.noarch perl-if-0.60.800-481.el9.noarch perl-interpreter-4:5.32.1-481.el9.x86_64
perl-libnet-3.13-4.el9.noarch perl-libs-4:5.32.1-481.el9.x86_64 perl-mro-1.23-481.el9.x86_64 perl-overload-1.31-481.el9.noarch perl-overloading-0.02-481.el9.noarch
perl-parent-1:0.238-460.el9.noarch perl-podlators-1:4.14-460.el9.noarch perl-subs-1.03-481.el9.noarch perl-vars-1.05-481.el9.noarch pixman-0.40.0-6.el9_3.x86_64
pixman-devel-0.40.0-6.el9_3.x86_64 pkgconf-1.7.3-10.el9.x86_64 pkgconf-m4-1.7.3-10.el9.noarch pkgconf-pkg-config-1.7.3-10.el9.x86_64 protobuf-c-1.3.3-13.el9.x86_64
python3.11-3.11.9-7.el9_5.2.x86_64 python3.11-libs-3.11.9-7.el9_5.2.x86_64 python3.11-pip-wheel-22.3.1-5.el9.noarch python3.11-setuptools-wheel-65.5.1-3.el9.noarch singularity-ce-4.2.2-1.el9.x86_64
squashfs-tools-4.4-10.git1.el9.x86_64 squashfs-tools-ng-1.3.1-1.el9.x86_64 squashfs-tools-ng-libs-1.3.1-1.el9.x86_64 sysprof-capture-devel-3.40.1-3.el9.x86_64 xml-common-0.6.3-58.el9.noarch
xorg-x11-proto-devel-2024.1-1.el9.noarch xz-devel-5.2.5-8.el9_0.x86_64 yajl-2.1.0-22.el9.x86_64 zlib-devel-1.2.11-40.el9.x86_64
Complete!
The Rocky Linux community provides updates for the latest point release of
Rocky Linux 9. If you need to remain on a specific point release (e.g., Rocky
Linux 9.2) you may want to engage with a commercial support provider for
long-term support.
https://rockylinux.org/support
+ dnf clean all
53 files removed
Rebuilding container...
ERROR : Could not build container rocky-9.4: Failed discovering files for VNFS container rocky-9.4: /srv/warewulf/chroots/rocky-9.4/rootfs: lstat proc/3140928/fd/3: no such file or directory
OpenHPC-3 - Base 349 kB/s | 3.6 MB 00:10
OpenHPC-3 - Updates 827 kB/s | 5.0 MB 00:06
Extra Packages for Enterprise Linux 9 - x86_64 19 MB/s | 23 MB 00:01
Extra Packages for Enterprise Linux 9 openh264 (From Cisco) - x86_64 138 B/s | 2.5 kB 00:18
Rocky Linux 9 - BaseOS 5.2 MB/s | 2.3 MB 00:00
Rocky Linux 9 - AppStream 17 MB/s | 8.7 MB 00:00
Rocky Linux 9 - Extras 53 kB/s | 16 kB 00:00
Dependencies resolved.
===========================================================================================================================================================================================================================================
Package Architecture Version Repository Size
===========================================================================================================================================================================================================================================
Installing:
ohpc-slurm-client x86_64 3.2-320.ohpc.1.1 OpenHPC-updates 7.0 k
Installing dependencies:
freeipmi x86_64 1.6.14-2.el9 appstream 2.0 M
hwloc-ohpc x86_64 2.11.1-320.ohpc.1.1 OpenHPC-updates 2.4 M
jansson x86_64 2.14-1.el9 baseos 45 k
libjwt x86_64 1.12.1-11.el9 epel 29 k
mariadb-connector-c x86_64 3.2.6-1.el9_0 appstream 195 k
mariadb-connector-c-config noarch 3.2.6-1.el9_0 appstream 9.8 k
munge x86_64 0.5.13-13.el9 appstream 110 k
munge-libs x86_64 0.5.13-13.el9 appstream 20 k
ohpc-filesystem noarch 3.2-320.ohpc.2.1 OpenHPC-updates 8.0 k
pmix-ohpc x86_64 4.2.9-310.ohpc.3.1 OpenHPC-updates 3.6 M
slurm-contribs-ohpc x86_64 23.11.10-320.ohpc.3.1 OpenHPC-updates 22 k
slurm-example-configs-ohpc x86_64 23.11.10-320.ohpc.3.1 OpenHPC-updates 247 k
slurm-ohpc x86_64 23.11.10-320.ohpc.3.1 OpenHPC-updates 18 M
slurm-pam_slurm-ohpc x86_64 23.11.10-320.ohpc.3.1 OpenHPC-updates 146 k
slurm-slurmd-ohpc x86_64 23.11.10-320.ohpc.3.1 OpenHPC-updates 781 k
Transaction Summary
===========================================================================================================================================================================================================================================
Install 16 Packages
Total download size: 27 M
Installed size: 99 M
Downloading Packages:
(1/16): ohpc-slurm-client-3.2-320.ohpc.1.1.x86_64.rpm 19 kB/s | 7.0 kB 00:00
(2/16): ohpc-filesystem-3.2-320.ohpc.2.1.noarch.rpm 21 kB/s | 8.0 kB 00:00
(3/16): slurm-contribs-ohpc-23.11.10-320.ohpc.3.1.x86_64.rpm 58 kB/s | 22 kB 00:00
(4/16): slurm-example-configs-ohpc-23.11.10-320.ohpc.3.1.x86_64.rpm 335 kB/s | 247 kB 00:00
(5/16): hwloc-ohpc-2.11.1-320.ohpc.1.1.x86_64.rpm 1.4 MB/s | 2.4 MB 00:01
(6/16): slurm-pam_slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64.rpm 765 kB/s | 146 kB 00:00
(7/16): pmix-ohpc-4.2.9-310.ohpc.3.1.x86_64.rpm 2.3 MB/s | 3.6 MB 00:01
(8/16): libjwt-1.12.1-11.el9.x86_64.rpm 273 kB/s | 29 kB 00:00
(9/16): slurm-slurmd-ohpc-23.11.10-320.ohpc.3.1.x86_64.rpm 3.8 MB/s | 781 kB 00:00
(10/16): jansson-2.14-1.el9.x86_64.rpm 793 kB/s | 45 kB 00:00
(11/16): freeipmi-1.6.14-2.el9.x86_64.rpm 16 MB/s | 2.0 MB 00:00
(12/16): mariadb-connector-c-3.2.6-1.el9_0.x86_64.rpm 1.5 MB/s | 195 kB 00:00
(13/16): mariadb-connector-c-config-3.2.6-1.el9_0.noarch.rpm 540 kB/s | 9.8 kB 00:00
(14/16): munge-0.5.13-13.el9.x86_64.rpm 1.7 MB/s | 110 kB 00:00
(15/16): munge-libs-0.5.13-13.el9.x86_64.rpm 263 kB/s | 20 kB 00:00
(16/16): slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64.rpm 6.5 MB/s | 18 MB 00:02
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 5.1 MB/s | 27 MB 00:05
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : ohpc-filesystem-3.2-320.ohpc.2.1.noarch 1/16
Installing : hwloc-ohpc-2.11.1-320.ohpc.1.1.x86_64 2/16
Installing : munge-libs-0.5.13-13.el9.x86_64 3/16
Running scriptlet: munge-0.5.13-13.el9.x86_64 4/16
Installing : munge-0.5.13-13.el9.x86_64 4/16
Running scriptlet: munge-0.5.13-13.el9.x86_64 4/16
Installing : slurm-example-configs-ohpc-23.11.10-320.ohpc.3.1.x86_64 5/16
Running scriptlet: slurm-example-configs-ohpc-23.11.10-320.ohpc.3.1.x86_64 5/16
Installing : pmix-ohpc-4.2.9-310.ohpc.3.1.x86_64 6/16
Installing : mariadb-connector-c-config-3.2.6-1.el9_0.noarch 7/16
Installing : mariadb-connector-c-3.2.6-1.el9_0.x86_64 8/16
Installing : freeipmi-1.6.14-2.el9.x86_64 9/16
Installing : jansson-2.14-1.el9.x86_64 10/16
Installing : libjwt-1.12.1-11.el9.x86_64 11/16
Running scriptlet: slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64 12/16
Installing : slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64 12/16
Running scriptlet: slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64 12/16
Installing : slurm-contribs-ohpc-23.11.10-320.ohpc.3.1.x86_64 13/16
Installing : slurm-pam_slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64 14/16
Installing : slurm-slurmd-ohpc-23.11.10-320.ohpc.3.1.x86_64 15/16
Running scriptlet: slurm-slurmd-ohpc-23.11.10-320.ohpc.3.1.x86_64 15/16
Installing : ohpc-slurm-client-3.2-320.ohpc.1.1.x86_64 16/16
Running scriptlet: ohpc-slurm-client-3.2-320.ohpc.1.1.x86_64 16/16
Verifying : hwloc-ohpc-2.11.1-320.ohpc.1.1.x86_64 1/16
Verifying : ohpc-filesystem-3.2-320.ohpc.2.1.noarch 2/16
Verifying : ohpc-slurm-client-3.2-320.ohpc.1.1.x86_64 3/16
Verifying : pmix-ohpc-4.2.9-310.ohpc.3.1.x86_64 4/16
Verifying : slurm-contribs-ohpc-23.11.10-320.ohpc.3.1.x86_64 5/16
Verifying : slurm-example-configs-ohpc-23.11.10-320.ohpc.3.1.x86_64 6/16
Verifying : slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64 7/16
Verifying : slurm-pam_slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64 8/16
Verifying : slurm-slurmd-ohpc-23.11.10-320.ohpc.3.1.x86_64 9/16
Verifying : libjwt-1.12.1-11.el9.x86_64 10/16
Verifying : jansson-2.14-1.el9.x86_64 11/16
Verifying : freeipmi-1.6.14-2.el9.x86_64 12/16
Verifying : mariadb-connector-c-3.2.6-1.el9_0.x86_64 13/16
Verifying : mariadb-connector-c-config-3.2.6-1.el9_0.noarch 14/16
Verifying : munge-libs-0.5.13-13.el9.x86_64 15/16
Verifying : munge-0.5.13-13.el9.x86_64 16/16
Installed:
freeipmi-1.6.14-2.el9.x86_64 hwloc-ohpc-2.11.1-320.ohpc.1.1.x86_64 jansson-2.14-1.el9.x86_64 libjwt-1.12.1-11.el9.x86_64
mariadb-connector-c-3.2.6-1.el9_0.x86_64 mariadb-connector-c-config-3.2.6-1.el9_0.noarch munge-0.5.13-13.el9.x86_64 munge-libs-0.5.13-13.el9.x86_64
ohpc-filesystem-3.2-320.ohpc.2.1.noarch ohpc-slurm-client-3.2-320.ohpc.1.1.x86_64 pmix-ohpc-4.2.9-310.ohpc.3.1.x86_64 slurm-contribs-ohpc-23.11.10-320.ohpc.3.1.x86_64
slurm-example-configs-ohpc-23.11.10-320.ohpc.3.1.x86_64 slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64 slurm-pam_slurm-ohpc-23.11.10-320.ohpc.3.1.x86_64 slurm-slurmd-ohpc-23.11.10-320.ohpc.3.1.x86_64
Complete!
Created symlink /etc/systemd/system/multi-user.target.wants/munge.service → /usr/lib/systemd/system/munge.service.
Created symlink /etc/systemd/system/multi-user.target.wants/slurmd.service → /usr/lib/systemd/system/slurmd.service.
Last metadata expiration check: 0:00:12 ago on Tue Feb 11 10:53:55 2025.
Dependencies resolved.
===========================================================================================================================================================================================================================================
Package Architecture Version Repository Size
===========================================================================================================================================================================================================================================
Installing:
chrony x86_64 4.5-3.el9 baseos 334 k
Transaction Summary
===========================================================================================================================================================================================================================================
Install 1 Package
Total download size: 334 k
Installed size: 653 k
Downloading Packages:
chrony-4.5-3.el9.x86_64.rpm 2.7 MB/s | 334 kB 00:00
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 831 kB/s | 334 kB 00:00
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Running scriptlet: chrony-4.5-3.el9.x86_64 1/1
Installing : chrony-4.5-3.el9.x86_64 1/1
Running scriptlet: chrony-4.5-3.el9.x86_64 1/1
Created symlink /etc/systemd/system/multi-user.target.wants/chronyd.service → /usr/lib/systemd/system/chronyd.service.
Verifying : chrony-4.5-3.el9.x86_64 1/1
Installed:
chrony-4.5-3.el9.x86_64
Complete!
Last metadata expiration check: 0:00:14 ago on Tue Feb 11 10:53:55 2025.
Dependencies resolved.
===========================================================================================================================================================================================================================================
Package Architecture Version Repository Size
===========================================================================================================================================================================================================================================
Installing:
lmod-ohpc x86_64 8.7.53-320.ohpc.3.1 OpenHPC-updates 251 k
Installing dependencies:
fish x86_64 3.3.1-3.el9 epel 3.3 M
libpipeline x86_64 1.5.3-4.el9 baseos 48 k
lua x86_64 5.4.4-4.el9 appstream 187 k
lua-filesystem x86_64 1.8.0-5.el9 epel 34 k
lua-posix x86_64 35.0-8.el9 appstream 131 k
rc x86_64 1.7.4-16.el9 epel 92 k
tcl x86_64 1:8.6.10-7.el9 baseos 1.1 M
tcsh x86_64 6.22.03-6.el9 appstream 456 k
Installing weak dependencies:
man-db x86_64 2.9.3-7.el9 baseos 1.1 M
man-pages noarch 6.04-1.el9 baseos 5.7 M
man-pages-overrides noarch 9.0.0.0-1.el9 appstream 16 k
Transaction Summary
===========================================================================================================================================================================================================================================
Install 12 Packages
Total download size: 12 M
Installed size: 32 M
Downloading Packages:
(1/12): lua-filesystem-1.8.0-5.el9.x86_64.rpm 179 kB/s | 34 kB 00:00
(2/12): fish-3.3.1-3.el9.x86_64.rpm 6.9 MB/s | 3.3 MB 00:00
(3/12): rc-1.7.4-16.el9.x86_64.rpm 312 kB/s | 92 kB 00:00
(4/12): man-db-2.9.3-7.el9.x86_64.rpm 9.7 MB/s | 1.1 MB 00:00
(5/12): man-pages-6.04-1.el9.noarch.rpm 24 MB/s | 5.7 MB 00:00
(6/12): libpipeline-1.5.3-4.el9.x86_64.rpm 364 kB/s | 48 kB 00:00
(7/12): man-pages-overrides-9.0.0.0-1.el9.noarch.rpm 611 kB/s | 16 kB 00:00
(8/12): lua-5.4.4-4.el9.x86_64.rpm 1.9 MB/s | 187 kB 00:00
(9/12): tcl-8.6.10-7.el9.x86_64.rpm 7.0 MB/s | 1.1 MB 00:00
(10/12): lua-posix-35.0-8.el9.x86_64.rpm 1.7 MB/s | 131 kB 00:00
(11/12): tcsh-6.22.03-6.el9.x86_64.rpm 6.0 MB/s | 456 kB 00:00
(12/12): lmod-ohpc-8.7.53-320.ohpc.3.1.x86_64.rpm 226 kB/s | 251 kB 00:01
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 5.3 MB/s | 12 MB 00:02
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : tcsh-6.22.03-6.el9.x86_64 1/12
Running scriptlet: tcsh-6.22.03-6.el9.x86_64 1/12
Installing : lua-posix-35.0-8.el9.x86_64 2/12
Installing : lua-5.4.4-4.el9.x86_64 3/12
Installing : man-pages-overrides-9.0.0.0-1.el9.noarch 4/12
Running scriptlet: man-pages-6.04-1.el9.noarch 5/12
Installing : man-pages-6.04-1.el9.noarch 5/12
Running scriptlet: man-pages-6.04-1.el9.noarch 5/12
Installing : tcl-1:8.6.10-7.el9.x86_64 6/12
Installing : libpipeline-1.5.3-4.el9.x86_64 7/12
Running scriptlet: man-db-2.9.3-7.el9.x86_64 8/12
Installing : man-db-2.9.3-7.el9.x86_64 8/12
Running scriptlet: man-db-2.9.3-7.el9.x86_64 8/12
Installing : fish-3.3.1-3.el9.x86_64 9/12
Running scriptlet: fish-3.3.1-3.el9.x86_64 9/12
Installing : rc-1.7.4-16.el9.x86_64 10/12
Running scriptlet: rc-1.7.4-16.el9.x86_64 10/12
Installing : lua-filesystem-1.8.0-5.el9.x86_64 11/12
Installing : lmod-ohpc-8.7.53-320.ohpc.3.1.x86_64 12/12
Running scriptlet: lmod-ohpc-8.7.53-320.ohpc.3.1.x86_64 12/12
Verifying : lmod-ohpc-8.7.53-320.ohpc.3.1.x86_64 1/12
Verifying : fish-3.3.1-3.el9.x86_64 2/12
Verifying : lua-filesystem-1.8.0-5.el9.x86_64 3/12
Verifying : rc-1.7.4-16.el9.x86_64 4/12
Verifying : man-pages-6.04-1.el9.noarch 5/12
Verifying : man-db-2.9.3-7.el9.x86_64 6/12
Verifying : libpipeline-1.5.3-4.el9.x86_64 7/12
Verifying : tcl-1:8.6.10-7.el9.x86_64 8/12
Verifying : man-pages-overrides-9.0.0.0-1.el9.noarch 9/12
Verifying : lua-5.4.4-4.el9.x86_64 10/12
Verifying : lua-posix-35.0-8.el9.x86_64 11/12
Verifying : tcsh-6.22.03-6.el9.x86_64 12/12
Installed:
fish-3.3.1-3.el9.x86_64 libpipeline-1.5.3-4.el9.x86_64 lmod-ohpc-8.7.53-320.ohpc.3.1.x86_64 lua-5.4.4-4.el9.x86_64 lua-filesystem-1.8.0-5.el9.x86_64 lua-posix-35.0-8.el9.x86_64 man-db-2.9.3-7.el9.x86_64
man-pages-6.04-1.el9.noarch man-pages-overrides-9.0.0.0-1.el9.noarch rc-1.7.4-16.el9.x86_64 tcl-1:8.6.10-7.el9.x86_64 tcsh-6.22.03-6.el9.x86_64
Complete!
The Rocky Linux community provides updates for the latest point release of
Rocky Linux 9. If you need to remain on a specific point release (e.g., Rocky
Linux 9.2) you may want to engage with a commercial support provider for
long-term support.
https://rockylinux.org/support
+ dnf clean all
53 files removed
Rebuilding container...
ERROR : Could not build container rocky-9.4: Failed discovering files for VNFS container rocky-9.4: /srv/warewulf/chroots/rocky-9.4/rootfs: lstat proc/3141588/fd/3: no such file or directory
10. Section 9 of the recipe.sh script
#!/usr/bin/bash
# -----------------------------------------------------------------------------------------
# Example Installation Script Template
# This convenience script encapsulates command-line instructions highlighted in
# an OpenHPC Install Guide that can be used as a starting point to perform a local
# cluster install beginning with bare-metal. Necessary inputs that describe local
# hardware characteristics, desired network settings, and other customizations
# are controlled via a companion input file that is used to initialize variables
# within this script.
# Please see the OpenHPC Install Guide(s) for more information regarding the
# procedure. Note that the section numbering included in this script refers to
# corresponding sections from the companion install guide.
# -----------------------------------------------------------------------------------------
inputFile=${OHPC_INPUT_LOCAL:-/input.local}
if [ ! -e ${inputFile} ];then
echo "Error: Unable to access local input file -> ${inputFile}"
exit 1
else
. ${inputFile} || { echo "Error sourcing ${inputFile}"; exit 1; }
fi
# -------------------------------------------------------
# Additional customizations (Section 3.8.4)
# -------------------------------------------------------
# Add IB drivers to compute image
if [[ ${enable_ib} -eq 1 ]];then
dnf -y --installroot=$CHROOT groupinstall "InfiniBand Support"
fi
# Add Omni-Path drivers to compute image
if [[ ${enable_opa} -eq 1 ]];then
dnf -y --installroot=$CHROOT install opa-basic-tools
dnf -y --installroot=$CHROOT install libpsm2
fi
# Update memlock settings
perl -pi -e 's/# End of file/\* soft memlock unlimited\n$&/s' /etc/security/limits.conf
perl -pi -e 's/# End of file/\* hard memlock unlimited\n$&/s' /etc/security/limits.conf
perl -pi -e 's/# End of file/\* soft memlock unlimited\n$&/s' $CHROOT/etc/security/limits.conf
perl -pi -e 's/# End of file/\* hard memlock unlimited\n$&/s' $CHROOT/etc/security/limits.conf
# Enable slurm pam module
echo "account required pam_slurm.so" >> $CHROOT/etc/pam.d/sshd
if [[ ${enable_beegfs_client} -eq 1 ]];then
wget -P /etc/yum.repos.d https://www.beegfs.io/release/beegfs_7.4.5/dists/beegfs-rhel9.repo
dnf -y install kernel-devel gcc elfutils-libelf-devel
dnf -y install beegfs-client beegfs-helperd beegfs-utils
perl -pi -e "s/^buildArgs=-j8/buildArgs=-j8 BEEGFS_OPENTK_IBVERBS=1/" /etc/beegfs/beegfs-client-autobuild.conf
/opt/beegfs/sbin/beegfs-setup-client -m ${sysmgmtd_host}
systemctl start beegfs-helperd
systemctl start beegfs-client
wget -P $CHROOT/etc/yum.repos.d https://www.beegfs.io/release/beegfs_7.4.5/dists/beegfs-rhel9.repo
dnf -y --installroot=$CHROOT install beegfs-client beegfs-helperd beegfs-utils
perl -pi -e "s/^buildEnabled=true/buildEnabled=false/" $CHROOT/etc/beegfs/beegfs-client-autobuild.conf
rm -f $CHROOT/var/lib/beegfs/client/force-auto-build
chroot $CHROOT systemctl enable beegfs-helperd beegfs-client
cp /etc/beegfs/beegfs-client.conf $CHROOT/etc/beegfs/beegfs-client.conf
echo "drivers += beegfs" >> /etc/warewulf/bootstrap.conf
fi
# Enable Optional packages
if [[ ${enable_lustre_client} -eq 1 ]];then
# Install Lustre client on master
dnf -y install lustre-client-ohpc
# Enable lustre in WW compute image
dnf -y --installroot=$CHROOT install lustre-client-ohpc
mkdir $CHROOT/mnt/lustre
echo "${mgs_fs_name} /mnt/lustre lustre defaults,localflock,noauto,x-systemd.automount 0 0" >> $CHROOT/etc/fstab
# Enable o2ib for Lustre
echo "options lnet networks=o2ib(ib0)" >> /etc/modprobe.d/lustre.conf
echo "options lnet networks=o2ib(ib0)" >> $CHROOT/etc/modprobe.d/lustre.conf
# mount Lustre client on master
mkdir /mnt/lustre
mount -t lustre -o localflock ${mgs_fs_name} /mnt/lustre
fi
Clarifications
Installation of InfiniBand and Omni-Path drivers
- Adding InfiniBand (IB) drivers
if [[ ${enable_ib} -eq 1 ]]; then
dnf -y --installroot=$CHROOT groupinstall "InfiniBand Support"
fi
If enable_ib is set to 1, the script installs InfiniBand drivers, which are essential for high-performance interconnects in HPC environments.
- Adding Omni-Path (OPA) drivers
if [[ ${enable_opa} -eq 1 ]]; then
dnf -y --installroot=$CHROOT install opa-basic-tools
dnf -y --installroot=$CHROOT install libpsm2
fi
If enable_opa is set to 1, the script installs Omni-Path tools, an alternative to InfiniBand that enables low-latency communication in HPC clusters.
Configuring memory limits (memlock)
perl -pi -e 's/# End of file/\* soft memlock unlimited\n$&/s' /etc/security/limits.conf
perl -pi -e 's/# End of file/\* hard memlock unlimited\n$&/s' /etc/security/limits.conf
perl -pi -e 's/# End of file/\* soft memlock unlimited\n$&/s' $CHROOT/etc/security/limits.conf
perl -pi -e 's/# End of file/\* hard memlock unlimited\n$&/s' $CHROOT/etc/security/limits.conf
Purpose: Increase memory lock limits to prevent HPC processes from being constrained in memory allocation.
- The perl -pi -e commands update the limits.conf files by appending memlock unlimited rules.
- Changes are applied both on the host system and inside the Warewulf chroot environment.
Enabling the PAM module for Slurm
echo "account required pam_slurm.so" >> $CHROOT/etc/pam.d/sshd
This activates pam_slurm.so, a PAM module that restricts SSH access to compute nodes to users with active Slurm jobs only.
Installing and configuring BeeGFS (parallel file system)
if [[ ${enable_beegfs_client} -eq 1 ]]; then
wget -P /etc/yum.repos.d https://www.beegfs.io/release/beegfs_7.4.5/dists/beegfs-rhel9.repo
dnf -y install kernel-devel gcc elfutils-libelf-devel
dnf -y install beegfs-client beegfs-helperd beegfs-utils
perl -pi -e "s/^buildArgs=-j8/buildArgs=-j8 BEEGFS_OPENTK_IBVERBS=1/" /etc/beegfs/beegfs-client-autobuild.conf
/opt/beegfs/sbin/beegfs-setup-client -m ${sysmgmtd_host}
systemctl start beegfs-helperd
systemctl start beegfs-client
wget -P $CHROOT/etc/yum.repos.d https://www.beegfs.io/release/beegfs_7.4.5/dists/beegfs-rhel9.repo
dnf -y --installroot=$CHROOT install beegfs-client beegfs-helperd beegfs-utils
perl -pi -e "s/^buildEnabled=true/buildEnabled=false/" $CHROOT/etc/beegfs/beegfs-client-autobuild.conf
rm -f $CHROOT/var/lib/beegfs/client/force-auto-build
chroot $CHROOT systemctl enable beegfs-helperd beegfs-client
cp /etc/beegfs/beegfs-client.conf $CHROOT/etc/beegfs/beegfs-client.conf
echo "drivers += beegfs" >> /etc/warewulf/bootstrap.conf
fi
If enable_beegfs_client=1, the script installs and configures BeeGFS, a high-performance parallel file system for HPC. Main actions include:
- Add the BeeGFS repository to yum.repos.d
- Install BeeGFS client, helper daemon, and utilities
- Enable InfiniBand support (BEEGFS_OPENTK_IBVERBS=1)
- Set up the client to connect to the management server (sysmgmtd_host)
- Start beegfs-helperd and beegfs-client services
- Configure the Warewulf chroot environment with BeeGFS
Installing and configuring Lustre (HPC parallel file system)
if [[ ${enable_lustre_client} -eq 1 ]]; then
dnf -y install lustre-client-ohpc
dnf -y --installroot=$CHROOT install lustre-client-ohpc
mkdir $CHROOT/mnt/lustre
echo "${mgs_fs_name} /mnt/lustre lustre defaults,localflock,noauto,x-systemd.automount 0 0" >> $CHROOT/etc/fstab
echo "options lnet networks=o2ib(ib0)" >> /etc/modprobe.d/lustre.conf
echo "options lnet networks=o2ib(ib0)" >> $CHROOT/etc/modprobe.d/lustre.conf
mkdir /mnt/lustre
mount -t lustre -o localflock ${mgs_fs_name} /mnt/lustre
fi
If enable_lustre_client=1, the script installs and configures Lustre, another widely-used high-performance file system in HPC.
Key steps include:
- Install the Lustre client on the management server
- Install Lustre in the Warewulf chroot environment
- Add a mount entry to /etc/fstab for /mnt/lustre
- Enable o2ib (over InfiniBand) network support for Lustre
- Mount the Lustre file system on the management server
Variable Explanation
Variable | Description | Set to 1 if… | Set to 0 if… |
---|---|---|---|
enable_ib |
Enables the installation of InfiniBand drivers | Your cluster uses InfiniBand interconnect | Your cluster uses Ethernet |
enable_opa |
Enables Omni-Path drivers | Your nodes are connected using Omni-Path (OPA) | You do not use Omni-Path |
enable_beegfs_client |
Installs the BeeGFS client (parallel file system) | Your cluster uses BeeGFS for storage | You do not use BeeGFS |
enable_lustre_client |
Installs the Lustre client (another HPC file system) | You use Lustre for parallel storage | You do not use Lustre |
11. Section 10 of the recipe.sh script
#!/usr/bin/bash
# -----------------------------------------------------------------------------------------
# Example Installation Script Template
# This convenience script encapsulates command-line instructions highlighted in
# an OpenHPC Install Guide that can be used as a starting point to perform a local
# cluster install beginning with bare-metal. Necessary inputs that describe local
# hardware characteristics, desired network settings, and other customizations
# are controlled via a companion input file that is used to initialize variables
# within this script.
# Please see the OpenHPC Install Guide(s) for more information regarding the
# procedure. Note that the section numbering included in this script refers to
# corresponding sections from the companion install guide.
# -----------------------------------------------------------------------------------------
inputFile=${OHPC_INPUT_LOCAL:-/input.local}
if [ ! -e ${inputFile} ];then
echo "Error: Unable to access local input file -> ${inputFile}"
exit 1
else
. ${inputFile} || { echo "Error sourcing ${inputFile}"; exit 1; }
fi
# -------------------------------------------------------
# Configure rsyslog on SMS and computes (Section 3.8.4.7)
# -------------------------------------------------------
echo 'module(load="imudp")' >> /etc/rsyslog.d/ohpc.conf
echo 'input(type="imudp" port="514")' >> /etc/rsyslog.d/ohpc.conf
systemctl restart rsyslog
echo "*.* action(type=\"omfwd\" Target=\"${sms_ip}\" Port=\"514\" " "Protocol=\"udp\")">> $CHROOT/etc/rsyslog.conf
perl -pi -e "s/^\*\.info/\\#\*\.info/" $CHROOT/etc/rsyslog.conf
perl -pi -e "s/^authpriv/\\#authpriv/" $CHROOT/etc/rsyslog.conf
perl -pi -e "s/^mail/\\#mail/" $CHROOT/etc/rsyslog.conf
perl -pi -e "s/^cron/\\#cron/" $CHROOT/etc/rsyslog.conf
perl -pi -e "s/^uucp/\\#uucp/" $CHROOT/etc/rsyslog.conf
if [[ ${enable_clustershell} -eq 1 ]];then
# Install clustershell
dnf -y install clustershell
cd /etc/clustershell/groups.d
mv local.cfg local.cfg.orig
echo "adm: ${sms_name}" > local.cfg
echo "compute: ${compute_prefix}[1-${num_computes}]" >> local.cfg
echo "all: @adm,@compute" >> local.cfg
fi
if [[ ${enable_genders} -eq 1 ]];then
# Install genders
dnf -y install genders-ohpc
echo -e "${sms_name}\tsms" > /etc/genders
for ((i=0; i<$num_computes; i++)) ; do
echo -e "${c_name[$i]}\tcompute,bmc=${c_bmc[$i]}"
done >> /etc/genders
fi
if [[ ${enable_magpie} -eq 1 ]];then
# Install magpie
dnf -y install magpie-ohpc
fi
# Optionally, enable conman and configure
if [[ ${enable_ipmisol} -eq 1 ]];then
dnf -y install conman-ohpc
for ((i=0; i<$num_computes; i++)) ; do
echo -n 'CONSOLE name="'${c_name[$i]}'" dev="ipmi:'${c_bmc[$i]}'" '
echo 'ipmiopts="'U:${bmc_username},P:${IPMI_PASSWORD:-undefined},W:solpayloadsize'"'
done >> /etc/conman.conf
systemctl enable conman
systemctl start conman
fi
# Optionally, enable nhc and configure
dnf -y install nhc-ohpc
dnf -y --installroot=$CHROOT install nhc-ohpc
echo "HealthCheckProgram=/usr/sbin/nhc" >> /etc/slurm/slurm.conf
echo "HealthCheckInterval=300" >> /etc/slurm/slurm.conf # execute every five minutes
# Optionally, update compute image to support geopm
if [[ ${enable_geopm} -eq 1 ]];then
export kargs="${kargs} intel_pstate=disable"
fi
if [[ ${enable_geopm} -eq 1 ]];then
dnf -y --installroot=$CHROOT install kmod-msr-safe-ohpc
dnf -y --installroot=$CHROOT install msr-safe-ohpc
dnf -y --installroot=$CHROOT install msr-safe-slurm-ohpc
fi
Clarifications
1. Configuration of rsyslog for log management
echo 'module(load="imudp")' >> /etc/rsyslog.d/ohpc.conf
echo 'input(type="imudp" port="514")' >> /etc/rsyslog.d/ohpc.conf
systemctl restart rsyslog
This enables rsyslog to listen on UDP port 514, thereby facilitating centralized log collection on the management server (SMS).
echo "*.* action(type=\"omfwd\" Target=\"${sms_ip}\" Port=\"514\" " "Protocol=\"udp\")">> $CHROOT/etc/rsyslog.conf
This allows the compute nodes to be configured to send their logs to the management server (sms_ip).
perl -pi -e "s/^\*\.info/\\#\*\.info/" $CHROOT/etc/rsyslog.conf
perl -pi -e "s/^authpriv/\\#authpriv/" $CHROOT/etc/rsyslog.conf
perl -pi -e "s/^mail/\\#mail/" $CHROOT/etc/rsyslog.conf
perl -pi -e "s/^cron/\\#cron/" $CHROOT/etc/rsyslog.conf
perl -pi -e "s/^uucp/\\#uucp/" $CHROOT/etc/rsyslog.conf
This allows certain categories of logs to be disabled in order to avoid unnecessary overhead.
2. Installation of Clustershell (centralized management of commands on nodes)
if [[ ${enable_clustershell} -eq 1 ]]; then
dnf -y install clustershell
cd /etc/clustershell/groups.d
mv local.cfg local.cfg.orig
echo "adm: ${sms_name}" > local.cfg
echo "compute: ${compute_prefix}[1-${num_computes}]" >> local.cfg
echo "all: @adm,@compute" >> local.cfg
fi
- If enable_clustershell=1, install Clustershell, a tool that allows commands to be executed simultaneously across multiple nodes.
- Configure the local.cfg file to define node groups: adm for the SMS server and compute for the compute nodes.
3. Installation of Genders, a tool for managing node groups within a cluster.
if [[ ${enable_genders} -eq 1 ]]; then
dnf -y install genders-ohpc
echo -e "${sms_name}\tsms" > /etc/genders
for ((i=0; i<$num_computes; i++)) ; do
echo -e "${c_name[$i]}\tcompute,bmc=${c_bmc[$i]}"
done >> /etc/genders
fi
- If enable_genders=1, install Genders, a tool used to classify nodes based on their roles.
- Populate the /etc/genders file by associating each compute node with its BMC address, which is used for out-of-band management via IPMI.
4. Installation of Magpie, a monitoring and performance profiling tool for HPC environments.
if [[ ${enable_magpie} -eq 1 ]]; then
dnf -y install magpie-ohpc
fi
If enable_magpie=1, install Magpie, a performance profiling tool for HPC environments.
5. Configuration of IPMI (power management and serial console control of nodes)
if [[ ${enable_ipmisol} -eq 1 ]]; then
dnf -y install conman-ohpc
for ((i=0; i<$num_computes; i++)) ; do
echo -n 'CONSOLE name="'${c_name[$i]}'" dev="ipmi:'${c_bmc[$i]}'" '
echo 'ipmiopts="'U:${bmc_username},P:${IPMI_PASSWORD:-undefined},W:solpayloadsize'"'
done >> /etc/conman.conf
systemctl enable conman
systemctl start conman
If enable_ipmisol=1, install and configure Conman, a tool that provides access to node serial consoles via IPMI.
6. Installation and configuration of NHC (Node Health Check)
dnf -y install nhc-ohpc
dnf -y --installroot=$CHROOT install nhc-ohpc
echo "HealthCheckProgram=/usr/sbin/nhc" >> /etc/slurm/slurm.conf
echo "HealthCheckInterval=300" >> /etc/slurm/slurm.conf # execute every five minutes
- Install nhc-ohpc, a tool dedicated to monitoring the health status of compute nodes.
- Configure Slurm to perform node health checks every 5 minutes.
7. Activation of GEOPM, an energy management tool for HPC environments.
if [[ ${enable_geopm} -eq 1 ]]; then
export kargs="${kargs} intel_pstate=disable"
fi
If enable_geopm=1, disable intel_pstate, a CPU power management feature, to allow GEOPM to take control.
if [[ ${enable_geopm} -eq 1 ]]; then
dnf -y --installroot=$CHROOT install kmod-msr-safe-ohpc
dnf -y --installroot=$CHROOT install msr-safe-ohpc
dnf -y --installroot=$CHROOT install msr-safe-slurm-ohpc
fi
Install the required modules for GEOPM (msr-safe-ohpc, msr-safe-slurm-ohpc).
This script is essential to finalize the configuration of an OpenHPC cluster by automating log management, node access, and monitoring.
It is not mandatory to enable all these variables. Their activation depends on your needs and the architecture of your cluster.
Guide to Decide Which Variables to Enable (1) or Disable (0)
Variable | Description | Enable (set to 1) if… | Disable (set to 0) if… |
---|---|---|---|
enable_clustershell |
Installs Clustershell (execute commands on multiple nodes simultaneously) | You want to run commands simultaneously on all nodes | You prefer to manage nodes individually |
enable_genders |
Installs Genders (node classification) | You want to organize nodes by role (e.g., compute, storage) | You don’t need advanced node management |
enable_magpie |
Installs Magpie (performance profiling) | You want to analyze workload and application performance | You don’t need detailed optimization |
enable_ipmisol |
Installs Conman (serial console management via IPMI) | Your nodes support IPMI and you want remote management | Your nodes don’t support IPMI |
enable_geopm |
Installs GEOPM (energy management for HPC) | You want to optimize Intel CPU power consumption | You don’t manage advanced power consumption |
Recommendations Based on Your Usage
If your cluster is small and you want a minimal installation:
enable_clustershell=1 # Useful for managing multiple nodes
enable_genders=0 # Not necessarily needed if few nodes
enable_magpie=0 # Only if performance analysis is needed
enable_ipmisol=0 # Only if your nodes have IPMI
enable_geopm=0 # Only for energy optimization
If your cluster is large and complex:
enable_clustershell=1
enable_genders=1
enable_magpie=1
enable_ipmisol=1
enable_geopm=1
Conclusion: Enable only what is necessary for your environment. If in doubt, start with 0 and activate options progressively as needed.
Script Execution
Last metadata expiration check: 2:41:57 ago on Wed Feb 10 01:17:22 2025.
Dependencies resolved.
=================================================================================
Package Architecture Version Repository Size
=================================================================================
Installing:
python3 noarch 1.9.3-1.el9 epel 159 k
Installing dependencies:
noarch noarch 1.9.7-1.el9 epel 268 k
Transaction Summary
=================================================================================
Install 2 Packages
Total download size: 427 k
Installed size: 1.9 M
[1/2]: python3-clustershell-1.9.2-1.el9.noarch.rpm 2.1 MB/s | 206 kB 00:00
[2/2]: clustershell-1.9.1-1.el9.noarch.rpm 2.1 MB/s | 158 kB 00:00
--------------------------------------------------------------------------------
Total 389 kB/s | 364 kB 00:01
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Preparing : 1/1
Installing : python3-clustershell-1.9.2-1.el9.noarch 1/2
Running scriptlet: clustershell-1.9.2-1.el9.noarch 1/2
Installing : clustershell-1.9.2-1.el9.noarch 2/2
Running scriptlet: python3-clustershell-1.9.2-1.el9.noarch 2/2
Verifying : python3-clustershell-1.9.2-1.el9.noarch 1/2
Verifying : clustershell-1.9.2-1.el9.noarch 2/2
Installed:
clustershell-1.9.2-1.el9.noarch python3-clustershell-1.9.2-1.el9.noarch
Last metadata expiration check: 2:44:06 ago on Wed Feb 10 01:17:22 2025.
Dependencies resolved.
=================================================================================
Package Architecture Version Repository Size
=================================================================================
Installing:
noarch noarch 1.4.3-300.ohpc.1.2 OpenHPC 64 k
Transaction Summary
=================================================================================
Install 1 Package
Total download size: 64 k
Installed size: 179 k
Downloading Packages:
noarch-1.4.3-300.ohpc.1.2.noarch.rpm 58 kB/s | 64 kB 00:01
--------------------------------------------------------------------------------
Total 58 kB/s | 64 kB 00:01
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Preparing : 1/1
Installing : ohpc-ohpc-1.4.3-300.ohpc.1.2.noarch 1/1
Running scriptlet: ohpc-ohpc-1.4.3-300.ohpc.1.2.noarch 1/1
Verifying : ohpc-ohpc-1.4.3-300.ohpc.1.2.noarch 1/1
Installed:
ohpc-ohpc-1.4.3-300.ohpc.1.2.noarch
Complete!
config error: error parsing '': given path '' is not absolute.
Analysis of this output:
1. Installation of ClusterShell
- Installed packages:
- clustershell-1.9.3-1.el9.noarch
- python3-clustershell-1.9.3-1.el9.noarch
- Download details:
- Total download size: 389 KB
- Installation completed successfully without errors
2. Installation of NHC (Node Health Check)
- Installed package:
- nhc-ohpc-1.4.3-300.ohpc.3.2.noarch
- Download details:
- Total download size: 66 KB
- Installation completed successfully without errors
3. Problem detected at the end:
Config error: Error parsing ’‘: given path’’ is not absolute.
- Interpretation:
- The error message indicates a configuration problem related to an empty path (’’).
- This may be an issue with NHC (nhc-ohpc), as it uses a configuration file to define the verification script paths.
12. Section 11 of the recipe.sh script
#!/usr/bin/bash
# -----------------------------------------------------------------------------------------
# Example Installation Script Template
# This convenience script encapsulates command-line instructions highlighted in
# an OpenHPC Install Guide that can be used as a starting point to perform a local
# cluster install beginning with bare-metal. Necessary inputs that describe local
# hardware characteristics, desired network settings, and other customizations
# are controlled via a companion input file that is used to initialize variables
# within this script.
# Please see the OpenHPC Install Guide(s) for more information regarding the
# procedure. Note that the section numbering included in this script refers to
# corresponding sections from the companion install guide.
# -----------------------------------------------------------------------------------------
inputFile=${OHPC_INPUT_LOCAL:-/input.local}
if [ ! -e ${inputFile} ];then
echo "Error: Unable to access local input file -> ${inputFile}"
exit 1
else
. ${inputFile} || { echo "Error sourcing ${inputFile}"; exit 1; }
fi
# ----------------------------
# Import files (Section 3.8.5)
# ----------------------------
wwctl overlay import generic /etc/subuid
wwctl overlay import generic /etc/subgid
echo "server ${sms_ip} iburst" | wwctl overlay import generic <(cat) /etc/chrony.conf
wwctl overlay mkdir generic /etc/sysconfig/
wwctl overlay import generic <(echo SLURMD_OPTIONS="--conf-server ${sms_ip}") /etc/sysconfig/slurmd
wwctl overlay mkdir generic --mode 0700 /etc/munge
wwctl overlay import generic /etc/munge/munge.key
wwctl overlay chown generic /etc/munge/munge.key $(id -u munge) $(id -g munge)
wwctl overlay chown generic /etc/munge $(id -u munge) $(id -g munge)
if [[ ${enable_ipoib} -eq 1 ]];then
wwctl overlay mkdir generic /etc/sysconfig/network-scripts/
wwctl overlay import generic /opt/ohpc/pub/examples/network/centos/ifcfg-ib0.ww /etc/sysconfig/network-scripts/ifcfg-ib0.ww
fi
This Bash script is part of an automated OpenHPC installation, a software stack designed for managing High Performance Computing (HPC) clusters.
It is intended to serve as an installation template, based on the official OpenHPC guide.
This script handles the configuration of several critical components of the cluster:
- Importing system files into the overlay (UID management, Chrony configuration)
- Setting up Slurm and the Munge authentication service
- (Optional) Network setup for InfiniBand if enabled
1. Importing files into overlays (Section 3.8.5)
wwctl overlay import generic /etc/subuid
wwctl overlay import generic /etc/subgid
echo "server ${sms_ip} iburst" | wwctl overlay import generic <(cat) /etc/chrony.conf
wwctl overlay import copies specific files into an overlay (a file layer used by cluster nodes).
/etc/subuid and /etc/subgid: Define UID/GID ranges for users, commonly used with containers.
/etc/chrony.conf: Configures Chrony for time synchronization. ${sms_ip} is the master server’s IP.
Purpose: Provide compute nodes with necessary system files for consistent configuration.
Verification
[root@master-ohpc /]# wwctl overlay cat generic /etc/chrony.cong
server 192.168.70.41 iburst
2. Creating and configuring other system files
wwctl overlay mkdir generic /etc/sysconfig/
wwctl overlay import generic <(echo SLURMD_OPTIONS="--conf-server ${sms_ip}") /etc/sysconfig/slurmd
- wwctl overlay mkdir creates the /etc/sysconfig/ directory in the overlay.
- wwctl overlay import adds a file with Slurm options: SLURMD_OPTIONS=“–conf-server ${sms_ip}”
Purpose: Allow compute nodes to get their Slurm configuration from the master server, and prepare the Slurm configuration, the workload and job scheduling system used in OpenHPC.
Verification
[root@master-ohpc /]# wwctl overlay cat generic /etc/sysconfig/slurmd
SLURMD_OPTIONS=--conf-server 192.168.70.41
3. Munge Configuration (Slurm authentication)
wwctl overlay mkdir generic --mode 0700 /etc/munge
wwctl overlay import generic /etc/munge/munge.key
wwctl overlay chown generic /etc/munge/munge.key $(id -u munge) $(id -g munge)
wwctl overlay chown generic /etc/munge $(id -u munge) $(id -g munge)
Munge is the authentication service used by Slurm.
These commands:
Create /etc/munge with restricted permissions (0700)
Import the shared key munge.key
Set the file and directory ownership to the munge user for security
Purpose:
Secure authentication for communication between server and nodes.
4. Network setup using InfiniBand (optional)
if [[ ${enable_ipoib} -eq 1 ]]; then
wwctl overlay mkdir generic /etc/sysconfig/network-scripts/
wwctl overlay import generic /opt/ohpc/pub/examples/network/centos/ifcfg-ib0.ww /etc/sysconfig/network-scripts/ifcfg-ib0.ww
fi
InfiniBand is a high-performance network protocol used in HPC.
If enable_ipoib = 1, the script:
Creates the configuration directory
Imports the file ifcfg-ib0.ww to enable InfiniBand on interface ib0
Purpose:
Allow compute nodes to communicate via InfiniBand with minimal latency and maximum throughput.
13. Section 12 of the recipe.sh script
#!/usr/bin/bash
# -----------------------------------------------------------------------------------------
# Example Installation Script Template
# This convenience script encapsulates command-line instructions highlighted in
# an OpenHPC Install Guide that can be used as a starting point to perform a local
# cluster install beginning with bare-metal. Necessary inputs that describe local
# hardware characteristics, desired network settings, and other customizations
# are controlled via a companion input file that is used to initialize variables
# within this script.
# Please see the OpenHPC Install Guide(s) for more information regarding the
# procedure. Note that the section numbering included in this script refers to
# corresponding sections from the companion install guide.
# -----------------------------------------------------------------------------------------
inputFile=${OHPC_INPUT_LOCAL:-/input.local}
if [ ! -e ${inputFile} ];then
echo "Error: Unable to access local input file -> ${inputFile}"
exit 1
else
. ${inputFile} || { echo "Error sourcing ${inputFile}"; exit 1; }
fi
# --------------------------------------
# Assemble bootstrap image (Section 3.9)
# --------------------------------------
wwctl container build rocky-9.4
wwctl overlay build
# Add hosts to cluster
for ((i=0; i<$num_computes; i++)) ; do
wwctl node add --container=rocky-9.4 \
--ipaddr=${c_ip[$i]} --hwaddr=${c_mac[$i]} ${c_name[i]}
done
wwctl overlay build
wwctl configure --all
# Enable and start munge and slurmctld (Cont.)
systemctl enable --now munge
systemctl enable --now slurmctld
# Optionally, add arguments to bootstrap kernel
if [[ ${enable_kargs} -eq 1 ]]; then
wwctl node set --yes --kernelargs="${kargs}" "${compute_regex}"
fi
This script is designed to automate the installation and configuration of an OpenHPC cluster.
It begins by preparing the environment using a local configuration file, then builds the container image, adds compute nodes to the cluster, applies the required configuration, and starts essential services. Finally, it offers the option to add kernel arguments if needed.
1. Creating the Boot Image and Overlays
- Line 14: Uses the command
wwctl container build rocky-9.4
to create a container based on Rocky Linux 9.4, a Linux distribution commonly used for clusters.
- Line 15: Creates an overlay (an additional configuration file layer) using
wwctl overlay build
.
2. Adding Hosts to the Cluster
- Lines 17–20: This loop adds compute nodes to the cluster.
For each compute node (defined by the variablenum_computes
), it assigns:- an IP address
${c_ip[$i]}
, - a MAC address
${c_mac[$i]}
, and - a node name
${c_name[$i]}
.
wwctl node add
command is used to register each node in the cluster with the appropriate configuration. - an IP address
3. Rebuilding the Overlay and Applying Configuration
- Line 21: Rebuilds the overlay using
wwctl overlay build
after all nodes have been added.
- Line 22: Applies the configuration cluster-wide using
wwctl configure --all
.
4. Starting and Enabling Services
- Lines 25–26: The
munge
andslurmctld
services are enabled and started:munge
is an authentication service used to secure communication within HPC clusters.
slurmctld
is the central controller for SLURM, the resource and job scheduling system.
5. (Optional) Adding Kernel Arguments
- Lines 29–31: If the variable
enable_kargs
is set to 1, the script allows for adding custom kernel arguments to compute nodes usingwwctl node set
.
This can be used to pass advanced parameters to the Linux kernel.
Note:
This script does not reinstall the Rocky Linux OS on your nodes.
Instead, it adds specific cluster-related configurations (such asmunge
,slurm
, and networking).
If your nodes are already properly set up with IP addresses and base services, this script will integrate them into the cluster without altering their existing installation.
14. Section 13 of the recipe.sh script
#!/usr/bin/bash
# ----------------------------------------------------------------------------------->
# Example Installation Script Template
# This convenience script encapsulates command-line instructions highlighted in
# an OpenHPC Install Guide that can be used as a starting point to perform a local
# cluster install beginning with bare-metal. Necessary inputs that describe local
# hardware characteristics, desired network settings, and other customizations
# are controlled via a companion input file that is used to initialize variables
# within this script.
# Please see the OpenHPC Install Guide(s) for more information regarding the
# procedure. Note that the section numbering included in this script refers to
# corresponding sections from the companion install guide.
# ----------------------------------------------------------------------------------->
inputFile=${OHPC_INPUT_LOCAL:-/input.local}
if [ ! -e ${inputFile} ];then
echo "Error: Unable to access local input file -> ${inputFile}"
exit 1
else
. ${inputFile} || { echo "Error sourcing ${inputFile}"; exit 1; }
fi
# ---------------------------------
# Boot compute nodes (Section 3.10)
# ---------------------------------
for ((i=0; i<${num_computes}; i++)) ; do
ipmitool -I lanplus -H ${c_bmc[$i]} -U ${bmc_username} -P ${bmc_password} chassis power reset
done
This script is part of an installation process for an HPC cluster using OpenHPC. It focuses on rebooting the compute nodes via IPMI.
The error encountered when executing this script is as follows:
[root@master-ohpc /]# ./recipe13.sh
Unable to read password from environment
Chassis Power Control: Reset
Unable to read password from environment
Solution:
In your script, you are using:
ipmitool -E -I lanplus -H ${c_bmc[$i]} -U ${bmc_username} -P ${bmc_password} chassis power cycle
The -E option tells ipmitool to retrieve the password from the IPMITOOL_PASSWORD environment variable.
But you’re also using -P ${bmc_password}, which is supposed to pass the password directly.
If your script already loads the bmc_password variable from /input.local, modify the line as follows:
ipmitool -I lanplus -H ${c_bmc[$i]} -U ${bmc_username} -P ${bmc_password} chassis power cycle
This will force the use of the password defined in bmc_password.
Result
[root@master-ohpc /]# ./recipe13.sh
Chassis Power Control: Reset
Chassis Power Control: Reset
[root@master-ohpc /]# nano recipe13.sh
[root@master-ohpc /]# ipmitool -I lanplus -H 192.168.201.51 -U root -P calvin chassis power status
Chassis Power is on
[root@master-ohpc /]# ipmitool -I lanplus -H 192.168.201.52 -U root -P calvin chassis power status
Chassis Power is on
[root@master-ohpc /]# ping 192.168.201.51
PING 192.168.201.51 (192.168.201.51) 56(84) bytes of data.
64 bytes from 192.168.201.51: icmp_seq=1 ttl=63 time=0.284 ms
64 bytes from 192.168.201.51: icmp_seq=2 ttl=63 time=0.302 ms
--- 192.168.201.51 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1037ms
rtt min/avg/max/mdev = 0.284/0.293/0.302/0.009 ms
[root@master-ohpc /]# ping 192.168.70.51
PING 192.168.70.51 (192.168.70.51) 56(84) bytes of data.
64 bytes from 192.168.70.51: icmp_seq=1 ttl=64 time=0.451 ms
64 bytes from 192.168.70.51: icmp_seq=2 ttl=64 time=0.390 ms
64 bytes from 192.168.70.51: icmp_seq=3 ttl=64 time=0.399 ms
64 bytes from 192.168.70.51: icmp_seq=4 ttl=64 time=0.392 ms
64 bytes from 192.168.70.51: icmp_seq=5 ttl=64 time=0.339 ms
--- 192.168.70.51 ping statistics ---
5 packets transmitted, 5 received, 0% packet loss, time 5118ms
rtt min/avg/max/mdev = 0.339/0.394/0.451/0.032 ms
[root@master-ohpc /]# ping 192.168.70.52
PING 192.168.70.52 (192.168.70.52) 56(84) bytes of data.
64 bytes from 192.168.70.52: icmp_seq=1 ttl=64 time=0.337 ms
64 bytes from 192.168.70.52: icmp_seq=2 ttl=64 time=0.398 ms
64 bytes from 192.168.70.52: icmp_seq=3 ttl=64 time=0.398 ms
64 bytes from 192.168.70.52: icmp_seq=4 ttl=64 time=0.381 ms
15. Section 14 of the recipe.sh script
inputFile=${OHPC_INPUT_LOCAL:-/input.local}
if [ ! -e ${inputFile} ];then
echo "Error: Unable to access local input file -> ${inputFile}"
exit 1
else
. ${inputFile} || { echo "Error sourcing ${inputFile}"; exit 1; }
fi
#!/usr/bin/bash
# -----------------------------------------------------------------------------------------
# Example Installation Script Template
# This convenience script encapsulates command-line instructions highlighted in
# an OpenHPC Install Guide that can be used as a starting point to perform a local
# cluster install beginning with bare-metal. Necessary inputs that describe local
# hardware characteristics, desired network settings, and other customizations
# are controlled via a companion input file that is used to initialize variables
# within this script.
# Please see the OpenHPC Install Guide(s) for more information regarding the
# procedure. Note that the section numbering included in this script refers to
# corresponding sections from the companion install guide.
# -----------------------------------------------------------------------------------------
# ---------------------------------------
# Install Development Tools (Section 4.1)
# ---------------------------------------
dnf -y install ohpc-autotools
dnf -y install EasyBuild-ohpc
dnf -y install hwloc-ohpc
dnf -y install spack-ohpc
dnf -y install valgrind-ohpc
# -------------------------------
# Install Compilers (Section 4.2)
# -------------------------------
dnf -y install gnu14-compilers-ohpc
# --------------------------------
# Install MPI Stacks (Section 4.3)
# --------------------------------
if [[ ${enable_mpi_defaults} -eq 1 ]];then
dnf -y install openmpi5-pmix-gnu14-ohpc mpich-ofi-gnu14-ohpc
fi
if [[ ${enable_ib} -eq 1 ]];then
dnf -y install mvapich2-gnu14-ohpc
fi
if [[ ${enable_opa} -eq 1 ]];then
dnf -y install mvapich2-psm2-gnu14-ohpc
fi
# ---------------------------------------
# Install Performance Tools (Section 4.4)
# ---------------------------------------
dnf -y install ohpc-gnu14-perf-tools
if [[ ${enable_geopm} -eq 1 ]];then
dnf -y install ohpc-gnu14-geopm
fi
dnf -y install lmod-defaults-gnu14-openmpi5-ohpc
# ---------------------------------------------------
# Install 3rd Party Libraries and Tools (Section 4.6)
# ---------------------------------------------------
dnf -y install ohpc-gnu14-serial-libs
dnf -y install ohpc-gnu14-io-libs
dnf -y install ohpc-gnu14-python-libs
dnf -y install ohpc-gnu14-runtimes
if [[ ${enable_mpi_defaults} -eq 1 ]];then
dnf -y install ohpc-gnu14-mpich-parallel-libs
dnf -y install ohpc-gnu14-openmpi5-parallel-libs
fi
if [[ ${enable_ib} -eq 1 ]];then
dnf -y install ohpc-gnu14-mvapich2-parallel-libs
fi
if [[ ${enable_opa} -eq 1 ]];then
dnf -y install ohpc-gnu14-mvapich2-parallel-libs
fi
# ----------------------------------------
# Install Intel oneAPI tools (Section 4.7)
# ----------------------------------------
if [[ ${enable_intel_packages} -eq 1 ]];then
dnf -y install intel-oneapi-toolkit-release-ohpc
rpm --import https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
dnf -y install intel-compilers-devel-ohpc
dnf -y install intel-mpi-devel-ohpc
if [[ ${enable_opa} -eq 1 ]];then
dnf -y install mvapich2-psm2-intel-ohpc
fi
dnf -y install openmpi5-pmix-intel-ohpc
dnf -y install ohpc-intel-serial-libs
dnf -y install ohpc-intel-geopm
dnf -y install ohpc-intel-io-libs
dnf -y install ohpc-intel-perf-tools
dnf -y install ohpc-intel-python3-libs
dnf -y install ohpc-intel-mpich-parallel-libs
dnf -y install ohpc-intel-mvapich2-parallel-libs
dnf -y install ohpc-intel-openmpi5-parallel-libs
dnf -y install ohpc-intel-impi-parallel-libs
fi
# -------------------------------------------------------------
# Allow for optional sleep to wait for provisioning to complete
# -------------------------------------------------------------
sleep ${provision_wait}
This script runs successfully without generating any errors. The resulting output is:
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
ohpc-autotools x86_64 3.2-320.ohpc.1.1 OpenHPC-updates 6.9 k
Installing dependencies:
autoconf-ohpc x86_64 2.71-300.ohpc.2.6 OpenHPC 953 k
automake-ohpc x86_64 1.16.5-300.ohpc.2.5 OpenHPC 806 k
libtool-ohpc x86_64 2.4.6-300.ohpc.1.5 OpenHPC 680 k
m4 x86_64 1.4.19-1.el9 appstream 294 k
perl-Thread-Queue noarch 3.14-460.el9 appstream 21 k
perl-threads x86_64 1:2.25-460.el9 appstream 57 k
perl-threads-shared x86_64 1.61-460.el9.0.1 appstream 44 k
Transaction Summary
==============================================================================================================================================================================================================
Install 8 Packages
Total download size: 2.8 M
Installed size: 12 M
Downloading Packages:
(1/8): libtool-ohpc-2.4.6-300.ohpc.1.5.x86_64.rpm 341 kB/s | 680 kB 00:01
(2/8): autoconf-ohpc-2.71-300.ohpc.2.6.x86_64.rpm 439 kB/s | 953 kB 00:02
(3/8): automake-ohpc-1.16.5-300.ohpc.2.5.x86_64.rpm 369 kB/s | 806 kB 00:02
(4/8): ohpc-autotools-3.2-320.ohpc.1.1.x86_64.rpm 36 kB/s | 6.9 kB 00:00
(5/8): perl-threads-shared-1.61-460.el9.0.1.x86_64.rpm 467 kB/s | 44 kB 00:00
(6/8): perl-threads-2.25-460.el9.x86_64.rpm 609 kB/s | 57 kB 00:00
(7/8): perl-Thread-Queue-3.14-460.el9.noarch.rpm 179 kB/s | 21 kB 00:00
(8/8): m4-1.4.19-1.el9.x86_64.rpm 2.7 MB/s | 294 kB 00:00
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 924 kB/s | 2.8 MB 00:03
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : perl-threads-1:2.25-460.el9.x86_64 1/8
Installing : perl-threads-shared-1.61-460.el9.0.1.x86_64 2/8
Installing : perl-Thread-Queue-3.14-460.el9.noarch 3/8
Installing : m4-1.4.19-1.el9.x86_64 4/8
Installing : autoconf-ohpc-2.71-300.ohpc.2.6.x86_64 5/8
Installing : automake-ohpc-1.16.5-300.ohpc.2.5.x86_64 6/8
Installing : libtool-ohpc-2.4.6-300.ohpc.1.5.x86_64 7/8
Installing : ohpc-autotools-3.2-320.ohpc.1.1.x86_64 8/8
Running scriptlet: ohpc-autotools-3.2-320.ohpc.1.1.x86_64 8/8
Verifying : autoconf-ohpc-2.71-300.ohpc.2.6.x86_64 1/8
Verifying : automake-ohpc-1.16.5-300.ohpc.2.5.x86_64 2/8
Verifying : libtool-ohpc-2.4.6-300.ohpc.1.5.x86_64 3/8
Verifying : ohpc-autotools-3.2-320.ohpc.1.1.x86_64 4/8
Verifying : perl-Thread-Queue-3.14-460.el9.noarch 5/8
Verifying : perl-threads-shared-1.61-460.el9.0.1.x86_64 6/8
Verifying : perl-threads-1:2.25-460.el9.x86_64 7/8
Verifying : m4-1.4.19-1.el9.x86_64 8/8
Installed:
autoconf-ohpc-2.71-300.ohpc.2.6.x86_64 automake-ohpc-1.16.5-300.ohpc.2.5.x86_64 libtool-ohpc-2.4.6-300.ohpc.1.5.x86_64 m4-1.4.19-1.el9.x86_64 ohpc-autotools-3.2-320.ohpc.1.1.x86_64
perl-Thread-Queue-3.14-460.el9.noarch perl-threads-1:2.25-460.el9.x86_64 perl-threads-shared-1.61-460.el9.0.1.x86_64
Complete!
Last metadata expiration check: 2:35:33 ago on Tue Feb 25 07:33:36 2025.
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
EasyBuild-ohpc x86_64 4.9.4-320.ohpc.1.1 OpenHPC-updates 14 M
Installing dependencies:
patch x86_64 2.7.6-16.el9 appstream 127 k
Transaction Summary
==============================================================================================================================================================================================================
Install 2 Packages
Total download size: 14 M
Installed size: 70 M
Downloading Packages:
(1/2): patch-2.7.6-16.el9.x86_64.rpm 2.2 MB/s | 127 kB 00:00
(2/2): EasyBuild-ohpc-4.9.4-320.ohpc.1.1.x86_64.rpm 5.4 MB/s | 14 MB 00:02
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 4.9 MB/s | 14 MB 00:02
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : patch-2.7.6-16.el9.x86_64 1/2
Installing : EasyBuild-ohpc-4.9.4-320.ohpc.1.1.x86_64 2/2
Running scriptlet: EasyBuild-ohpc-4.9.4-320.ohpc.1.1.x86_64 2/2
Verifying : EasyBuild-ohpc-4.9.4-320.ohpc.1.1.x86_64 1/2
Verifying : patch-2.7.6-16.el9.x86_64 2/2
Installed:
EasyBuild-ohpc-4.9.4-320.ohpc.1.1.x86_64 patch-2.7.6-16.el9.x86_64
Complete!
Last metadata expiration check: 2:35:51 ago on Tue Feb 25 07:33:36 2025.
Package hwloc-ohpc-2.11.1-320.ohpc.1.1.x86_64 is already installed.
Dependencies resolved.
Nothing to do.
Complete!
Last metadata expiration check: 2:35:52 ago on Tue Feb 25 07:33:36 2025.
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
spack-ohpc x86_64 0.22.2-320.ohpc.3.1 OpenHPC-updates 11 M
Upgrading:
libgcc x86_64 11.5.0-5.el9_5 baseos 84 k
libgomp x86_64 11.5.0-5.el9_5 baseos 260 k
libstdc++ x86_64 11.5.0-5.el9_5 baseos 731 k
libstdc++-devel x86_64 11.5.0-5.el9_5 appstream 2.2 M
Installing dependencies:
apr x86_64 1.7.0-12.el9_3 appstream 122 k
apr-util x86_64 1.6.1-23.el9 appstream 94 k
apr-util-bdb x86_64 1.6.1-23.el9 appstream 12 k
cpp x86_64 11.5.0-5.el9_5 appstream 11 M
gcc x86_64 11.5.0-5.el9_5 appstream 32 M
gcc-c++ x86_64 11.5.0-5.el9_5 appstream 13 M
git x86_64 2.43.5-2.el9_5 appstream 50 k
git-core x86_64 2.43.5-2.el9_5 appstream 4.4 M
git-core-doc noarch 2.43.5-2.el9_5 appstream 2.7 M
glibc-devel x86_64 2.34-125.el9_5.1 appstream 31 k
glibc-headers x86_64 2.34-125.el9_5.1 appstream 435 k
kernel-headers x86_64 5.14.0-503.26.1.el9_5 appstream 3.5 M
libmpc x86_64 1.2.1-4.el9 appstream 61 k
libserf x86_64 1.3.9-27.el9 appstream 58 k
libxcrypt-devel x86_64 4.4.18-3.el9 appstream 28 k
mercurial x86_64 6.1.4-1.el9 epel 5.0 M
perl-DynaLoader x86_64 1.47-481.el9 appstream 24 k
perl-Error noarch 1:0.17029-7.el9 appstream 41 k
perl-File-Find noarch 1.37-481.el9 appstream 24 k
perl-Git noarch 2.43.5-2.el9_5 appstream 37 k
perl-TermReadKey x86_64 2.38-11.el9 appstream 36 k
perl-lib x86_64 0.65-481.el9 appstream 13 k
subversion x86_64 1.14.1-5.el9_0 appstream 1.0 M
subversion-libs x86_64 1.14.1-5.el9_0 appstream 1.5 M
utf8proc x86_64 2.6.1-4.el9 appstream 79 k
zstd x86_64 1.5.1-2.el9 baseos 546 k
Installing weak dependencies:
apr-util-openssl x86_64 1.6.1-23.el9 appstream 14 k
Transaction Summary
==============================================================================================================================================================================================================
Install 28 Packages
Upgrade 4 Packages
Total download size: 90 M
Downloading Packages:
(1/32): zstd-1.5.1-2.el9.x86_64.rpm 4.5 MB/s | 546 kB 00:00
(2/32): apr-util-openssl-1.6.1-23.el9.x86_64.rpm 85 kB/s | 14 kB 00:00
(3/32): mercurial-6.1.4-1.el9.x86_64.rpm 14 MB/s | 5.0 MB 00:00
(4/32): apr-util-bdb-1.6.1-23.el9.x86_64.rpm 139 kB/s | 12 kB 00:00
(5/32): apr-util-1.6.1-23.el9.x86_64.rpm 845 kB/s | 94 kB 00:00
(6/32): libserf-1.3.9-27.el9.x86_64.rpm 271 kB/s | 58 kB 00:00
(7/32): perl-Error-0.17029-7.el9.noarch.rpm 210 kB/s | 41 kB 00:00
(8/32): apr-1.7.0-12.el9_3.x86_64.rpm 1.7 MB/s | 122 kB 00:00
(9/32): libmpc-1.2.1-4.el9.x86_64.rpm 699 kB/s | 61 kB 00:00
(10/32): libxcrypt-devel-4.4.18-3.el9.x86_64.rpm 267 kB/s | 28 kB 00:00
(11/32): perl-lib-0.65-481.el9.x86_64.rpm 163 kB/s | 13 kB 00:00
(12/32): utf8proc-2.6.1-4.el9.x86_64.rpm 175 kB/s | 79 kB 00:00
(13/32): perl-DynaLoader-1.47-481.el9.x86_64.rpm 581 kB/s | 24 kB 00:00
(14/32): subversion-libs-1.14.1-5.el9_0.x86_64.rpm 3.5 MB/s | 1.5 MB 00:00
(15/32): perl-File-Find-1.37-481.el9.noarch.rpm 39 kB/s | 24 kB 00:00
(16/32): subversion-1.14.1-5.el9_0.x86_64.rpm 1.8 MB/s | 1.0 MB 00:00
(17/32): perl-Git-2.43.5-2.el9_5.noarch.rpm 1.1 MB/s | 37 kB 00:00
(18/32): git-core-doc-2.43.5-2.el9_5.noarch.rpm 8.3 MB/s | 2.7 MB 00:00
(19/32): spack-ohpc-0.22.2-320.ohpc.3.1.x86_64.rpm 4.2 MB/s | 11 MB 00:02
(20/32): perl-TermReadKey-2.38-11.el9.x86_64.rpm 33 kB/s | 36 kB 00:01
(21/32): gcc-c++-11.5.0-5.el9_5.x86_64.rpm 22 MB/s | 13 MB 00:00
(22/32): gcc-11.5.0-5.el9_5.x86_64.rpm 51 MB/s | 32 MB 00:00
(23/32): glibc-headers-2.34-125.el9_5.1.x86_64.rpm 1.8 MB/s | 435 kB 00:00
(24/32): glibc-devel-2.34-125.el9_5.1.x86_64.rpm 1.2 MB/s | 31 kB 00:00
(25/32): git-2.43.5-2.el9_5.x86_64.rpm 2.8 MB/s | 50 kB 00:00
(26/32): kernel-headers-5.14.0-503.26.1.el9_5.x86_64.rpm 24 MB/s | 3.5 MB 00:00
(27/32): git-core-2.43.5-2.el9_5.x86_64.rpm 17 MB/s | 4.4 MB 00:00
(28/32): libstdc++-11.5.0-5.el9_5.x86_64.rpm 3.1 MB/s | 731 kB 00:00
(29/32): libgcc-11.5.0-5.el9_5.x86_64.rpm 5.6 MB/s | 84 kB 00:00
(30/32): libgomp-11.5.0-5.el9_5.x86_64.rpm 1.4 MB/s | 260 kB 00:00
(31/32): libstdc++-devel-11.5.0-5.el9_5.x86_64.rpm 19 MB/s | 2.2 MB 00:00
(32/32): cpp-11.5.0-5.el9_5.x86_64.rpm 8.6 MB/s | 11 MB 00:01
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 12 MB/s | 90 MB 00:07
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Upgrading : libgcc-11.5.0-5.el9_5.x86_64 1/36
Running scriptlet: libgcc-11.5.0-5.el9_5.x86_64 1/36
Upgrading : libstdc++-11.5.0-5.el9_5.x86_64 2/36
Installing : apr-1.7.0-12.el9_3.x86_64 3/36
Installing : apr-util-bdb-1.6.1-23.el9.x86_64 4/36
Installing : apr-util-1.6.1-23.el9.x86_64 5/36
Installing : apr-util-openssl-1.6.1-23.el9.x86_64 6/36
Installing : libmpc-1.2.1-4.el9.x86_64 7/36
Installing : git-core-2.43.5-2.el9_5.x86_64 8/36
Installing : git-core-doc-2.43.5-2.el9_5.noarch 9/36
Installing : cpp-11.5.0-5.el9_5.x86_64 10/36
Installing : libserf-1.3.9-27.el9.x86_64 11/36
Installing : zstd-1.5.1-2.el9.x86_64 12/36
Upgrading : libstdc++-devel-11.5.0-5.el9_5.x86_64 13/36
Upgrading : libgomp-11.5.0-5.el9_5.x86_64 14/36
Installing : kernel-headers-5.14.0-503.26.1.el9_5.x86_64 15/36
Installing : glibc-headers-2.34-125.el9_5.1.x86_64 16/36
Installing : glibc-devel-2.34-125.el9_5.1.x86_64 17/36
Installing : libxcrypt-devel-4.4.18-3.el9.x86_64 18/36
Installing : gcc-11.5.0-5.el9_5.x86_64 19/36
Installing : gcc-c++-11.5.0-5.el9_5.x86_64 20/36
Installing : perl-File-Find-1.37-481.el9.noarch 21/36
Installing : perl-DynaLoader-1.47-481.el9.x86_64 22/36
Installing : perl-TermReadKey-2.38-11.el9.x86_64 23/36
Installing : perl-lib-0.65-481.el9.x86_64 24/36
Installing : utf8proc-2.6.1-4.el9.x86_64 25/36
Installing : subversion-libs-1.14.1-5.el9_0.x86_64 26/36
Installing : subversion-1.14.1-5.el9_0.x86_64 27/36
Running scriptlet: subversion-1.14.1-5.el9_0.x86_64 27/36
Installing : perl-Error-1:0.17029-7.el9.noarch 28/36
Installing : git-2.43.5-2.el9_5.x86_64 29/36
Installing : perl-Git-2.43.5-2.el9_5.noarch 30/36
Installing : mercurial-6.1.4-1.el9.x86_64 31/36
Installing : spack-ohpc-0.22.2-320.ohpc.3.1.x86_64 32/36
Cleanup : libstdc++-devel-11.5.0-2.el9.x86_64 33/36
Cleanup : libstdc++-11.5.0-2.el9.x86_64 34/36
Cleanup : libgcc-11.5.0-2.el9.x86_64 35/36
Running scriptlet: libgcc-11.5.0-2.el9.x86_64 35/36
Cleanup : libgomp-11.5.0-2.el9.x86_64 36/36
Running scriptlet: libgomp-11.5.0-2.el9.x86_64 36/36
Verifying : spack-ohpc-0.22.2-320.ohpc.3.1.x86_64 1/36
Verifying : mercurial-6.1.4-1.el9.x86_64 2/36
Verifying : zstd-1.5.1-2.el9.x86_64 3/36
Verifying : apr-util-openssl-1.6.1-23.el9.x86_64 4/36
Verifying : apr-util-bdb-1.6.1-23.el9.x86_64 5/36
Verifying : apr-util-1.6.1-23.el9.x86_64 6/36
Verifying : libserf-1.3.9-27.el9.x86_64 7/36
Verifying : perl-Error-1:0.17029-7.el9.noarch 8/36
Verifying : utf8proc-2.6.1-4.el9.x86_64 9/36
Verifying : apr-1.7.0-12.el9_3.x86_64 10/36
Verifying : libmpc-1.2.1-4.el9.x86_64 11/36
Verifying : libxcrypt-devel-4.4.18-3.el9.x86_64 12/36
Verifying : perl-lib-0.65-481.el9.x86_64 13/36
Verifying : perl-DynaLoader-1.47-481.el9.x86_64 14/36
Verifying : perl-File-Find-1.37-481.el9.noarch 15/36
Verifying : subversion-libs-1.14.1-5.el9_0.x86_64 16/36
Verifying : subversion-1.14.1-5.el9_0.x86_64 17/36
Verifying : perl-TermReadKey-2.38-11.el9.x86_64 18/36
Verifying : perl-Git-2.43.5-2.el9_5.noarch 19/36
Verifying : git-core-doc-2.43.5-2.el9_5.noarch 20/36
Verifying : gcc-c++-11.5.0-5.el9_5.x86_64 21/36
Verifying : gcc-11.5.0-5.el9_5.x86_64 22/36
Verifying : cpp-11.5.0-5.el9_5.x86_64 23/36
Verifying : glibc-headers-2.34-125.el9_5.1.x86_64 24/36
Verifying : glibc-devel-2.34-125.el9_5.1.x86_64 25/36
Verifying : git-core-2.43.5-2.el9_5.x86_64 26/36
Verifying : git-2.43.5-2.el9_5.x86_64 27/36
Verifying : kernel-headers-5.14.0-503.26.1.el9_5.x86_64 28/36
Verifying : libstdc++-11.5.0-5.el9_5.x86_64 29/36
Verifying : libstdc++-11.5.0-2.el9.x86_64 30/36
Verifying : libgomp-11.5.0-5.el9_5.x86_64 31/36
Verifying : libgomp-11.5.0-2.el9.x86_64 32/36
Verifying : libgcc-11.5.0-5.el9_5.x86_64 33/36
Verifying : libgcc-11.5.0-2.el9.x86_64 34/36
Verifying : libstdc++-devel-11.5.0-5.el9_5.x86_64 35/36
Verifying : libstdc++-devel-11.5.0-2.el9.x86_64 36/36
Upgraded:
libgcc-11.5.0-5.el9_5.x86_64 libgomp-11.5.0-5.el9_5.x86_64 libstdc++-11.5.0-5.el9_5.x86_64 libstdc++-devel-11.5.0-5.el9_5.x86_64
Installed:
apr-1.7.0-12.el9_3.x86_64 apr-util-1.6.1-23.el9.x86_64 apr-util-bdb-1.6.1-23.el9.x86_64 apr-util-openssl-1.6.1-23.el9.x86_64 cpp-11.5.0-5.el9_5.x86_64
gcc-11.5.0-5.el9_5.x86_64 gcc-c++-11.5.0-5.el9_5.x86_64 git-2.43.5-2.el9_5.x86_64 git-core-2.43.5-2.el9_5.x86_64 git-core-doc-2.43.5-2.el9_5.noarch
glibc-devel-2.34-125.el9_5.1.x86_64 glibc-headers-2.34-125.el9_5.1.x86_64 kernel-headers-5.14.0-503.26.1.el9_5.x86_64 libmpc-1.2.1-4.el9.x86_64 libserf-1.3.9-27.el9.x86_64
libxcrypt-devel-4.4.18-3.el9.x86_64 mercurial-6.1.4-1.el9.x86_64 perl-DynaLoader-1.47-481.el9.x86_64 perl-Error-1:0.17029-7.el9.noarch perl-File-Find-1.37-481.el9.noarch
perl-Git-2.43.5-2.el9_5.noarch perl-TermReadKey-2.38-11.el9.x86_64 perl-lib-0.65-481.el9.x86_64 spack-ohpc-0.22.2-320.ohpc.3.1.x86_64 subversion-1.14.1-5.el9_0.x86_64
subversion-libs-1.14.1-5.el9_0.x86_64 utf8proc-2.6.1-4.el9.x86_64 zstd-1.5.1-2.el9.x86_64
Complete!
Last metadata expiration check: 2:36:24 ago on Tue Feb 25 07:33:36 2025.
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
valgrind-ohpc x86_64 3.23.0-320.ohpc.1.1 OpenHPC-updates 7.9 M
Transaction Summary
==============================================================================================================================================================================================================
Install 1 Package
Total download size: 7.9 M
Installed size: 58 M
Downloading Packages:
valgrind-ohpc-3.23.0-320.ohpc.1.1.x86_64.rpm 2.9 MB/s | 7.9 MB 00:02
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 2.9 MB/s | 7.9 MB 00:02
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : valgrind-ohpc-3.23.0-320.ohpc.1.1.x86_64 1/1
Verifying : valgrind-ohpc-3.23.0-320.ohpc.1.1.x86_64 1/1
Installed:
valgrind-ohpc-3.23.0-320.ohpc.1.1.x86_64
Complete!
Last metadata expiration check: 2:36:29 ago on Tue Feb 25 07:33:36 2025.
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
gnu14-compilers-ohpc x86_64 14.2.0-320.ohpc.2.1 OpenHPC-updates 77 M
Transaction Summary
==============================================================================================================================================================================================================
Install 1 Package
Total download size: 77 M
Installed size: 296 M
Downloading Packages:
gnu14-compilers-ohpc-14.2.0-320.ohpc.2.1.x86_64.rpm 6.5 MB/s | 77 MB 00:11
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 6.5 MB/s | 77 MB 00:11
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : gnu14-compilers-ohpc-14.2.0-320.ohpc.2.1.x86_64 1/1
Verifying : gnu14-compilers-ohpc-14.2.0-320.ohpc.2.1.x86_64 1/1
Installed:
gnu14-compilers-ohpc-14.2.0-320.ohpc.2.1.x86_64
Complete!
Last metadata expiration check: 2:36:50 ago on Tue Feb 25 07:33:36 2025.
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
mpich-ofi-gnu14-ohpc x86_64 3.4.3-320.ohpc.1.1 OpenHPC-updates 6.8 M
openmpi5-pmix-gnu14-ohpc x86_64 5.0.5-320.ohpc.5.1 OpenHPC-updates 11 M
Installing dependencies:
annobin x86_64 12.65-1.el9 appstream 1.0 M
dwz x86_64 0.14-3.el9 appstream 127 k
efi-srpm-macros noarch 6-2.el9_0 appstream 22 k
fonts-srpm-macros noarch 1:2.0.5-7.el9.1 appstream 27 k
gcc-plugin-annobin x86_64 11.5.0-5.el9_5 appstream 39 k
ghc-srpm-macros noarch 1.5.0-6.el9 appstream 7.8 k
go-srpm-macros noarch 3.6.0-3.el9 appstream 26 k
kernel-srpm-macros noarch 1.0-13.el9 appstream 15 k
libfabric-ohpc x86_64 1.18.0-300.ohpc.2.6 OpenHPC 850 k
libpsm2 x86_64 11.2.230-1.el9 appstream 208 k
librdmacm x86_64 51.0-1.el9 baseos 70 k
llvm-libs x86_64 18.1.8-3.el9 appstream 26 M
lua-srpm-macros noarch 1-6.el9 appstream 8.5 k
ocaml-srpm-macros noarch 6-6.el9 appstream 7.8 k
openblas-srpm-macros noarch 2-11.el9 appstream 7.3 k
perl x86_64 4:5.32.1-481.el9 appstream 11 k
perl-Algorithm-Diff noarch 1.2010-4.el9 appstream 47 k
perl-Archive-Tar noarch 2.38-6.el9 appstream 71 k
perl-Archive-Zip noarch 1.68-6.el9 appstream 106 k
perl-Attribute-Handlers noarch 1.01-481.el9 appstream 26 k
perl-AutoSplit noarch 5.74-481.el9 appstream 20 k
perl-Benchmark noarch 1.23-481.el9 appstream 25 k
perl-CPAN noarch 2.29-3.el9 appstream 556 k
perl-CPAN-Meta noarch 2.150010-460.el9 appstream 176 k
perl-CPAN-Meta-Requirements noarch 2.140-461.el9 appstream 31 k
perl-CPAN-Meta-YAML noarch 0.018-461.el9 appstream 26 k
perl-Compress-Bzip2 x86_64 2.28-5.el9 appstream 69 k
perl-Compress-Raw-Bzip2 x86_64 2.101-5.el9 appstream 34 k
perl-Compress-Raw-Lzma x86_64 2.101-3.el9 appstream 50 k
perl-Compress-Raw-Zlib x86_64 2.101-5.el9 appstream 60 k
perl-Config-Extensions noarch 0.03-481.el9 appstream 11 k
perl-Config-Perl-V noarch 0.33-4.el9 appstream 21 k
perl-DBM_Filter noarch 0.06-481.el9 appstream 30 k
perl-DB_File x86_64 1.855-4.el9 appstream 81 k
perl-Data-OptList noarch 0.110-17.el9 appstream 26 k
perl-Data-Section noarch 0.200007-14.el9 appstream 25 k
perl-Devel-PPPort x86_64 3.62-4.el9 appstream 211 k
perl-Devel-Peek x86_64 1.28-481.el9 appstream 31 k
perl-Devel-SelfStubber noarch 1.06-481.el9 appstream 13 k
perl-Devel-Size x86_64 0.83-10.el9 appstream 31 k
perl-Digest-SHA x86_64 1:6.02-461.el9 appstream 61 k
perl-Digest-SHA1 x86_64 2.13-34.el9 appstream 52 k
perl-DirHandle noarch 1.05-481.el9 appstream 11 k
perl-Dumpvalue noarch 2.27-481.el9 appstream 17 k
perl-Encode-devel x86_64 4:3.08-462.el9 appstream 41 k
perl-English noarch 1.11-481.el9 appstream 12 k
perl-Env noarch 1.04-460.el9 appstream 19 k
perl-ExtUtils-CBuilder noarch 1:0.280236-4.el9 appstream 46 k
perl-ExtUtils-Command noarch 2:7.60-3.el9 appstream 14 k
perl-ExtUtils-Constant noarch 0.25-481.el9 appstream 45 k
perl-ExtUtils-Embed noarch 1.35-481.el9 appstream 16 k
perl-ExtUtils-Install noarch 2.20-4.el9 appstream 44 k
perl-ExtUtils-MM-Utils noarch 2:7.60-3.el9 appstream 12 k
perl-ExtUtils-MakeMaker noarch 2:7.60-3.el9 appstream 289 k
perl-ExtUtils-Manifest noarch 1:1.73-4.el9 appstream 34 k
perl-ExtUtils-Miniperl noarch 1.09-481.el9 appstream 14 k
perl-ExtUtils-ParseXS noarch 1:3.40-460.el9 appstream 182 k
perl-File-Compare noarch 1.100.600-481.el9 appstream 12 k
perl-File-Copy noarch 2.34-481.el9 appstream 19 k
perl-File-DosGlob x86_64 1.12-481.el9 appstream 18 k
perl-File-Fetch noarch 1.00-4.el9 appstream 30 k
perl-File-HomeDir noarch 1.006-4.el9 appstream 57 k
perl-File-Which noarch 1.23-10.el9 appstream 21 k
perl-FileCache noarch 1.10-481.el9 appstream 13 k
perl-Filter x86_64 2:1.60-4.el9 appstream 81 k
perl-Filter-Simple noarch 0.96-460.el9 appstream 27 k
perl-FindBin noarch 1.51-481.el9 appstream 13 k
perl-GDBM_File x86_64 1.18-481.el9 appstream 21 k
perl-Hash-Util x86_64 0.23-481.el9 appstream 33 k
perl-Hash-Util-FieldHash x86_64 1.20-481.el9 appstream 37 k
perl-I18N-Collate noarch 1.02-481.el9 appstream 13 k
perl-I18N-LangTags noarch 0.44-481.el9 appstream 53 k
perl-I18N-Langinfo x86_64 0.19-481.el9 appstream 21 k
perl-IO-Compress noarch 2.102-4.el9 appstream 256 k
perl-IO-Compress-Lzma noarch 2.101-4.el9 appstream 74 k
perl-IO-Zlib noarch 1:1.11-4.el9 appstream 19 k
perl-IPC-Cmd noarch 2:1.04-461.el9 appstream 39 k
perl-IPC-SysV x86_64 2.09-4.el9 appstream 42 k
perl-IPC-System-Simple noarch 1.30-6.el9 appstream 40 k
perl-Importer noarch 0.026-4.el9 appstream 39 k
perl-JSON-PP noarch 1:4.06-4.el9 appstream 65 k
perl-Locale-Maketext noarch 1.29-461.el9 appstream 94 k
perl-Locale-Maketext-Simple noarch 1:0.21-481.el9 appstream 16 k
perl-MIME-Charset noarch 1.012.2-15.el9 appstream 48 k
perl-MRO-Compat noarch 0.13-15.el9 appstream 19 k
perl-Math-BigInt noarch 1:1.9998.18-460.el9 appstream 188 k
perl-Math-BigInt-FastCalc x86_64 0.500.900-460.el9 appstream 27 k
perl-Math-BigRat noarch 0.2614-460.el9 appstream 38 k
perl-Math-Complex noarch 1.59-481.el9 appstream 45 k
perl-Memoize noarch 1.03-481.el9 appstream 55 k
perl-Module-Build noarch 2:0.42.31-9.el9 appstream 255 k
perl-Module-CoreList noarch 1:5.20210320-3.el9 appstream 81 k
perl-Module-CoreList-tools noarch 1:5.20210320-3.el9 appstream 18 k
perl-Module-Load noarch 1:0.36-4.el9 appstream 17 k
perl-Module-Load-Conditional noarch 0.74-4.el9 appstream 22 k
perl-Module-Loaded noarch 1:0.08-481.el9 appstream 12 k
perl-Module-Metadata noarch 1.000037-460.el9 appstream 35 k
perl-Module-Signature noarch 0.88-1.el9 appstream 83 k
perl-NEXT noarch 0.67-481.el9 appstream 20 k
perl-Net noarch 1.02-481.el9 appstream 24 k
perl-Net-Ping noarch 2.74-5.el9 appstream 49 k
perl-ODBM_File x86_64 1.16-481.el9 appstream 21 k
perl-Object-HashBase noarch 0.009-7.el9 appstream 25 k
perl-Opcode x86_64 1.48-481.el9 appstream 35 k
perl-Package-Generator noarch 1.106-23.el9 appstream 23 k
perl-Params-Check noarch 1:0.38-461.el9 appstream 22 k
perl-Params-Util x86_64 1.102-5.el9 appstream 33 k
perl-Perl-OSType noarch 1.010-461.el9 appstream 23 k
perl-PerlIO-via-QuotedPrint noarch 0.09-4.el9 appstream 22 k
perl-Pod-Checker noarch 4:1.74-4.el9 appstream 32 k
perl-Pod-Functions noarch 1.13-481.el9 appstream 12 k
perl-Pod-Html noarch 1.25-481.el9 appstream 25 k
perl-Safe noarch 2.41-481.el9 appstream 24 k
perl-Search-Dict noarch 1.07-481.el9 appstream 12 k
perl-SelfLoader noarch 1.26-481.el9 appstream 20 k
perl-Software-License noarch 0.103014-12.el9 appstream 128 k
perl-Sub-Exporter noarch 0.987-27.el9 appstream 66 k
perl-Sub-Install noarch 0.928-28.el9 appstream 22 k
perl-Sys-Hostname x86_64 1.23-481.el9 appstream 16 k
perl-Sys-Syslog x86_64 0.36-461.el9 appstream 47 k
perl-Term-Complete noarch 1.403-481.el9 appstream 12 k
perl-Term-ReadLine noarch 1.17-481.el9 appstream 18 k
perl-Term-Size-Perl x86_64 0.031-12.el9 appstream 21 k
perl-Term-Table noarch 0.015-8.el9 appstream 35 k
perl-Test noarch 1.31-481.el9 appstream 27 k
perl-Test-Harness noarch 1:3.42-461.el9 appstream 267 k
perl-Test-Simple noarch 3:1.302183-4.el9 appstream 525 k
perl-Text-Abbrev noarch 1.02-481.el9 appstream 11 k
perl-Text-Balanced noarch 2.04-4.el9 appstream 48 k
perl-Text-Diff noarch 1.45-13.el9 appstream 41 k
perl-Text-Glob noarch 0.11-15.el9 appstream 13 k
perl-Text-Template noarch 1.59-5.el9 appstream 60 k
perl-Thread noarch 3.05-481.el9 appstream 17 k
perl-Thread-Semaphore noarch 2.13-481.el9 appstream 14 k
perl-Tie noarch 4.6-481.el9 appstream 30 k
perl-Tie-File noarch 1.06-481.el9 appstream 42 k
perl-Tie-Memoize noarch 1.1-481.el9 appstream 13 k
perl-Tie-RefHash noarch 1.40-4.el9 appstream 23 k
perl-Time noarch 1.03-481.el9 appstream 17 k
perl-Time-HiRes x86_64 4:1.9764-462.el9 appstream 57 k
perl-Time-Piece x86_64 1.3401-481.el9 appstream 39 k
perl-Unicode-Collate x86_64 1.29-4.el9 appstream 732 k
perl-Unicode-Normalize x86_64 1.27-461.el9 appstream 91 k
perl-Unicode-UCD noarch 0.75-481.el9 appstream 77 k
perl-User-pwent noarch 1.03-481.el9 appstream 19 k
perl-autodie noarch 2.34-4.el9 appstream 94 k
perl-autouse noarch 1.11-481.el9 appstream 12 k
perl-bignum noarch 0.51-460.el9 appstream 42 k
perl-blib noarch 1.07-481.el9 appstream 11 k
perl-debugger noarch 1.56-481.el9 appstream 132 k
perl-deprecate noarch 0.04-481.el9 appstream 13 k
perl-devel x86_64 4:5.32.1-481.el9 appstream 659 k
perl-diagnostics noarch 1.37-481.el9 appstream 209 k
perl-doc noarch 5.32.1-481.el9 appstream 4.5 M
perl-encoding x86_64 4:3.00-462.el9 appstream 62 k
perl-encoding-warnings noarch 0.13-481.el9 appstream 15 k
perl-experimental noarch 0.022-6.el9 appstream 21 k
perl-fields noarch 2.27-481.el9 appstream 15 k
perl-filetest noarch 1.03-481.el9 appstream 13 k
perl-inc-latest noarch 2:0.500-20.el9 appstream 24 k
perl-less noarch 0.03-481.el9 appstream 12 k
perl-libnetcfg noarch 4:5.32.1-481.el9 appstream 15 k
perl-local-lib noarch 2.000024-13.el9 appstream 67 k
perl-locale noarch 1.09-481.el9 appstream 12 k
perl-macros noarch 4:5.32.1-481.el9 appstream 9.3 k
perl-meta-notation noarch 5.32.1-481.el9 appstream 8.4 k
perl-open noarch 1.12-481.el9 appstream 15 k
perl-perlfaq noarch 5.20201107-4.el9 appstream 372 k
perl-ph x86_64 5.32.1-481.el9 appstream 40 k
perl-sigtrap noarch 1.09-481.el9 appstream 14 k
perl-sort noarch 2.04-481.el9 appstream 12 k
perl-srpm-macros noarch 1-41.el9 appstream 8.2 k
perl-utils noarch 5.32.1-481.el9 appstream 54 k
perl-version x86_64 7:0.99.28-4.el9 appstream 62 k
perl-vmsish noarch 1.04-481.el9 appstream 13 k
prun-ohpc noarch 2.2-310.ohpc.3.1 OpenHPC-updates 15 k
pyproject-srpm-macros noarch 1.12.0-1.el9 appstream 13 k
python-srpm-macros noarch 3.9-54.el9 appstream 17 k
python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k
qt5-srpm-macros noarch 5.15.9-1.el9 appstream 7.9 k
redhat-rpm-config noarch 208-1.el9 appstream 66 k
rust-srpm-macros noarch 17-4.el9 appstream 9.3 k
sombok x86_64 2.4.0-16.el9 appstream 47 k
systemtap-sdt-devel x86_64 5.1-4.el9_5 appstream 74 k
ucx-ib-ohpc x86_64 1.17.0-320.ohpc.1.1 OpenHPC-updates 233 k
ucx-ohpc x86_64 1.17.0-320.ohpc.1.1 OpenHPC-updates 1.0 M
Installing weak dependencies:
perl-CPAN-DistnameInfo noarch 0.12-23.el9 appstream 14 k
perl-Encode-Locale noarch 1.05-21.el9 appstream 19 k
perl-Term-Size-Any noarch 0.002-35.el9 appstream 13 k
perl-Unicode-LineBreak x86_64 2019.001-11.el9 appstream 120 k
Transaction Summary
==============================================================================================================================================================================================================
Install 192 Packages
Total download size: 61 M
Installed size: 283 M
Downloading Packages:
(1/192): libfabric-ohpc-1.18.0-300.ohpc.2.6.x86_64.rpm 677 kB/s | 850 kB 00:01
(2/192): prun-ohpc-2.2-310.ohpc.3.1.noarch.rpm 80 kB/s | 15 kB 00:00
(3/192): ucx-ib-ohpc-1.17.0-320.ohpc.1.1.x86_64.rpm 1.2 MB/s | 233 kB 00:00
(4/192): ucx-ohpc-1.17.0-320.ohpc.1.1.x86_64.rpm 2.8 MB/s | 1.0 MB 00:00
(5/192): librdmacm-51.0-1.el9.x86_64.rpm 1.2 MB/s | 70 kB 00:00
(6/192): mpich-ofi-gnu14-ohpc-3.4.3-320.ohpc.1.1.x86_64.rpm 3.2 MB/s | 6.8 MB 00:02
(7/192): python3-pyparsing-2.4.7-9.el9.noarch.rpm 1.9 MB/s | 150 kB 00:00
(8/192): perl-Package-Generator-1.106-23.el9.noarch.rpm 466 kB/s | 23 kB 00:00
(9/192): perl-Test-Harness-3.42-461.el9.noarch.rpm 2.5 MB/s | 267 kB 00:00
(10/192): perl-ExtUtils-ParseXS-3.40-460.el9.noarch.rpm 3.2 MB/s | 182 kB 00:00
(11/192): perl-CPAN-Meta-YAML-0.018-461.el9.noarch.rpm 561 kB/s | 26 kB 00:00
(12/192): ghc-srpm-macros-1.5.0-6.el9.noarch.rpm 133 kB/s | 7.8 kB 00:00
(13/192): perl-Test-Simple-1.302183-4.el9.noarch.rpm 7.2 MB/s | 525 kB 00:00
(14/192): perl-Math-BigInt-1.9998.18-460.el9.noarch.rpm 3.2 MB/s | 188 kB 00:00
(15/192): perl-Module-Load-0.36-4.el9.noarch.rpm 775 kB/s | 17 kB 00:00
(16/192): python-srpm-macros-3.9-54.el9.noarch.rpm 437 kB/s | 17 kB 00:00
(17/192): perl-Encode-Locale-1.05-21.el9.noarch.rpm 435 kB/s | 19 kB 00:00
(18/192): openmpi5-pmix-gnu14-ohpc-5.0.5-320.ohpc.5.1.x86_64.rpm 4.2 MB/s | 11 MB 00:02
(19/192): rust-srpm-macros-17-4.el9.noarch.rpm 61 kB/s | 9.3 kB 00:00
(20/192): perl-Module-Build-0.42.31-9.el9.noarch.rpm 2.2 MB/s | 255 kB 00:00
(21/192): perl-bignum-0.51-460.el9.noarch.rpm 1.7 MB/s | 42 kB 00:00
(22/192): perl-Pod-Checker-1.74-4.el9.noarch.rpm 1.1 MB/s | 32 kB 00:00
(23/192): perl-Text-Balanced-2.04-4.el9.noarch.rpm 2.0 MB/s | 48 kB 00:00
(24/192): perl-JSON-PP-4.06-4.el9.noarch.rpm 2.4 MB/s | 65 kB 00:00
(25/192): perl-File-HomeDir-1.006-4.el9.noarch.rpm 2.6 MB/s | 57 kB 00:00
(26/192): perl-Object-HashBase-0.009-7.el9.noarch.rpm 1.2 MB/s | 25 kB 00:00
(27/192): perl-Math-BigRat-0.2614-460.el9.noarch.rpm 2.1 MB/s | 38 kB 00:00
(28/192): perl-File-Which-1.23-10.el9.noarch.rpm 796 kB/s | 21 kB 00:00
(29/192): perl-local-lib-2.000024-13.el9.noarch.rpm 2.4 MB/s | 67 kB 00:00
(30/192): perl-experimental-0.022-6.el9.noarch.rpm 534 kB/s | 21 kB 00:00
(31/192): perl-Module-CoreList-5.20210320-3.el9.noarch.rpm 3.1 MB/s | 81 kB 00:00
(32/192): perl-Module-CoreList-tools-5.20210320-3.el9.noarch.rpm 293 kB/s | 18 kB 00:00
(33/192): perl-Filter-Simple-0.96-460.el9.noarch.rpm 733 kB/s | 27 kB 00:00
(34/192): perl-Config-Perl-V-0.33-4.el9.noarch.rpm 295 kB/s | 21 kB 00:00
(35/192): perl-IO-Compress-2.102-4.el9.noarch.rpm 3.8 MB/s | 256 kB 00:00
(36/192): perl-inc-latest-0.500-20.el9.noarch.rpm 414 kB/s | 24 kB 00:00
(37/192): perl-Text-Diff-1.45-13.el9.noarch.rpm 473 kB/s | 41 kB 00:00
(38/192): perl-Importer-0.026-4.el9.noarch.rpm 3.1 MB/s | 39 kB 00:00
(39/192): perl-IPC-System-Simple-1.30-6.el9.noarch.rpm 2.2 MB/s | 40 kB 00:00
(40/192): perl-Text-Glob-0.11-15.el9.noarch.rpm 357 kB/s | 13 kB 00:00
(41/192): perl-File-Fetch-1.00-4.el9.noarch.rpm 555 kB/s | 30 kB 00:00
(42/192): perl-CPAN-2.29-3.el9.noarch.rpm 6.6 MB/s | 556 kB 00:00
(43/192): fonts-srpm-macros-2.0.5-7.el9.1.noarch.rpm 394 kB/s | 27 kB 00:00
(44/192): efi-srpm-macros-6-2.el9_0.noarch.rpm 153 kB/s | 22 kB 00:00
(45/192): kernel-srpm-macros-1.0-13.el9.noarch.rpm 280 kB/s | 15 kB 00:00
(46/192): go-srpm-macros-3.6.0-3.el9.noarch.rpm 181 kB/s | 26 kB 00:00
(47/192): openblas-srpm-macros-2-11.el9.noarch.rpm 110 kB/s | 7.3 kB 00:00
(48/192): perl-Env-1.04-460.el9.noarch.rpm 984 kB/s | 19 kB 00:00
(49/192): lua-srpm-macros-1-6.el9.noarch.rpm 67 kB/s | 8.5 kB 00:00
(50/192): perl-Sub-Install-0.928-28.el9.noarch.rpm 338 kB/s | 22 kB 00:00
(51/192): perl-Text-Template-1.59-5.el9.noarch.rpm 4.3 MB/s | 60 kB 00:00
(52/192): perl-IO-Compress-Lzma-2.101-4.el9.noarch.rpm 3.6 MB/s | 74 kB 00:00
(53/192): perl-Net-Ping-2.74-5.el9.noarch.rpm 1.5 MB/s | 49 kB 00:00
(54/192): perl-Module-Load-Conditional-0.74-4.el9.noarch.rpm 3.3 MB/s | 22 kB 00:00
(55/192): perl-Data-OptList-0.110-17.el9.noarch.rpm 1.1 MB/s | 26 kB 00:00
(56/192): perl-Archive-Tar-2.38-6.el9.noarch.rpm 2.4 MB/s | 71 kB 00:00
(57/192): perl-Module-Signature-0.88-1.el9.noarch.rpm 425 kB/s | 83 kB 00:00
(58/192): perl-ExtUtils-Manifest-1.73-4.el9.noarch.rpm 1.4 MB/s | 34 kB 00:00
(59/192): perl-Encode-devel-3.08-462.el9.x86_64.rpm 3.2 MB/s | 41 kB 00:00
(60/192): perl-Tie-RefHash-1.40-4.el9.noarch.rpm 1.2 MB/s | 23 kB 00:00
(61/192): perl-ExtUtils-Install-2.20-4.el9.noarch.rpm 1.7 MB/s | 44 kB 00:00
(62/192): perl-Devel-Size-0.83-10.el9.x86_64.rpm 1.5 MB/s | 31 kB 00:00
(63/192): perl-encoding-3.00-462.el9.x86_64.rpm 604 kB/s | 62 kB 00:00
(64/192): perl-Compress-Raw-Bzip2-2.101-5.el9.x86_64.rpm 1.1 MB/s | 34 kB 00:00
(65/192): perl-Params-Util-1.102-5.el9.x86_64.rpm 1.2 MB/s | 33 kB 00:00
(66/192): perl-Perl-OSType-1.010-461.el9.noarch.rpm 1.1 MB/s | 23 kB 00:00
(67/192): llvm-libs-18.1.8-3.el9.x86_64.rpm 45 MB/s | 26 MB 00:00
(68/192): perl-Data-Section-0.200007-14.el9.noarch.rpm 137 kB/s | 25 kB 00:00
(69/192): redhat-rpm-config-208-1.el9.noarch.rpm 327 kB/s | 66 kB 00:00
(70/192): perl-ExtUtils-CBuilder-0.280236-4.el9.noarch.rpm 1.8 MB/s | 46 kB 00:00
(71/192): perl-CPAN-Meta-Requirements-2.140-461.el9.noarch.rpm 999 kB/s | 31 kB 00:00
(72/192): perl-CPAN-Meta-2.150010-460.el9.noarch.rpm 3.3 MB/s | 176 kB 00:00
(73/192): perl-Sys-Syslog-0.36-461.el9.x86_64.rpm 930 kB/s | 47 kB 00:00
(74/192): perl-IO-Zlib-1.11-4.el9.noarch.rpm 414 kB/s | 19 kB 00:00
(75/192): perl-perlfaq-5.20201107-4.el9.noarch.rpm 8.6 MB/s | 372 kB 00:00
(76/192): perl-Digest-SHA1-2.13-34.el9.x86_64.rpm 1.7 MB/s | 52 kB 00:00
(77/192): perl-Algorithm-Diff-1.2010-4.el9.noarch.rpm 3.5 MB/s | 47 kB 00:00
(78/192): perl-Compress-Raw-Zlib-2.101-5.el9.x86_64.rpm 3.9 MB/s | 60 kB 00:00
(79/192): perl-MRO-Compat-0.13-15.el9.noarch.rpm 391 kB/s | 19 kB 00:00
(80/192): perl-srpm-macros-1-41.el9.noarch.rpm 131 kB/s | 8.2 kB 00:00
(81/192): perl-Unicode-Collate-1.29-4.el9.x86_64.rpm 9.1 MB/s | 732 kB 00:00
(82/192): perl-ExtUtils-MakeMaker-7.60-3.el9.noarch.rpm 3.4 MB/s | 289 kB 00:00
(83/192): perl-ExtUtils-Command-7.60-3.el9.noarch.rpm 589 kB/s | 14 kB 00:00
(84/192): perl-Sub-Exporter-0.987-27.el9.noarch.rpm 3.8 MB/s | 66 kB 00:00
(85/192): perl-Compress-Raw-Lzma-2.101-3.el9.x86_64.rpm 2.2 MB/s | 50 kB 00:00
(86/192): perl-ExtUtils-MM-Utils-7.60-3.el9.noarch.rpm 107 kB/s | 12 kB 00:00
(87/192): perl-Software-License-0.103014-12.el9.noarch.rpm 1.8 MB/s | 128 kB 00:00
(88/192): perl-IPC-SysV-2.09-4.el9.x86_64.rpm 2.1 MB/s | 42 kB 00:00
(89/192): perl-Digest-SHA-6.02-461.el9.x86_64.rpm 2.8 MB/s | 61 kB 00:00
(90/192): perl-CPAN-DistnameInfo-0.12-23.el9.noarch.rpm 755 kB/s | 14 kB 00:00
(91/192): perl-Math-BigInt-FastCalc-0.500.900-460.el9.x86_64.rpm 780 kB/s | 27 kB 00:00
(92/192): perl-Term-Table-0.015-8.el9.noarch.rpm 2.4 MB/s | 35 kB 00:00
(93/192): perl-MIME-Charset-1.012.2-15.el9.noarch.rpm 1.3 MB/s | 48 kB 00:00
(94/192): perl-DB_File-1.855-4.el9.x86_64.rpm 4.1 MB/s | 81 kB 00:00
(95/192): perl-Filter-1.60-4.el9.x86_64.rpm 2.4 MB/s | 81 kB 00:00
(96/192): perl-Term-Size-Any-0.002-35.el9.noarch.rpm 382 kB/s | 13 kB 00:00
(97/192): perl-Term-Size-Perl-0.031-12.el9.x86_64.rpm 1.0 MB/s | 21 kB 00:00
(98/192): perl-autodie-2.34-4.el9.noarch.rpm 2.5 MB/s | 94 kB 00:00
(99/192): perl-Params-Check-0.38-461.el9.noarch.rpm 1.1 MB/s | 22 kB 00:00
(100/192): perl-Unicode-LineBreak-2019.001-11.el9.x86_64.rpm 4.4 MB/s | 120 kB 00:00
(101/192): perl-Devel-PPPort-3.62-4.el9.x86_64.rpm 4.4 MB/s | 211 kB 00:00
(102/192): libpsm2-11.2.230-1.el9.x86_64.rpm 3.2 MB/s | 208 kB 00:00
(103/192): perl-Unicode-Normalize-1.27-461.el9.x86_64.rpm 1.5 MB/s | 91 kB 00:00
(104/192): sombok-2.4.0-16.el9.x86_64.rpm 1.0 MB/s | 47 kB 00:00
(105/192): perl-IPC-Cmd-1.04-461.el9.noarch.rpm 1.3 MB/s | 39 kB 00:00
(106/192): ocaml-srpm-macros-6-6.el9.noarch.rpm 332 kB/s | 7.8 kB 00:00
(107/192): perl-Module-Metadata-1.000037-460.el9.noarch.rpm 767 kB/s | 35 kB 00:00
(108/192): dwz-0.14-3.el9.x86_64.rpm 1.5 MB/s | 127 kB 00:00
(109/192): perl-devel-5.32.1-481.el9.x86_64.rpm 11 MB/s | 659 kB 00:00
(110/192): annobin-12.65-1.el9.x86_64.rpm 5.7 MB/s | 1.0 MB 00:00
(111/192): perl-ph-5.32.1-481.el9.x86_64.rpm 244 kB/s | 40 kB 00:00
(112/192): perl-Time-Piece-1.3401-481.el9.x86_64.rpm 1.0 MB/s | 39 kB 00:00
(113/192): perl-Opcode-1.48-481.el9.x86_64.rpm 1.5 MB/s | 35 kB 00:00
(114/192): perl-Sys-Hostname-1.23-481.el9.x86_64.rpm 376 kB/s | 16 kB 00:00
(115/192): perl-ODBM_File-1.16-481.el9.x86_64.rpm 392 kB/s | 21 kB 00:00
(116/192): perl-I18N-Langinfo-0.19-481.el9.x86_64.rpm 564 kB/s | 21 kB 00:00
(117/192): perl-Hash-Util-FieldHash-1.20-481.el9.x86_64.rpm 950 kB/s | 37 kB 00:00
(118/192): perl-Hash-Util-0.23-481.el9.x86_64.rpm 1.6 MB/s | 33 kB 00:00
(119/192): perl-File-DosGlob-1.12-481.el9.x86_64.rpm 1.1 MB/s | 18 kB 00:00
(120/192): perl-GDBM_File-1.18-481.el9.x86_64.rpm 646 kB/s | 21 kB 00:00
(121/192): perl-Devel-Peek-1.28-481.el9.x86_64.rpm 1.2 MB/s | 31 kB 00:00
(122/192): perl-5.32.1-481.el9.x86_64.rpm 495 kB/s | 11 kB 00:00
(123/192): perl-vmsish-1.04-481.el9.noarch.rpm 672 kB/s | 13 kB 00:00
(124/192): perl-utils-5.32.1-481.el9.noarch.rpm 2.8 MB/s | 54 kB 00:00
(125/192): perl-sort-2.04-481.el9.noarch.rpm 637 kB/s | 12 kB 00:00
(126/192): perl-meta-notation-5.32.1-481.el9.noarch.rpm 671 kB/s | 8.4 kB 00:00
(127/192): perl-sigtrap-1.09-481.el9.noarch.rpm 439 kB/s | 14 kB 00:00
(128/192): perl-open-1.12-481.el9.noarch.rpm 363 kB/s | 15 kB 00:00
(129/192): perl-macros-5.32.1-481.el9.noarch.rpm 339 kB/s | 9.3 kB 00:00
(130/192): perl-less-0.03-481.el9.noarch.rpm 298 kB/s | 12 kB 00:00
(131/192): perl-locale-1.09-481.el9.noarch.rpm 181 kB/s | 12 kB 00:00
(132/192): perl-libnetcfg-5.32.1-481.el9.noarch.rpm 256 kB/s | 15 kB 00:00
(133/192): perl-filetest-1.03-481.el9.noarch.rpm 721 kB/s | 13 kB 00:00
(134/192): perl-fields-2.27-481.el9.noarch.rpm 844 kB/s | 15 kB 00:00
(135/192): perl-encoding-warnings-0.13-481.el9.noarch.rpm 793 kB/s | 15 kB 00:00
(136/192): perl-deprecate-0.04-481.el9.noarch.rpm 1.8 MB/s | 13 kB 00:00
(137/192): perl-debugger-1.56-481.el9.noarch.rpm 4.7 MB/s | 132 kB 00:00
(138/192): perl-blib-1.07-481.el9.noarch.rpm 489 kB/s | 11 kB 00:00
(139/192): perl-autouse-1.11-481.el9.noarch.rpm 1.8 MB/s | 12 kB 00:00
(140/192): perl-User-pwent-1.03-481.el9.noarch.rpm 2.1 MB/s | 19 kB 00:00
(141/192): perl-diagnostics-1.37-481.el9.noarch.rpm 2.2 MB/s | 209 kB 00:00
(142/192): perl-doc-5.32.1-481.el9.noarch.rpm 31 MB/s | 4.5 MB 00:00
(143/192): perl-Time-1.03-481.el9.noarch.rpm 293 kB/s | 17 kB 00:00
(144/192): perl-Unicode-UCD-0.75-481.el9.noarch.rpm 997 kB/s | 77 kB 00:00
(145/192): perl-Tie-Memoize-1.1-481.el9.noarch.rpm 597 kB/s | 13 kB 00:00
(146/192): perl-Tie-File-1.06-481.el9.noarch.rpm 1.3 MB/s | 42 kB 00:00
(147/192): perl-Tie-4.6-481.el9.noarch.rpm 1.0 MB/s | 30 kB 00:00
(148/192): perl-Thread-Semaphore-2.13-481.el9.noarch.rpm 479 kB/s | 14 kB 00:00
(149/192): perl-Thread-3.05-481.el9.noarch.rpm 808 kB/s | 17 kB 00:00
(150/192): perl-Test-1.31-481.el9.noarch.rpm 2.2 MB/s | 27 kB 00:00
(151/192): perl-Text-Abbrev-1.02-481.el9.noarch.rpm 590 kB/s | 11 kB 00:00
(152/192): perl-Term-ReadLine-1.17-481.el9.noarch.rpm 1.0 MB/s | 18 kB 00:00
(153/192): perl-Term-Complete-1.403-481.el9.noarch.rpm 711 kB/s | 12 kB 00:00
(154/192): perl-Search-Dict-1.07-481.el9.noarch.rpm 1.0 MB/s | 12 kB 00:00
(155/192): perl-SelfLoader-1.26-481.el9.noarch.rpm 833 kB/s | 20 kB 00:00
(156/192): perl-Safe-2.41-481.el9.noarch.rpm 1.2 MB/s | 24 kB 00:00
(157/192): perl-Pod-Html-1.25-481.el9.noarch.rpm 1.3 MB/s | 25 kB 00:00
(158/192): perl-Pod-Functions-1.13-481.el9.noarch.rpm 660 kB/s | 12 kB 00:00
(159/192): perl-NEXT-0.67-481.el9.noarch.rpm 1.4 MB/s | 20 kB 00:00
(160/192): perl-Net-1.02-481.el9.noarch.rpm 877 kB/s | 24 kB 00:00
(161/192): perl-Module-Loaded-0.08-481.el9.noarch.rpm 466 kB/s | 12 kB 00:00
(162/192): perl-Memoize-1.03-481.el9.noarch.rpm 2.3 MB/s | 55 kB 00:00
(163/192): perl-I18N-LangTags-0.44-481.el9.noarch.rpm 2.4 MB/s | 53 kB 00:00
(164/192): perl-Math-Complex-1.59-481.el9.noarch.rpm 962 kB/s | 45 kB 00:00
(165/192): perl-I18N-Collate-1.02-481.el9.noarch.rpm 665 kB/s | 13 kB 00:00
(166/192): perl-Locale-Maketext-Simple-0.21-481.el9.noarch.rpm 297 kB/s | 16 kB 00:00
(167/192): perl-FileCache-1.10-481.el9.noarch.rpm 814 kB/s | 13 kB 00:00
(168/192): perl-FindBin-1.51-481.el9.noarch.rpm 349 kB/s | 13 kB 00:00
(169/192): perl-File-Copy-2.34-481.el9.noarch.rpm 779 kB/s | 19 kB 00:00
(170/192): perl-File-Compare-1.100.600-481.el9.noarch.rpm 679 kB/s | 12 kB 00:00
(171/192): perl-ExtUtils-Miniperl-1.09-481.el9.noarch.rpm 798 kB/s | 14 kB 00:00
(172/192): perl-ExtUtils-Embed-1.35-481.el9.noarch.rpm 1.3 MB/s | 16 kB 00:00
(173/192): perl-ExtUtils-Constant-0.25-481.el9.noarch.rpm 2.3 MB/s | 45 kB 00:00
(174/192): perl-English-1.11-481.el9.noarch.rpm 637 kB/s | 12 kB 00:00
(175/192): perl-DirHandle-1.05-481.el9.noarch.rpm 959 kB/s | 11 kB 00:00
(176/192): perl-Dumpvalue-2.27-481.el9.noarch.rpm 679 kB/s | 17 kB 00:00
(177/192): perl-Devel-SelfStubber-1.06-481.el9.noarch.rpm 724 kB/s | 13 kB 00:00
(178/192): perl-Config-Extensions-0.03-481.el9.noarch.rpm 931 kB/s | 11 kB 00:00
(179/192): perl-DBM_Filter-0.06-481.el9.noarch.rpm 1.1 MB/s | 30 kB 00:00
(180/192): perl-Benchmark-1.23-481.el9.noarch.rpm 1.1 MB/s | 25 kB 00:00
(181/192): perl-AutoSplit-5.74-481.el9.noarch.rpm 895 kB/s | 20 kB 00:00
(182/192): perl-Attribute-Handlers-1.01-481.el9.noarch.rpm 1.4 MB/s | 26 kB 00:00
(183/192): perl-version-0.99.28-4.el9.x86_64.rpm 2.3 MB/s | 62 kB 00:00
(184/192): perl-Locale-Maketext-1.29-461.el9.noarch.rpm 4.4 MB/s | 94 kB 00:00
(185/192): systemtap-sdt-devel-5.1-4.el9_5.x86_64.rpm 2.5 MB/s | 74 kB 00:00
(186/192): perl-PerlIO-via-QuotedPrint-0.09-4.el9.noarch.rpm 1.2 MB/s | 22 kB 00:00
(187/192): perl-Archive-Zip-1.68-6.el9.noarch.rpm 2.2 MB/s | 106 kB 00:00
(188/192): gcc-plugin-annobin-11.5.0-5.el9_5.x86_64.rpm 1.4 MB/s | 39 kB 00:00
(189/192): perl-Time-HiRes-1.9764-462.el9.x86_64.rpm 1.2 MB/s | 57 kB 00:00
(190/192): perl-Compress-Bzip2-2.28-5.el9.x86_64.rpm 3.2 MB/s | 69 kB 00:00
(191/192): qt5-srpm-macros-5.15.9-1.el9.noarch.rpm 77 kB/s | 7.9 kB 00:00
(192/192): pyproject-srpm-macros-1.12.0-1.el9.noarch.rpm 115 kB/s | 13 kB 00:00
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 11 MB/s | 61 MB 00:05
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : perl-File-Copy-2.34-481.el9.noarch 1/192
Installing : perl-ExtUtils-Manifest-1:1.73-4.el9.noarch 2/192
Installing : perl-Time-HiRes-4:1.9764-462.el9.x86_64 3/192
Installing : perl-File-Compare-1.100.600-481.el9.noarch 4/192
Installing : perl-Compress-Raw-Zlib-2.101-5.el9.x86_64 5/192
Installing : perl-ExtUtils-ParseXS-1:3.40-460.el9.noarch 6/192
Installing : perl-Term-ReadLine-1.17-481.el9.noarch 7/192
Installing : perl-Tie-4.6-481.el9.noarch 8/192
Installing : perl-locale-1.09-481.el9.noarch 9/192
Installing : perl-version-7:0.99.28-4.el9.x86_64 10/192
Installing : perl-CPAN-Meta-Requirements-2.140-461.el9.noarch 11/192
Installing : perl-Module-CoreList-1:5.20210320-3.el9.noarch 12/192
Installing : perl-Module-Metadata-1.000037-460.el9.noarch 13/192
Installing : perl-meta-notation-5.32.1-481.el9.noarch 14/192
Installing : perl-Devel-Peek-1.28-481.el9.x86_64 15/192
Installing : perl-Unicode-Normalize-1.27-461.el9.x86_64 16/192
Installing : libpsm2-11.2.230-1.el9.x86_64 17/192
Installing : perl-Filter-2:1.60-4.el9.x86_64 18/192
Installing : perl-Digest-SHA-1:6.02-461.el9.x86_64 19/192
Installing : perl-Perl-OSType-1.010-461.el9.noarch 20/192
Installing : perl-Module-Load-1:0.36-4.el9.noarch 21/192
Installing : librdmacm-51.0-1.el9.x86_64 22/192
Installing : libfabric-ohpc-1.18.0-300.ohpc.2.6.x86_64 23/192
Installing : perl-encoding-4:3.00-462.el9.x86_64 24/192
Installing : perl-Dumpvalue-2.27-481.el9.noarch 25/192
Installing : perl-Pod-Html-1.25-481.el9.noarch 26/192
Installing : perl-Net-Ping-2.74-5.el9.noarch 27/192
Installing : perl-ExtUtils-Command-2:7.60-3.el9.noarch 28/192
Installing : perl-AutoSplit-5.74-481.el9.noarch 29/192
Installing : perl-Benchmark-1.23-481.el9.noarch 30/192
Installing : perl-Test-Harness-1:3.42-461.el9.noarch 31/192
Installing : perl-DirHandle-1.05-481.el9.noarch 32/192
Installing : perl-ExtUtils-Constant-0.25-481.el9.noarch 33/192
Installing : perl-I18N-LangTags-0.44-481.el9.noarch 34/192
Installing : perl-Locale-Maketext-1.29-461.el9.noarch 35/192
Installing : perl-Locale-Maketext-Simple-1:0.21-481.el9.noarch 36/192
Installing : perl-Params-Check-1:0.38-461.el9.noarch 37/192
Installing : perl-Module-Load-Conditional-0.74-4.el9.noarch 38/192
Installing : perl-Math-Complex-1.59-481.el9.noarch 39/192
Installing : perl-Math-BigInt-1:1.9998.18-460.el9.noarch 40/192
Installing : perl-JSON-PP-1:4.06-4.el9.noarch 41/192
Installing : perl-Math-BigRat-0.2614-460.el9.noarch 42/192
Installing : perl-SelfLoader-1.26-481.el9.noarch 43/192
Installing : perl-User-pwent-1.03-481.el9.noarch 44/192
Installing : perl-autouse-1.11-481.el9.noarch 45/192
Installing : perl-doc-5.32.1-481.el9.noarch 46/192
Installing : perl-Hash-Util-FieldHash-1.20-481.el9.x86_64 47/192
Installing : perl-Hash-Util-0.23-481.el9.x86_64 48/192
Installing : perl-I18N-Langinfo-0.19-481.el9.x86_64 49/192
Installing : perl-Opcode-1.48-481.el9.x86_64 50/192
Installing : perl-Safe-2.41-481.el9.noarch 51/192
Installing : perl-Sys-Hostname-1.23-481.el9.x86_64 52/192
Installing : perl-Devel-PPPort-3.62-4.el9.x86_64 53/192
Installing : perl-ExtUtils-MM-Utils-2:7.60-3.el9.noarch 54/192
Installing : perl-IPC-Cmd-2:1.04-461.el9.noarch 55/192
Installing : perl-Params-Util-1.102-5.el9.x86_64 56/192
Installing : perl-Compress-Raw-Bzip2-2.101-5.el9.x86_64 57/192
Installing : perl-IO-Compress-2.102-4.el9.noarch 58/192
Installing : perl-IO-Zlib-1:1.11-4.el9.noarch 59/192
Installing : perl-Tie-RefHash-1.40-4.el9.noarch 60/192
Installing : perl-Sub-Install-0.928-28.el9.noarch 61/192
Installing : perl-Text-Balanced-2.04-4.el9.noarch 62/192
Installing : perl-CPAN-Meta-YAML-0.018-461.el9.noarch 63/192
Installing : perl-CPAN-Meta-2.150010-460.el9.noarch 64/192
Installing : ucx-ohpc-1.17.0-320.ohpc.1.1.x86_64 65/192
Installing : prun-ohpc-2.2-310.ohpc.3.1.noarch 66/192
Installing : ucx-ib-ohpc-1.17.0-320.ohpc.1.1.x86_64 67/192
Installing : perl-Filter-Simple-0.96-460.el9.noarch 68/192
Installing : perl-Data-OptList-0.110-17.el9.noarch 69/192
Installing : perl-DBM_Filter-0.06-481.el9.noarch 70/192
Installing : perl-File-Fetch-1.00-4.el9.noarch 71/192
Installing : perl-Encode-Locale-1.05-21.el9.noarch 72/192
Installing : perl-fields-2.27-481.el9.noarch 73/192
Installing : perl-Devel-SelfStubber-1.06-481.el9.noarch 74/192
Installing : perl-bignum-0.51-460.el9.noarch 75/192
Installing : perl-Math-BigInt-FastCalc-0.500.900-460.el9.x86_64 76/192
Installing : perl-open-1.12-481.el9.noarch 77/192
Installing : perl-Unicode-Collate-1.29-4.el9.x86_64 78/192
Installing : perl-Unicode-UCD-0.75-481.el9.noarch 79/192
Installing : perl-debugger-1.56-481.el9.noarch 80/192
Installing : perl-sigtrap-1.09-481.el9.noarch 81/192
Installing : perl-Module-CoreList-tools-1:5.20210320-3.el9.noarch 82/192
Installing : perl-experimental-0.022-6.el9.noarch 83/192
Installing : perl-Env-1.04-460.el9.noarch 84/192
Installing : perl-Archive-Zip-1.68-6.el9.noarch 85/192
Installing : pyproject-srpm-macros-1.12.0-1.el9.noarch 86/192
Installing : perl-Compress-Bzip2-2.28-5.el9.x86_64 87/192
Installing : qt5-srpm-macros-5.15.9-1.el9.noarch 88/192
Installing : gcc-plugin-annobin-11.5.0-5.el9_5.x86_64 89/192
Installing : perl-PerlIO-via-QuotedPrint-0.09-4.el9.noarch 90/192
Installing : perl-Attribute-Handlers-1.01-481.el9.noarch 91/192
Installing : perl-Config-Extensions-0.03-481.el9.noarch 92/192
Installing : perl-English-1.11-481.el9.noarch 93/192
Installing : perl-FileCache-1.10-481.el9.noarch 94/192
Installing : perl-FindBin-1.51-481.el9.noarch 95/192
Installing : perl-I18N-Collate-1.02-481.el9.noarch 96/192
Installing : perl-Memoize-1.03-481.el9.noarch 97/192
Installing : perl-Module-Loaded-1:0.08-481.el9.noarch 98/192
Installing : perl-NEXT-0.67-481.el9.noarch 99/192
Installing : perl-Net-1.02-481.el9.noarch 100/192
Installing : perl-Pod-Functions-1.13-481.el9.noarch 101/192
Installing : perl-Search-Dict-1.07-481.el9.noarch 102/192
Installing : perl-Term-Complete-1.403-481.el9.noarch 103/192
Installing : perl-Test-1.31-481.el9.noarch 104/192
Installing : perl-Text-Abbrev-1.02-481.el9.noarch 105/192
Installing : perl-Thread-3.05-481.el9.noarch 106/192
Installing : perl-Thread-Semaphore-2.13-481.el9.noarch 107/192
Installing : perl-Tie-File-1.06-481.el9.noarch 108/192
Installing : perl-Tie-Memoize-1.1-481.el9.noarch 109/192
Installing : perl-Time-1.03-481.el9.noarch 110/192
Installing : perl-blib-1.07-481.el9.noarch 111/192
Installing : perl-deprecate-0.04-481.el9.noarch 112/192
Installing : perl-diagnostics-1.37-481.el9.noarch 113/192
Installing : perl-encoding-warnings-0.13-481.el9.noarch 114/192
Installing : perl-filetest-1.03-481.el9.noarch 115/192
Installing : perl-less-0.03-481.el9.noarch 116/192
Installing : perl-macros-4:5.32.1-481.el9.noarch 117/192
Installing : perl-sort-2.04-481.el9.noarch 118/192
Installing : perl-utils-5.32.1-481.el9.noarch 119/192
Installing : perl-vmsish-1.04-481.el9.noarch 120/192
Installing : perl-File-DosGlob-1.12-481.el9.x86_64 121/192
Installing : perl-GDBM_File-1.18-481.el9.x86_64 122/192
Installing : perl-ODBM_File-1.16-481.el9.x86_64 123/192
Installing : perl-Time-Piece-1.3401-481.el9.x86_64 124/192
Installing : perl-ph-5.32.1-481.el9.x86_64 125/192
Installing : dwz-0.14-3.el9.x86_64 126/192
Installing : ocaml-srpm-macros-6-6.el9.noarch 127/192
Installing : sombok-2.4.0-16.el9.x86_64 128/192
Installing : perl-Term-Size-Perl-0.031-12.el9.x86_64 129/192
Installing : perl-Term-Size-Any-0.002-35.el9.noarch 130/192
Installing : perl-DB_File-1.855-4.el9.x86_64 131/192
Installing : perl-MIME-Charset-1.012.2-15.el9.noarch 132/192
Installing : perl-Unicode-LineBreak-2019.001-11.el9.x86_64 133/192
Installing : perl-CPAN-DistnameInfo-0.12-23.el9.noarch 134/192
Installing : perl-IPC-SysV-2.09-4.el9.x86_64 135/192
Installing : perl-Compress-Raw-Lzma-2.101-3.el9.x86_64 136/192
Installing : perl-IO-Compress-Lzma-2.101-4.el9.noarch 137/192
Installing : perl-srpm-macros-1-41.el9.noarch 138/192
Installing : perl-Algorithm-Diff-1.2010-4.el9.noarch 139/192
Installing : perl-Text-Diff-1.45-13.el9.noarch 140/192
Installing : perl-Archive-Tar-2.38-6.el9.noarch 141/192
Installing : perl-MRO-Compat-0.13-15.el9.noarch 142/192
Installing : perl-Digest-SHA1-2.13-34.el9.x86_64 143/192
Installing : perl-Module-Signature-0.88-1.el9.noarch 144/192
Installing : perl-perlfaq-5.20201107-4.el9.noarch 145/192
Installing : perl-Sys-Syslog-0.36-461.el9.x86_64 146/192
Installing : perl-Devel-Size-0.83-10.el9.x86_64 147/192
Installing : perl-Text-Template-1.59-5.el9.noarch 148/192
Installing : llvm-libs-18.1.8-3.el9.x86_64 149/192
Installing : annobin-12.65-1.el9.x86_64 150/192
Installing : openblas-srpm-macros-2-11.el9.noarch 151/192
Installing : lua-srpm-macros-1-6.el9.noarch 152/192
Installing : kernel-srpm-macros-1.0-13.el9.noarch 153/192
Installing : efi-srpm-macros-6-2.el9_0.noarch 154/192
Installing : perl-IPC-System-Simple-1.30-6.el9.noarch 155/192
Installing : perl-autodie-2.34-4.el9.noarch 156/192
Installing : perl-Importer-0.026-4.el9.noarch 157/192
Installing : perl-Text-Glob-0.11-15.el9.noarch 158/192
Installing : perl-Config-Perl-V-0.33-4.el9.noarch 159/192
Installing : perl-local-lib-2.000024-13.el9.noarch 160/192
Installing : perl-File-Which-1.23-10.el9.noarch 161/192
Installing : perl-File-HomeDir-1.006-4.el9.noarch 162/192
Installing : perl-Object-HashBase-0.009-7.el9.noarch 163/192
Installing : perl-Term-Table-0.015-8.el9.noarch 164/192
Installing : perl-Test-Simple-3:1.302183-4.el9.noarch 165/192
Installing : perl-Pod-Checker-4:1.74-4.el9.noarch 166/192
Installing : rust-srpm-macros-17-4.el9.noarch 167/192
Installing : ghc-srpm-macros-1.5.0-6.el9.noarch 168/192
Installing : python-srpm-macros-3.9-54.el9.noarch 169/192
Installing : fonts-srpm-macros-1:2.0.5-7.el9.1.noarch 170/192
Installing : go-srpm-macros-3.6.0-3.el9.noarch 171/192
Installing : redhat-rpm-config-208-1.el9.noarch 172/192
Running scriptlet: redhat-rpm-config-208-1.el9.noarch 172/192
Installing : perl-Package-Generator-1.106-23.el9.noarch 173/192
Installing : perl-Sub-Exporter-0.987-27.el9.noarch 174/192
Installing : perl-Data-Section-0.200007-14.el9.noarch 175/192
Installing : perl-Software-License-0.103014-12.el9.noarch 176/192
Installing : python3-pyparsing-2.4.7-9.el9.noarch 177/192
Installing : systemtap-sdt-devel-5.1-4.el9_5.x86_64 178/192
Installing : perl-ExtUtils-Install-2.20-4.el9.noarch 179/192
Installing : perl-devel-4:5.32.1-481.el9.x86_64 180/192
Installing : perl-ExtUtils-MakeMaker-2:7.60-3.el9.noarch 181/192
Installing : perl-ExtUtils-CBuilder-1:0.280236-4.el9.noarch 182/192
Installing : perl-ExtUtils-Embed-1.35-481.el9.noarch 183/192
Installing : perl-ExtUtils-Miniperl-1.09-481.el9.noarch 184/192
Installing : perl-libnetcfg-4:5.32.1-481.el9.noarch 185/192
Installing : perl-Encode-devel-4:3.08-462.el9.x86_64 186/192
Installing : perl-inc-latest-2:0.500-20.el9.noarch 187/192
Installing : perl-Module-Build-2:0.42.31-9.el9.noarch 188/192
Installing : perl-CPAN-2.29-3.el9.noarch 189/192
Installing : perl-4:5.32.1-481.el9.x86_64 190/192
Installing : mpich-ofi-gnu14-ohpc-3.4.3-320.ohpc.1.1.x86_64 191/192
Installing : openmpi5-pmix-gnu14-ohpc-5.0.5-320.ohpc.5.1.x86_64 192/192
Running scriptlet: openmpi5-pmix-gnu14-ohpc-5.0.5-320.ohpc.5.1.x86_64 192/192
Verifying : libfabric-ohpc-1.18.0-300.ohpc.2.6.x86_64 1/192
Verifying : mpich-ofi-gnu14-ohpc-3.4.3-320.ohpc.1.1.x86_64 2/192
Verifying : openmpi5-pmix-gnu14-ohpc-5.0.5-320.ohpc.5.1.x86_64 3/192
Verifying : prun-ohpc-2.2-310.ohpc.3.1.noarch 4/192
Verifying : ucx-ib-ohpc-1.17.0-320.ohpc.1.1.x86_64 5/192
Verifying : ucx-ohpc-1.17.0-320.ohpc.1.1.x86_64 6/192
Verifying : librdmacm-51.0-1.el9.x86_64 7/192
Verifying : python3-pyparsing-2.4.7-9.el9.noarch 8/192
Verifying : perl-Test-Harness-1:3.42-461.el9.noarch 9/192
Verifying : perl-Package-Generator-1.106-23.el9.noarch 10/192
Verifying : perl-ExtUtils-ParseXS-1:3.40-460.el9.noarch 11/192
Verifying : perl-CPAN-Meta-YAML-0.018-461.el9.noarch 12/192
Verifying : ghc-srpm-macros-1.5.0-6.el9.noarch 13/192
Verifying : perl-Test-Simple-3:1.302183-4.el9.noarch 14/192
Verifying : perl-Math-BigInt-1:1.9998.18-460.el9.noarch 15/192
Verifying : python-srpm-macros-3.9-54.el9.noarch 16/192
Verifying : perl-Module-Load-1:0.36-4.el9.noarch 17/192
Verifying : rust-srpm-macros-17-4.el9.noarch 18/192
Verifying : perl-Encode-Locale-1.05-21.el9.noarch 19/192
Verifying : perl-Module-Build-2:0.42.31-9.el9.noarch 20/192
Verifying : perl-bignum-0.51-460.el9.noarch 21/192
Verifying : perl-Pod-Checker-4:1.74-4.el9.noarch 22/192
Verifying : perl-Text-Balanced-2.04-4.el9.noarch 23/192
Verifying : perl-JSON-PP-1:4.06-4.el9.noarch 24/192
Verifying : perl-File-HomeDir-1.006-4.el9.noarch 25/192
Verifying : perl-Object-HashBase-0.009-7.el9.noarch 26/192
Verifying : perl-Math-BigRat-0.2614-460.el9.noarch 27/192
Verifying : perl-File-Which-1.23-10.el9.noarch 28/192
Verifying : perl-experimental-0.022-6.el9.noarch 29/192
Verifying : perl-local-lib-2.000024-13.el9.noarch 30/192
Verifying : perl-Module-CoreList-tools-1:5.20210320-3.el9.noarch 31/192
Verifying : perl-Module-CoreList-1:5.20210320-3.el9.noarch 32/192
Verifying : perl-Config-Perl-V-0.33-4.el9.noarch 33/192
Verifying : perl-Filter-Simple-0.96-460.el9.noarch 34/192
Verifying : perl-Text-Diff-1.45-13.el9.noarch 35/192
Verifying : perl-IO-Compress-2.102-4.el9.noarch 36/192
Verifying : perl-inc-latest-2:0.500-20.el9.noarch 37/192
Verifying : perl-Text-Glob-0.11-15.el9.noarch 38/192
Verifying : perl-Importer-0.026-4.el9.noarch 39/192
Verifying : perl-IPC-System-Simple-1.30-6.el9.noarch 40/192
Verifying : perl-CPAN-2.29-3.el9.noarch 41/192
Verifying : perl-File-Fetch-1.00-4.el9.noarch 42/192
Verifying : efi-srpm-macros-6-2.el9_0.noarch 43/192
Verifying : fonts-srpm-macros-1:2.0.5-7.el9.1.noarch 44/192
Verifying : go-srpm-macros-3.6.0-3.el9.noarch 45/192
Verifying : kernel-srpm-macros-1.0-13.el9.noarch 46/192
Verifying : lua-srpm-macros-1-6.el9.noarch 47/192
Verifying : openblas-srpm-macros-2-11.el9.noarch 48/192
Verifying : llvm-libs-18.1.8-3.el9.x86_64 49/192
Verifying : perl-Env-1.04-460.el9.noarch 50/192
Verifying : perl-Sub-Install-0.928-28.el9.noarch 51/192
Verifying : perl-Module-Signature-0.88-1.el9.noarch 52/192
Verifying : perl-Text-Template-1.59-5.el9.noarch 53/192
Verifying : perl-IO-Compress-Lzma-2.101-4.el9.noarch 54/192
Verifying : perl-Net-Ping-2.74-5.el9.noarch 55/192
Verifying : perl-Module-Load-Conditional-0.74-4.el9.noarch 56/192
Verifying : perl-Data-OptList-0.110-17.el9.noarch 57/192
Verifying : perl-Archive-Tar-2.38-6.el9.noarch 58/192
Verifying : perl-ExtUtils-Manifest-1:1.73-4.el9.noarch 59/192
Verifying : perl-encoding-4:3.00-462.el9.x86_64 60/192
Verifying : perl-Encode-devel-4:3.08-462.el9.x86_64 61/192
Verifying : perl-Tie-RefHash-1.40-4.el9.noarch 62/192
Verifying : perl-ExtUtils-Install-2.20-4.el9.noarch 63/192
Verifying : perl-Devel-Size-0.83-10.el9.x86_64 64/192
Verifying : perl-Compress-Raw-Bzip2-2.101-5.el9.x86_64 65/192
Verifying : perl-Params-Util-1.102-5.el9.x86_64 66/192
Verifying : perl-Perl-OSType-1.010-461.el9.noarch 67/192
Verifying : redhat-rpm-config-208-1.el9.noarch 68/192
Verifying : perl-Data-Section-0.200007-14.el9.noarch 69/192
Verifying : perl-ExtUtils-CBuilder-1:0.280236-4.el9.noarch 70/192
Verifying : perl-CPAN-Meta-2.150010-460.el9.noarch 71/192
Verifying : perl-CPAN-Meta-Requirements-2.140-461.el9.noarch 72/192
Verifying : perl-Sys-Syslog-0.36-461.el9.x86_64 73/192
Verifying : perl-IO-Zlib-1:1.11-4.el9.noarch 74/192
Verifying : perl-perlfaq-5.20201107-4.el9.noarch 75/192
Verifying : perl-Digest-SHA1-2.13-34.el9.x86_64 76/192
Verifying : perl-MRO-Compat-0.13-15.el9.noarch 77/192
Verifying : perl-Algorithm-Diff-1.2010-4.el9.noarch 78/192
Verifying : perl-srpm-macros-1-41.el9.noarch 79/192
Verifying : perl-Compress-Raw-Zlib-2.101-5.el9.x86_64 80/192
Verifying : perl-Unicode-Collate-1.29-4.el9.x86_64 81/192
Verifying : perl-ExtUtils-MakeMaker-2:7.60-3.el9.noarch 82/192
Verifying : perl-ExtUtils-MM-Utils-2:7.60-3.el9.noarch 83/192
Verifying : perl-ExtUtils-Command-2:7.60-3.el9.noarch 84/192
Verifying : perl-Software-License-0.103014-12.el9.noarch 85/192
Verifying : perl-Sub-Exporter-0.987-27.el9.noarch 86/192
Verifying : perl-Compress-Raw-Lzma-2.101-3.el9.x86_64 87/192
Verifying : perl-IPC-SysV-2.09-4.el9.x86_64 88/192
Verifying : perl-Digest-SHA-1:6.02-461.el9.x86_64 89/192
Verifying : perl-Math-BigInt-FastCalc-0.500.900-460.el9.x86_64 90/192
Verifying : perl-CPAN-DistnameInfo-0.12-23.el9.noarch 91/192
Verifying : perl-MIME-Charset-1.012.2-15.el9.noarch 92/192
Verifying : perl-Term-Table-0.015-8.el9.noarch 93/192
Verifying : perl-Filter-2:1.60-4.el9.x86_64 94/192
Verifying : perl-DB_File-1.855-4.el9.x86_64 95/192
Verifying : perl-Term-Size-Any-0.002-35.el9.noarch 96/192
Verifying : perl-autodie-2.34-4.el9.noarch 97/192
Verifying : perl-Term-Size-Perl-0.031-12.el9.x86_64 98/192
Verifying : perl-Params-Check-1:0.38-461.el9.noarch 99/192
Verifying : perl-Unicode-LineBreak-2019.001-11.el9.x86_64 100/192
Verifying : perl-Devel-PPPort-3.62-4.el9.x86_64 101/192
Verifying : libpsm2-11.2.230-1.el9.x86_64 102/192
Verifying : perl-Unicode-Normalize-1.27-461.el9.x86_64 103/192
Verifying : sombok-2.4.0-16.el9.x86_64 104/192
Verifying : perl-IPC-Cmd-2:1.04-461.el9.noarch 105/192
Verifying : perl-Module-Metadata-1.000037-460.el9.noarch 106/192
Verifying : ocaml-srpm-macros-6-6.el9.noarch 107/192
Verifying : annobin-12.65-1.el9.x86_64 108/192
Verifying : dwz-0.14-3.el9.x86_64 109/192
Verifying : perl-ph-5.32.1-481.el9.x86_64 110/192
Verifying : perl-devel-4:5.32.1-481.el9.x86_64 111/192
Verifying : perl-Time-Piece-1.3401-481.el9.x86_64 112/192
Verifying : perl-Sys-Hostname-1.23-481.el9.x86_64 113/192
Verifying : perl-Opcode-1.48-481.el9.x86_64 114/192
Verifying : perl-ODBM_File-1.16-481.el9.x86_64 115/192
Verifying : perl-I18N-Langinfo-0.19-481.el9.x86_64 116/192
Verifying : perl-Hash-Util-FieldHash-1.20-481.el9.x86_64 117/192
Verifying : perl-Hash-Util-0.23-481.el9.x86_64 118/192
Verifying : perl-GDBM_File-1.18-481.el9.x86_64 119/192
Verifying : perl-File-DosGlob-1.12-481.el9.x86_64 120/192
Verifying : perl-Devel-Peek-1.28-481.el9.x86_64 121/192
Verifying : perl-4:5.32.1-481.el9.x86_64 122/192
Verifying : perl-vmsish-1.04-481.el9.noarch 123/192
Verifying : perl-utils-5.32.1-481.el9.noarch 124/192
Verifying : perl-sort-2.04-481.el9.noarch 125/192
Verifying : perl-sigtrap-1.09-481.el9.noarch 126/192
Verifying : perl-open-1.12-481.el9.noarch 127/192
Verifying : perl-meta-notation-5.32.1-481.el9.noarch 128/192
Verifying : perl-macros-4:5.32.1-481.el9.noarch 129/192
Verifying : perl-locale-1.09-481.el9.noarch 130/192
Verifying : perl-libnetcfg-4:5.32.1-481.el9.noarch 131/192
Verifying : perl-less-0.03-481.el9.noarch 132/192
Verifying : perl-filetest-1.03-481.el9.noarch 133/192
Verifying : perl-fields-2.27-481.el9.noarch 134/192
Verifying : perl-encoding-warnings-0.13-481.el9.noarch 135/192
Verifying : perl-doc-5.32.1-481.el9.noarch 136/192
Verifying : perl-diagnostics-1.37-481.el9.noarch 137/192
Verifying : perl-deprecate-0.04-481.el9.noarch 138/192
Verifying : perl-debugger-1.56-481.el9.noarch 139/192
Verifying : perl-blib-1.07-481.el9.noarch 140/192
Verifying : perl-autouse-1.11-481.el9.noarch 141/192
Verifying : perl-User-pwent-1.03-481.el9.noarch 142/192
Verifying : perl-Unicode-UCD-0.75-481.el9.noarch 143/192
Verifying : perl-Time-1.03-481.el9.noarch 144/192
Verifying : perl-Tie-Memoize-1.1-481.el9.noarch 145/192
Verifying : perl-Tie-File-1.06-481.el9.noarch 146/192
Verifying : perl-Tie-4.6-481.el9.noarch 147/192
Verifying : perl-Thread-Semaphore-2.13-481.el9.noarch 148/192
Verifying : perl-Thread-3.05-481.el9.noarch 149/192
Verifying : perl-Text-Abbrev-1.02-481.el9.noarch 150/192
Verifying : perl-Test-1.31-481.el9.noarch 151/192
Verifying : perl-Term-ReadLine-1.17-481.el9.noarch 152/192
Verifying : perl-Term-Complete-1.403-481.el9.noarch 153/192
Verifying : perl-SelfLoader-1.26-481.el9.noarch 154/192
Verifying : perl-Search-Dict-1.07-481.el9.noarch 155/192
Verifying : perl-Safe-2.41-481.el9.noarch 156/192
Verifying : perl-Pod-Html-1.25-481.el9.noarch 157/192
Verifying : perl-Pod-Functions-1.13-481.el9.noarch 158/192
Verifying : perl-Net-1.02-481.el9.noarch 159/192
Verifying : perl-NEXT-0.67-481.el9.noarch 160/192
Verifying : perl-Module-Loaded-1:0.08-481.el9.noarch 161/192
Verifying : perl-Memoize-1.03-481.el9.noarch 162/192
Verifying : perl-Math-Complex-1.59-481.el9.noarch 163/192
Verifying : perl-Locale-Maketext-Simple-1:0.21-481.el9.noarch 164/192
Verifying : perl-I18N-LangTags-0.44-481.el9.noarch 165/192
Verifying : perl-I18N-Collate-1.02-481.el9.noarch 166/192
Verifying : perl-FindBin-1.51-481.el9.noarch 167/192
Verifying : perl-FileCache-1.10-481.el9.noarch 168/192
Verifying : perl-File-Copy-2.34-481.el9.noarch 169/192
Verifying : perl-File-Compare-1.100.600-481.el9.noarch 170/192
Verifying : perl-ExtUtils-Miniperl-1.09-481.el9.noarch 171/192
Verifying : perl-ExtUtils-Embed-1.35-481.el9.noarch 172/192
Verifying : perl-ExtUtils-Constant-0.25-481.el9.noarch 173/192
Verifying : perl-English-1.11-481.el9.noarch 174/192
Verifying : perl-Dumpvalue-2.27-481.el9.noarch 175/192
Verifying : perl-DirHandle-1.05-481.el9.noarch 176/192
Verifying : perl-Devel-SelfStubber-1.06-481.el9.noarch 177/192
Verifying : perl-DBM_Filter-0.06-481.el9.noarch 178/192
Verifying : perl-Config-Extensions-0.03-481.el9.noarch 179/192
Verifying : perl-Benchmark-1.23-481.el9.noarch 180/192
Verifying : perl-AutoSplit-5.74-481.el9.noarch 181/192
Verifying : perl-Attribute-Handlers-1.01-481.el9.noarch 182/192
Verifying : perl-version-7:0.99.28-4.el9.x86_64 183/192
Verifying : perl-Locale-Maketext-1.29-461.el9.noarch 184/192
Verifying : systemtap-sdt-devel-5.1-4.el9_5.x86_64 185/192
Verifying : perl-Archive-Zip-1.68-6.el9.noarch 186/192
Verifying : perl-PerlIO-via-QuotedPrint-0.09-4.el9.noarch 187/192
Verifying : perl-Time-HiRes-4:1.9764-462.el9.x86_64 188/192
Verifying : gcc-plugin-annobin-11.5.0-5.el9_5.x86_64 189/192
Verifying : qt5-srpm-macros-5.15.9-1.el9.noarch 190/192
Verifying : perl-Compress-Bzip2-2.28-5.el9.x86_64 191/192
Verifying : pyproject-srpm-macros-1.12.0-1.el9.noarch 192/192
Installed:
annobin-12.65-1.el9.x86_64 dwz-0.14-3.el9.x86_64 efi-srpm-macros-6-2.el9_0.noarch fonts-srpm-macros-1:2.0.5-7.el9.1.noarch
gcc-plugin-annobin-11.5.0-5.el9_5.x86_64 ghc-srpm-macros-1.5.0-6.el9.noarch go-srpm-macros-3.6.0-3.el9.noarch kernel-srpm-macros-1.0-13.el9.noarch
libfabric-ohpc-1.18.0-300.ohpc.2.6.x86_64 libpsm2-11.2.230-1.el9.x86_64 librdmacm-51.0-1.el9.x86_64 llvm-libs-18.1.8-3.el9.x86_64
lua-srpm-macros-1-6.el9.noarch mpich-ofi-gnu14-ohpc-3.4.3-320.ohpc.1.1.x86_64 ocaml-srpm-macros-6-6.el9.noarch openblas-srpm-macros-2-11.el9.noarch
openmpi5-pmix-gnu14-ohpc-5.0.5-320.ohpc.5.1.x86_64 perl-4:5.32.1-481.el9.x86_64 perl-Algorithm-Diff-1.2010-4.el9.noarch perl-Archive-Tar-2.38-6.el9.noarch
perl-Archive-Zip-1.68-6.el9.noarch perl-Attribute-Handlers-1.01-481.el9.noarch perl-AutoSplit-5.74-481.el9.noarch perl-Benchmark-1.23-481.el9.noarch
perl-CPAN-2.29-3.el9.noarch perl-CPAN-DistnameInfo-0.12-23.el9.noarch perl-CPAN-Meta-2.150010-460.el9.noarch perl-CPAN-Meta-Requirements-2.140-461.el9.noarch
perl-CPAN-Meta-YAML-0.018-461.el9.noarch perl-Compress-Bzip2-2.28-5.el9.x86_64 perl-Compress-Raw-Bzip2-2.101-5.el9.x86_64 perl-Compress-Raw-Lzma-2.101-3.el9.x86_64
perl-Compress-Raw-Zlib-2.101-5.el9.x86_64 perl-Config-Extensions-0.03-481.el9.noarch perl-Config-Perl-V-0.33-4.el9.noarch perl-DBM_Filter-0.06-481.el9.noarch
perl-DB_File-1.855-4.el9.x86_64 perl-Data-OptList-0.110-17.el9.noarch perl-Data-Section-0.200007-14.el9.noarch perl-Devel-PPPort-3.62-4.el9.x86_64
perl-Devel-Peek-1.28-481.el9.x86_64 perl-Devel-SelfStubber-1.06-481.el9.noarch perl-Devel-Size-0.83-10.el9.x86_64 perl-Digest-SHA-1:6.02-461.el9.x86_64
perl-Digest-SHA1-2.13-34.el9.x86_64 perl-DirHandle-1.05-481.el9.noarch perl-Dumpvalue-2.27-481.el9.noarch perl-Encode-Locale-1.05-21.el9.noarch
perl-Encode-devel-4:3.08-462.el9.x86_64 perl-English-1.11-481.el9.noarch perl-Env-1.04-460.el9.noarch perl-ExtUtils-CBuilder-1:0.280236-4.el9.noarch
perl-ExtUtils-Command-2:7.60-3.el9.noarch perl-ExtUtils-Constant-0.25-481.el9.noarch perl-ExtUtils-Embed-1.35-481.el9.noarch perl-ExtUtils-Install-2.20-4.el9.noarch
perl-ExtUtils-MM-Utils-2:7.60-3.el9.noarch perl-ExtUtils-MakeMaker-2:7.60-3.el9.noarch perl-ExtUtils-Manifest-1:1.73-4.el9.noarch perl-ExtUtils-Miniperl-1.09-481.el9.noarch
perl-ExtUtils-ParseXS-1:3.40-460.el9.noarch perl-File-Compare-1.100.600-481.el9.noarch perl-File-Copy-2.34-481.el9.noarch perl-File-DosGlob-1.12-481.el9.x86_64
perl-File-Fetch-1.00-4.el9.noarch perl-File-HomeDir-1.006-4.el9.noarch perl-File-Which-1.23-10.el9.noarch perl-FileCache-1.10-481.el9.noarch
perl-Filter-2:1.60-4.el9.x86_64 perl-Filter-Simple-0.96-460.el9.noarch perl-FindBin-1.51-481.el9.noarch perl-GDBM_File-1.18-481.el9.x86_64
perl-Hash-Util-0.23-481.el9.x86_64 perl-Hash-Util-FieldHash-1.20-481.el9.x86_64 perl-I18N-Collate-1.02-481.el9.noarch perl-I18N-LangTags-0.44-481.el9.noarch
perl-I18N-Langinfo-0.19-481.el9.x86_64 perl-IO-Compress-2.102-4.el9.noarch perl-IO-Compress-Lzma-2.101-4.el9.noarch perl-IO-Zlib-1:1.11-4.el9.noarch
perl-IPC-Cmd-2:1.04-461.el9.noarch perl-IPC-SysV-2.09-4.el9.x86_64 perl-IPC-System-Simple-1.30-6.el9.noarch perl-Importer-0.026-4.el9.noarch
perl-JSON-PP-1:4.06-4.el9.noarch perl-Locale-Maketext-1.29-461.el9.noarch perl-Locale-Maketext-Simple-1:0.21-481.el9.noarch perl-MIME-Charset-1.012.2-15.el9.noarch
perl-MRO-Compat-0.13-15.el9.noarch perl-Math-BigInt-1:1.9998.18-460.el9.noarch perl-Math-BigInt-FastCalc-0.500.900-460.el9.x86_64 perl-Math-BigRat-0.2614-460.el9.noarch
perl-Math-Complex-1.59-481.el9.noarch perl-Memoize-1.03-481.el9.noarch perl-Module-Build-2:0.42.31-9.el9.noarch perl-Module-CoreList-1:5.20210320-3.el9.noarch
perl-Module-CoreList-tools-1:5.20210320-3.el9.noarch perl-Module-Load-1:0.36-4.el9.noarch perl-Module-Load-Conditional-0.74-4.el9.noarch perl-Module-Loaded-1:0.08-481.el9.noarch
perl-Module-Metadata-1.000037-460.el9.noarch perl-Module-Signature-0.88-1.el9.noarch perl-NEXT-0.67-481.el9.noarch perl-Net-1.02-481.el9.noarch
perl-Net-Ping-2.74-5.el9.noarch perl-ODBM_File-1.16-481.el9.x86_64 perl-Object-HashBase-0.009-7.el9.noarch perl-Opcode-1.48-481.el9.x86_64
perl-Package-Generator-1.106-23.el9.noarch perl-Params-Check-1:0.38-461.el9.noarch perl-Params-Util-1.102-5.el9.x86_64 perl-Perl-OSType-1.010-461.el9.noarch
perl-PerlIO-via-QuotedPrint-0.09-4.el9.noarch perl-Pod-Checker-4:1.74-4.el9.noarch perl-Pod-Functions-1.13-481.el9.noarch perl-Pod-Html-1.25-481.el9.noarch
perl-Safe-2.41-481.el9.noarch perl-Search-Dict-1.07-481.el9.noarch perl-SelfLoader-1.26-481.el9.noarch perl-Software-License-0.103014-12.el9.noarch
perl-Sub-Exporter-0.987-27.el9.noarch perl-Sub-Install-0.928-28.el9.noarch perl-Sys-Hostname-1.23-481.el9.x86_64 perl-Sys-Syslog-0.36-461.el9.x86_64
perl-Term-Complete-1.403-481.el9.noarch perl-Term-ReadLine-1.17-481.el9.noarch perl-Term-Size-Any-0.002-35.el9.noarch perl-Term-Size-Perl-0.031-12.el9.x86_64
perl-Term-Table-0.015-8.el9.noarch perl-Test-1.31-481.el9.noarch perl-Test-Harness-1:3.42-461.el9.noarch perl-Test-Simple-3:1.302183-4.el9.noarch
perl-Text-Abbrev-1.02-481.el9.noarch perl-Text-Balanced-2.04-4.el9.noarch perl-Text-Diff-1.45-13.el9.noarch perl-Text-Glob-0.11-15.el9.noarch
perl-Text-Template-1.59-5.el9.noarch perl-Thread-3.05-481.el9.noarch perl-Thread-Semaphore-2.13-481.el9.noarch perl-Tie-4.6-481.el9.noarch
perl-Tie-File-1.06-481.el9.noarch perl-Tie-Memoize-1.1-481.el9.noarch perl-Tie-RefHash-1.40-4.el9.noarch perl-Time-1.03-481.el9.noarch
perl-Time-HiRes-4:1.9764-462.el9.x86_64 perl-Time-Piece-1.3401-481.el9.x86_64 perl-Unicode-Collate-1.29-4.el9.x86_64 perl-Unicode-LineBreak-2019.001-11.el9.x86_64
perl-Unicode-Normalize-1.27-461.el9.x86_64 perl-Unicode-UCD-0.75-481.el9.noarch perl-User-pwent-1.03-481.el9.noarch perl-autodie-2.34-4.el9.noarch
perl-autouse-1.11-481.el9.noarch perl-bignum-0.51-460.el9.noarch perl-blib-1.07-481.el9.noarch perl-debugger-1.56-481.el9.noarch
perl-deprecate-0.04-481.el9.noarch perl-devel-4:5.32.1-481.el9.x86_64 perl-diagnostics-1.37-481.el9.noarch perl-doc-5.32.1-481.el9.noarch
perl-encoding-4:3.00-462.el9.x86_64 perl-encoding-warnings-0.13-481.el9.noarch perl-experimental-0.022-6.el9.noarch perl-fields-2.27-481.el9.noarch
perl-filetest-1.03-481.el9.noarch perl-inc-latest-2:0.500-20.el9.noarch perl-less-0.03-481.el9.noarch perl-libnetcfg-4:5.32.1-481.el9.noarch
perl-local-lib-2.000024-13.el9.noarch perl-locale-1.09-481.el9.noarch perl-macros-4:5.32.1-481.el9.noarch perl-meta-notation-5.32.1-481.el9.noarch
perl-open-1.12-481.el9.noarch perl-perlfaq-5.20201107-4.el9.noarch perl-ph-5.32.1-481.el9.x86_64 perl-sigtrap-1.09-481.el9.noarch
perl-sort-2.04-481.el9.noarch perl-srpm-macros-1-41.el9.noarch perl-utils-5.32.1-481.el9.noarch perl-version-7:0.99.28-4.el9.x86_64
perl-vmsish-1.04-481.el9.noarch prun-ohpc-2.2-310.ohpc.3.1.noarch pyproject-srpm-macros-1.12.0-1.el9.noarch python-srpm-macros-3.9-54.el9.noarch
python3-pyparsing-2.4.7-9.el9.noarch qt5-srpm-macros-5.15.9-1.el9.noarch redhat-rpm-config-208-1.el9.noarch rust-srpm-macros-17-4.el9.noarch
sombok-2.4.0-16.el9.x86_64 systemtap-sdt-devel-5.1-4.el9_5.x86_64 ucx-ib-ohpc-1.17.0-320.ohpc.1.1.x86_64 ucx-ohpc-1.17.0-320.ohpc.1.1.x86_64
Complete!
Last metadata expiration check: 2:37:14 ago on Tue Feb 25 07:33:36 2025.
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
ohpc-gnu14-perf-tools x86_64 3.2-320.ohpc.1.1 OpenHPC-updates 7.6 k
Installing dependencies:
ModemManager-glib x86_64 1.20.2-1.el9 baseos 334 k
adwaita-cursor-theme noarch 40.1.1-3.el9 appstream 623 k
adwaita-icon-theme noarch 40.1.1-3.el9 appstream 11 M
at-spi2-atk x86_64 2.38.0-4.el9 appstream 86 k
at-spi2-core x86_64 2.40.3-1.el9 appstream 176 k
atk x86_64 2.36.0-5.el9 appstream 270 k
avahi-glib x86_64 0.8-21.el9 appstream 14 k
bluez-libs x86_64 5.72-2.el9 baseos 81 k
boost-gnu14-mpich-ohpc x86_64 1.81.0-320.ohpc.2.1 OpenHPC-updates 15 M
boost-gnu14-mvapich2-ohpc x86_64 1.81.0-320.ohpc.2.1 OpenHPC-updates 15 M
boost-gnu14-openmpi5-ohpc x86_64 1.81.0-320.ohpc.1.1 OpenHPC-updates 15 M
bubblewrap x86_64 0.4.1-8.el9_5 baseos 49 k
colord-libs x86_64 1.4.5-4.el9 appstream 230 k
composefs-libs x86_64 1.0.5-1.el9 appstream 60 k
copy-jdk-configs noarch 4.0-3.el9 appstream 27 k
cubelib-gnu14-ohpc x86_64 4.8.2-320.ohpc.1.1 OpenHPC-updates 2.8 M
cubew-gnu14-ohpc x86_64 4.8.2-320.ohpc.1.1 OpenHPC-updates 350 k
cups-libs x86_64 1:2.3.3op2-31.el9_5 baseos 262 k
dimemas-gnu14-mpich-ohpc x86_64 5.4.2-320.ohpc.8.1 OpenHPC-updates 327 k
dimemas-gnu14-mvapich2-ohpc x86_64 5.4.2-320.ohpc.8.1 OpenHPC-updates 326 k
dimemas-gnu14-openmpi5-ohpc x86_64 5.4.2-320.ohpc.7.1 OpenHPC-updates 326 k
exempi x86_64 2.6.0-0.2.20211007gite23c213.el9 appstream 523 k
exiv2-libs x86_64 0.27.5-2.el9 appstream 779 k
extrae-gnu14-mpich-ohpc x86_64 3.8.3-320.ohpc.8.1 OpenHPC-updates 6.1 M
extrae-gnu14-mvapich2-ohpc x86_64 3.8.3-320.ohpc.8.1 OpenHPC-updates 6.1 M
extrae-gnu14-openmpi5-ohpc x86_64 3.8.3-320.ohpc.7.1 OpenHPC-updates 6.1 M
fdk-aac-free x86_64 2.0.0-8.el9 appstream 324 k
flac-libs x86_64 1.3.3-10.el9_2.1 appstream 217 k
flatpak-selinux noarch 1.12.9-3.el9_5 appstream 21 k
flatpak-session-helper x86_64 1.12.9-3.el9_5 appstream 72 k
fuse x86_64 2.9.9-16.el9 baseos 78 k
fuse-common x86_64 3.10.2-9.el9 baseos 7.3 k
gdk-pixbuf2-modules x86_64 2.42.6-4.el9_4 appstream 85 k
geoclue2 x86_64 2.6.0-7.el9 appstream 122 k
giflib x86_64 5.2.1-9.el9 appstream 48 k
graphene x86_64 1.10.6-2.el9 appstream 64 k
gsm x86_64 1.0.19-6.el9 appstream 33 k
gstreamer1 x86_64 1.22.1-2.el9 appstream 1.4 M
gstreamer1-plugins-base x86_64 1.22.1-3.el9_5 appstream 2.2 M
gtk-update-icon-cache x86_64 3.24.31-5.el9 appstream 32 k
hicolor-icon-theme noarch 0.17-13.el9 appstream 66 k
imb-gnu14-mpich-ohpc x86_64 2021.3-320.ohpc.2.1 OpenHPC-updates 461 k
imb-gnu14-mvapich2-ohpc x86_64 2021.3-320.ohpc.2.1 OpenHPC-updates 458 k
imb-gnu14-openmpi5-ohpc x86_64 2021.3-320.ohpc.1.1 OpenHPC-updates 460 k
infiniband-diags x86_64 51.0-1.el9 appstream 316 k
iso-codes noarch 4.6.0-3.el9 appstream 3.3 M
java-17-openjdk x86_64 1:17.0.14.0.7-2.el9 appstream 430 k
java-17-openjdk-headless x86_64 1:17.0.14.0.7-2.el9 appstream 44 M
javapackages-filesystem noarch 6.0.0-7.el9_5 appstream 9.9 k
jbigkit-libs x86_64 2.1-23.el9 appstream 52 k
lcms2 x86_64 2.12-3.el9 appstream 166 k
libX11-xcb x86_64 1.7.0-9.el9 appstream 10 k
libXcomposite x86_64 0.4.5-7.el9 appstream 23 k
libXcursor x86_64 1.2.0-7.el9 appstream 30 k
libXdamage x86_64 1.1.5-7.el9 appstream 22 k
libXfixes x86_64 5.0.3-16.el9 appstream 19 k
libXi x86_64 1.7.10-8.el9 appstream 39 k
libXinerama x86_64 1.1.4-10.el9 appstream 14 k
libXrandr x86_64 1.5.2-8.el9 appstream 27 k
libXtst x86_64 1.2.3-16.el9 appstream 20 k
libXv x86_64 1.0.11-16.el9 appstream 18 k
libXxf86vm x86_64 1.1.4-18.el9 appstream 18 k
libasyncns x86_64 0.8-22.el9 appstream 29 k
libcanberra x86_64 0.30-27.el9 appstream 85 k
libdrm x86_64 2.4.121-1.el9 appstream 158 k
libepoxy x86_64 1.5.5-4.el9 appstream 244 k
libexif x86_64 0.6.22-6.el9 appstream 423 k
libfontenc x86_64 1.1.3-17.el9 appstream 30 k
libgexiv2 x86_64 0.12.3-1.el9 appstream 81 k
libglvnd x86_64 1:1.3.4-1.el9 appstream 133 k
libglvnd-egl x86_64 1:1.3.4-1.el9 appstream 36 k
libglvnd-glx x86_64 1:1.3.4-1.el9 appstream 140 k
libgsf x86_64 1.14.47-5.el9 appstream 245 k
libgxps x86_64 0.3.2-3.el9 appstream 78 k
libibumad x86_64 51.0-1.el9 baseos 26 k
libiptcdata x86_64 1.0.5-10.el9 appstream 60 k
libldac x86_64 2.0.2.3-10.el9 appstream 40 k
libnotify x86_64 0.7.9-8.el9 appstream 43 k
libogg x86_64 2:1.3.4-6.el9 appstream 32 k
libosinfo x86_64 1.10.0-1.el9 appstream 312 k
libpciaccess x86_64 0.16-7.el9 baseos 26 k
libsbc x86_64 1.4-9.el9 appstream 44 k
libsndfile x86_64 1.0.31-8.el9_5.2 appstream 206 k
libtheora x86_64 1:1.1.1-31.el9 appstream 163 k
libtiff x86_64 4.4.0-13.el9 appstream 197 k
libtool-ltdl x86_64 2.4.6-46.el9 appstream 35 k
libtracker-sparql x86_64 3.1.2-3.el9_1 appstream 316 k
libunwind-devel x86_64 1.6.2-1.el9 epel 80 k
libvisual x86_64 1:0.4.0-34.el9 appstream 143 k
libvorbis x86_64 1:1.3.7-5.el9 appstream 192 k
libwayland-client x86_64 1.21.0-1.el9 appstream 33 k
libwayland-cursor x86_64 1.21.0-1.el9 appstream 18 k
libwayland-egl x86_64 1.21.0-1.el9 appstream 12 k
libwayland-server x86_64 1.21.0-1.el9 appstream 41 k
libwebp x86_64 1.2.0-8.el9 appstream 276 k
libxkbcommon x86_64 1.0.3-4.el9 appstream 132 k
libxshmfence x86_64 1.3-10.el9 appstream 12 k
libxslt x86_64 1.1.34-9.el9 appstream 240 k
likwid-gnu14-ohpc x86_64 5.3.0-320.ohpc.1.1 OpenHPC-updates 1.3 M
lksctp-tools x86_64 1.0.19-3.el9_4 baseos 96 k
low-memory-monitor x86_64 2.1-4.el9 appstream 35 k
mesa-filesystem x86_64 24.1.2-3.el9 appstream 10 k
mesa-libEGL x86_64 24.1.2-3.el9 appstream 138 k
mesa-libGL x86_64 24.1.2-3.el9 appstream 169 k
mesa-libgbm x86_64 24.1.2-3.el9 appstream 35 k
mesa-libglapi x86_64 24.1.2-3.el9 appstream 44 k
mkfontscale x86_64 1.2.1-3.el9 appstream 31 k
mvapich2-gnu14-ohpc x86_64 2.3.7-320.ohpc.3.1 OpenHPC-updates 8.8 M
omb-gnu14-mpich-ohpc x86_64 7.3-320.ohpc.2.1 OpenHPC-updates 536 k
omb-gnu14-mvapich2-ohpc x86_64 7.3-320.ohpc.2.1 OpenHPC-updates 540 k
omb-gnu14-openmpi5-ohpc x86_64 7.3-320.ohpc.1.1 OpenHPC-updates 645 k
opari2-gnu14-ohpc x86_64 2.0.8-320.ohpc.1.1 OpenHPC-updates 186 k
openjpeg2 x86_64 2.4.0-7.el9 appstream 162 k
opus x86_64 1.3.1-10.el9 appstream 199 k
orc x86_64 0.4.31-8.el9 appstream 182 k
osinfo-db noarch 20240701-2.el9 appstream 289 k
osinfo-db-tools x86_64 1.10.0-1.el9 appstream 68 k
ostree-libs x86_64 2024.9-1.el9_5 appstream 467 k
otf2-gnu14-mpich-ohpc x86_64 3.0.3-320.ohpc.2.1 OpenHPC-updates 2.0 M
otf2-gnu14-mvapich2-ohpc x86_64 3.0.3-320.ohpc.2.1 OpenHPC-updates 2.0 M
otf2-gnu14-openmpi5-ohpc x86_64 3.0.3-320.ohpc.1.1 OpenHPC-updates 2.0 M
papi-ohpc x86_64 6.0.0-300.ohpc.1.6 OpenHPC 1.9 M
pdtoolkit-gnu14-ohpc x86_64 3.25.1-320.ohpc.1.1 OpenHPC-updates 91 M
pipewire-jack-audio-connection-kit-libs x86_64 1.0.1-1.el9 appstream 134 k
pipewire-libs x86_64 1.0.1-1.el9 appstream 1.9 M
poppler x86_64 21.01.0-21.el9 appstream 1.1 M
poppler-data noarch 0.4.9-9.el9.0.1 appstream 1.8 M
poppler-glib x86_64 21.01.0-21.el9 appstream 151 k
pulseaudio-libs x86_64 15.0-2.el9 appstream 666 k
rtkit x86_64 0.11-29.el9 appstream 55 k
scalasca-gnu14-mpich-ohpc x86_64 2.6.1-320.ohpc.3.1 OpenHPC-updates 2.6 M
scalasca-gnu14-mvapich2-ohpc x86_64 2.6.1-320.ohpc.3.1 OpenHPC-updates 2.6 M
scalasca-gnu14-openmpi5-ohpc x86_64 2.6.1-320.ohpc.2.1 OpenHPC-updates 2.6 M
scorep-gnu14-mpich-ohpc x86_64 8.4-320.ohpc.3.1 OpenHPC-updates 3.2 M
scorep-gnu14-mvapich2-ohpc x86_64 8.4-320.ohpc.3.1 OpenHPC-updates 3.2 M
scorep-gnu14-openmpi5-ohpc x86_64 8.4-320.ohpc.2.1 OpenHPC-updates 3.4 M
sionlib-gnu14-mpich-ohpc x86_64 1.7.7-320.ohpc.3.1 OpenHPC-updates 320 k
sionlib-gnu14-mvapich2-ohpc x86_64 1.7.7-320.ohpc.3.1 OpenHPC-updates 320 k
sionlib-gnu14-openmpi5-ohpc x86_64 1.7.7-320.ohpc.2.1 OpenHPC-updates 322 k
sound-theme-freedesktop noarch 0.8-17.el9 appstream 377 k
tau-gnu14-mpich-ohpc x86_64 2.31.1-320.ohpc.8.1 OpenHPC-updates 27 M
tau-gnu14-mvapich2-ohpc x86_64 2.31.1-320.ohpc.8.1 OpenHPC-updates 27 M
tau-gnu14-openmpi5-ohpc x86_64 2.31.1-320.ohpc.7.1 OpenHPC-updates 27 M
totem-pl-parser x86_64 3.26.6-2.el9 appstream 130 k
tracker x86_64 3.1.2-3.el9_1 appstream 538 k
ttmkfdir x86_64 3.0.9-65.el9 appstream 52 k
tzdata-java noarch 2025a-1.el9 appstream 145 k
upower x86_64 0.99.13-2.el9 appstream 165 k
webrtc-audio-processing x86_64 0.3.1-8.el9.0.1 appstream 303 k
wireplumber x86_64 0.4.14-1.el9.0.1 appstream 83 k
wireplumber-libs x86_64 0.4.14-1.el9.0.1 appstream 338 k
xdg-dbus-proxy x86_64 0.1.3-1.el9 appstream 41 k
xdg-desktop-portal x86_64 1.12.6-1.el9 appstream 367 k
xkeyboard-config noarch 2.33-2.el9 appstream 779 k
xorg-x11-fonts-Type1 noarch 7.5-33.el9 appstream 499 k
Installing weak dependencies:
dconf x86_64 0.40.0-6.el9 appstream 109 k
exiv2 x86_64 0.27.5-2.el9 appstream 975 k
flatpak x86_64 1.12.9-3.el9_5 appstream 1.7 M
gtk3 x86_64 3.24.31-5.el9 appstream 4.8 M
libcanberra-gtk3 x86_64 0.30-27.el9 appstream 31 k
mesa-dri-drivers x86_64 24.1.2-3.el9 appstream 8.8 M
pipewire x86_64 1.0.1-1.el9 appstream 101 k
pipewire-alsa x86_64 1.0.1-1.el9 appstream 56 k
pipewire-jack-audio-connection-kit x86_64 1.0.1-1.el9 appstream 8.1 k
pipewire-pulseaudio x86_64 1.0.1-1.el9 appstream 185 k
tracker-miners x86_64 3.1.2-4.el9_3 appstream 888 k
xdg-desktop-portal-gtk x86_64 1.12.0-3.el9 appstream 130 k
Transaction Summary
==============================================================================================================================================================================================================
Install 168 Packages
Total download size: 380 M
Installed size: 1.9 G
Downloading Packages:
(1/168): papi-ohpc-6.0.0-300.ohpc.1.6.x86_64.rpm 1.2 MB/s | 1.9 MB 00:01
(2/168): boost-gnu14-mvapich2-ohpc-1.81.0-320.ohpc.2.1.x86_64.rpm 5.5 MB/s | 15 MB 00:02
(3/168): boost-gnu14-openmpi5-ohpc-1.81.0-320.ohpc.1.1.x86_64.rpm 13 MB/s | 15 MB 00:01
(4/168): cubelib-gnu14-ohpc-4.8.2-320.ohpc.1.1.x86_64.rpm 13 MB/s | 2.8 MB 00:00
(5/168): boost-gnu14-mpich-ohpc-1.81.0-320.ohpc.2.1.x86_64.rpm 4.9 MB/s | 15 MB 00:03
(6/168): cubew-gnu14-ohpc-4.8.2-320.ohpc.1.1.x86_64.rpm 1.4 MB/s | 350 kB 00:00
(7/168): dimemas-gnu14-mpich-ohpc-5.4.2-320.ohpc.8.1.x86_64.rpm 1.7 MB/s | 327 kB 00:00
(8/168): dimemas-gnu14-mvapich2-ohpc-5.4.2-320.ohpc.8.1.x86_64.rpm 1.7 MB/s | 326 kB 00:00
(9/168): dimemas-gnu14-openmpi5-ohpc-5.4.2-320.ohpc.7.1.x86_64.rpm 1.7 MB/s | 326 kB 00:00
(10/168): extrae-gnu14-mpich-ohpc-3.8.3-320.ohpc.8.1.x86_64.rpm 14 MB/s | 6.1 MB 00:00
(11/168): extrae-gnu14-openmpi5-ohpc-3.8.3-320.ohpc.7.1.x86_64.rpm 14 MB/s | 6.1 MB 00:00
(12/168): imb-gnu14-mpich-ohpc-2021.3-320.ohpc.2.1.x86_64.rpm 2.4 MB/s | 461 kB 00:00
(13/168): imb-gnu14-mvapich2-ohpc-2021.3-320.ohpc.2.1.x86_64.rpm 2.4 MB/s | 458 kB 00:00
(14/168): imb-gnu14-openmpi5-ohpc-2021.3-320.ohpc.1.1.x86_64.rpm 2.4 MB/s | 460 kB 00:00
(15/168): extrae-gnu14-mvapich2-ohpc-3.8.3-320.ohpc.8.1.x86_64.rpm 8.0 MB/s | 6.1 MB 00:00
(16/168): likwid-gnu14-ohpc-5.3.0-320.ohpc.1.1.x86_64.rpm 6.5 MB/s | 1.3 MB 00:00
(17/168): ohpc-gnu14-perf-tools-3.2-320.ohpc.1.1.x86_64.rpm 42 kB/s | 7.6 kB 00:00
(18/168): omb-gnu14-mpich-ohpc-7.3-320.ohpc.2.1.x86_64.rpm 2.8 MB/s | 536 kB 00:00
(19/168): omb-gnu14-mvapich2-ohpc-7.3-320.ohpc.2.1.x86_64.rpm 2.8 MB/s | 540 kB 00:00
(20/168): omb-gnu14-openmpi5-ohpc-7.3-320.ohpc.1.1.x86_64.rpm 3.3 MB/s | 645 kB 00:00
(21/168): mvapich2-gnu14-ohpc-2.3.7-320.ohpc.3.1.x86_64.rpm 14 MB/s | 8.8 MB 00:00
(22/168): opari2-gnu14-ohpc-2.0.8-320.ohpc.1.1.x86_64.rpm 1.0 MB/s | 186 kB 00:00
(23/168): otf2-gnu14-mpich-ohpc-3.0.3-320.ohpc.2.1.x86_64.rpm 9.3 MB/s | 2.0 MB 00:00
(24/168): otf2-gnu14-mvapich2-ohpc-3.0.3-320.ohpc.2.1.x86_64.rpm 8.5 MB/s | 2.0 MB 00:00
(25/168): otf2-gnu14-openmpi5-ohpc-3.0.3-320.ohpc.1.1.x86_64.rpm 7.7 MB/s | 2.0 MB 00:00
(26/168): scalasca-gnu14-mpich-ohpc-2.6.1-320.ohpc.3.1.x86_64.rpm 11 MB/s | 2.6 MB 00:00
(27/168): scalasca-gnu14-mvapich2-ohpc-2.6.1-320.ohpc.3.1.x86_64.rpm 11 MB/s | 2.6 MB 00:00
(28/168): scalasca-gnu14-openmpi5-ohpc-2.6.1-320.ohpc.2.1.x86_64.rpm 12 MB/s | 2.6 MB 00:00
(29/168): scorep-gnu14-mpich-ohpc-8.4-320.ohpc.3.1.x86_64.rpm 7.9 MB/s | 3.2 MB 00:00
(30/168): scorep-gnu14-mvapich2-ohpc-8.4-320.ohpc.3.1.x86_64.rpm 11 MB/s | 3.2 MB 00:00
(31/168): sionlib-gnu14-mpich-ohpc-1.7.7-320.ohpc.3.1.x86_64.rpm 1.7 MB/s | 320 kB 00:00
(32/168): scorep-gnu14-openmpi5-ohpc-8.4-320.ohpc.2.1.x86_64.rpm 8.6 MB/s | 3.4 MB 00:00
(33/168): sionlib-gnu14-mvapich2-ohpc-1.7.7-320.ohpc.3.1.x86_64.rpm 1.7 MB/s | 320 kB 00:00
(34/168): sionlib-gnu14-openmpi5-ohpc-1.7.7-320.ohpc.2.1.x86_64.rpm 1.7 MB/s | 322 kB 00:00
(35/168): tau-gnu14-mpich-ohpc-2.31.1-320.ohpc.8.1.x86_64.rpm 14 MB/s | 27 MB 00:02
(36/168): tau-gnu14-mvapich2-ohpc-2.31.1-320.ohpc.8.1.x86_64.rpm 12 MB/s | 27 MB 00:02
(37/168): libunwind-devel-1.6.2-1.el9.x86_64.rpm 649 kB/s | 80 kB 00:00
(38/168): libibumad-51.0-1.el9.x86_64.rpm 570 kB/s | 26 kB 00:00
(39/168): fuse-2.9.9-16.el9.x86_64.rpm 2.3 MB/s | 78 kB 00:00
(40/168): bubblewrap-0.4.1-8.el9_5.x86_64.rpm 940 kB/s | 49 kB 00:00
(41/168): libpciaccess-0.16-7.el9.x86_64.rpm 685 kB/s | 26 kB 00:00
(42/168): ModemManager-glib-1.20.2-1.el9.x86_64.rpm 4.3 MB/s | 334 kB 00:00
(43/168): cups-libs-2.3.3op2-31.el9_5.x86_64.rpm 3.5 MB/s | 262 kB 00:00
(44/168): lksctp-tools-1.0.19-3.el9_4.x86_64.rpm 2.6 MB/s | 96 kB 00:00
(45/168): bluez-libs-5.72-2.el9.x86_64.rpm 1.3 MB/s | 81 kB 00:00
(46/168): fuse-common-3.10.2-9.el9.x86_64.rpm 514 kB/s | 7.3 kB 00:00
(47/168): adwaita-icon-theme-40.1.1-3.el9.noarch.rpm 27 MB/s | 11 MB 00:00
(48/168): adwaita-cursor-theme-40.1.1-3.el9.noarch.rpm 8.7 MB/s | 623 kB 00:00
(49/168): poppler-data-0.4.9-9.el9.0.1.noarch.rpm 13 MB/s | 1.8 MB 00:00
(50/168): javapackages-filesystem-6.0.0-7.el9_5.noarch.rpm 124 kB/s | 9.9 kB 00:00
(51/168): iso-codes-4.6.0-3.el9.noarch.rpm 19 MB/s | 3.3 MB 00:00
(52/168): osinfo-db-20240701-2.el9.noarch.rpm 3.3 MB/s | 289 kB 00:00
(53/168): tau-gnu14-openmpi5-ohpc-2.31.1-320.ohpc.7.1.x86_64.rpm 12 MB/s | 27 MB 00:02
(54/168): xorg-x11-fonts-Type1-7.5-33.el9.noarch.rpm 1.9 MB/s | 499 kB 00:00
(55/168): at-spi2-atk-2.38.0-4.el9.x86_64.rpm 3.6 MB/s | 86 kB 00:00
(56/168): hicolor-icon-theme-0.17-13.el9.noarch.rpm 1.3 MB/s | 66 kB 00:00
(57/168): giflib-5.2.1-9.el9.x86_64.rpm 791 kB/s | 48 kB 00:00
(58/168): copy-jdk-configs-4.0-3.el9.noarch.rpm 355 kB/s | 27 kB 00:00
(59/168): at-spi2-core-2.40.3-1.el9.x86_64.rpm 3.3 MB/s | 176 kB 00:00
(60/168): gstreamer1-1.22.1-2.el9.x86_64.rpm 13 MB/s | 1.4 MB 00:00
(61/168): flatpak-session-helper-1.12.9-3.el9_5.x86_64.rpm 965 kB/s | 72 kB 00:00
(62/168): flatpak-selinux-1.12.9-3.el9_5.noarch.rpm 774 kB/s | 21 kB 00:00
(63/168): geoclue2-2.6.0-7.el9.x86_64.rpm 3.0 MB/s | 122 kB 00:00
(64/168): flatpak-1.12.9-3.el9_5.x86_64.rpm 16 MB/s | 1.7 MB 00:00
(65/168): graphene-1.10.6-2.el9.x86_64.rpm 1.6 MB/s | 64 kB 00:00
(66/168): fdk-aac-free-2.0.0-8.el9.x86_64.rpm 4.0 MB/s | 324 kB 00:00
(67/168): avahi-glib-0.8-21.el9.x86_64.rpm 826 kB/s | 14 kB 00:00
(68/168): dconf-0.40.0-6.el9.x86_64.rpm 2.5 MB/s | 109 kB 00:00
(69/168): gstreamer1-plugins-base-1.22.1-3.el9_5.x86_64.rpm 20 MB/s | 2.2 MB 00:00
(70/168): atk-2.36.0-5.el9.x86_64.rpm 3.5 MB/s | 270 kB 00:00
(71/168): libldac-2.0.2.3-10.el9.x86_64.rpm 561 kB/s | 40 kB 00:00
(72/168): libasyncns-0.8-22.el9.x86_64.rpm 480 kB/s | 29 kB 00:00
(73/168): lcms2-2.12-3.el9.x86_64.rpm 1.9 MB/s | 166 kB 00:00
(74/168): libxkbcommon-1.0.3-4.el9.x86_64.rpm 2.1 MB/s | 132 kB 00:00
(75/168): libgexiv2-0.12.3-1.el9.x86_64.rpm 1.7 MB/s | 81 kB 00:00
(76/168): libxshmfence-1.3-10.el9.x86_64.rpm 247 kB/s | 12 kB 00:00
(77/168): libXcomposite-0.4.5-7.el9.x86_64.rpm 506 kB/s | 23 kB 00:00
(78/168): libXfixes-5.0.3-16.el9.x86_64.rpm 947 kB/s | 19 kB 00:00
(79/168): libepoxy-1.5.5-4.el9.x86_64.rpm 3.4 MB/s | 244 kB 00:00
(80/168): libvisual-0.4.0-34.el9.x86_64.rpm 3.0 MB/s | 143 kB 00:00
(81/168): libogg-1.3.4-6.el9.x86_64.rpm 825 kB/s | 32 kB 00:00
(82/168): libXcursor-1.2.0-7.el9.x86_64.rpm 868 kB/s | 30 kB 00:00
(83/168): libtool-ltdl-2.4.6-46.el9.x86_64.rpm 1.0 MB/s | 35 kB 00:00
(84/168): osinfo-db-tools-1.10.0-1.el9.x86_64.rpm 5.9 MB/s | 68 kB 00:00
(85/168): rtkit-0.11-29.el9.x86_64.rpm 920 kB/s | 55 kB 00:00
(86/168): infiniband-diags-51.0-1.el9.x86_64.rpm 4.5 MB/s | 316 kB 00:00
(87/168): poppler-glib-21.01.0-21.el9.x86_64.rpm 3.3 MB/s | 151 kB 00:00
(88/168): orc-0.4.31-8.el9.x86_64.rpm 2.5 MB/s | 182 kB 00:00
(89/168): xkeyboard-config-2.33-2.el9.noarch.rpm 8.9 MB/s | 779 kB 00:00
(90/168): poppler-21.01.0-21.el9.x86_64.rpm 9.3 MB/s | 1.1 MB 00:00
(91/168): totem-pl-parser-3.26.6-2.el9.x86_64.rpm 1.9 MB/s | 130 kB 00:00
(92/168): tzdata-java-2025a-1.el9.noarch.rpm 1.5 MB/s | 145 kB 00:00
(93/168): xdg-dbus-proxy-0.1.3-1.el9.x86_64.rpm 2.1 MB/s | 41 kB 00:00
(94/168): xdg-desktop-portal-gtk-1.12.0-3.el9.x86_64.rpm 1.8 MB/s | 130 kB 00:00
(95/168): xdg-desktop-portal-1.12.6-1.el9.x86_64.rpm 9.6 MB/s | 367 kB 00:00
(96/168): sound-theme-freedesktop-0.8-17.el9.noarch.rpm 2.8 MB/s | 377 kB 00:00
(97/168): ttmkfdir-3.0.9-65.el9.x86_64.rpm 1.7 MB/s | 52 kB 00:00
(98/168): gsm-1.0.19-6.el9.x86_64.rpm 546 kB/s | 33 kB 00:00
(99/168): libXtst-1.2.3-16.el9.x86_64.rpm 454 kB/s | 20 kB 00:00
(100/168): colord-libs-1.4.5-4.el9.x86_64.rpm 4.5 MB/s | 230 kB 00:00
(101/168): libnotify-0.7.9-8.el9.x86_64.rpm 863 kB/s | 43 kB 00:00
(102/168): mesa-libglapi-24.1.2-3.el9.x86_64.rpm 764 kB/s | 44 kB 00:00
(103/168): mesa-libgbm-24.1.2-3.el9.x86_64.rpm 614 kB/s | 35 kB 00:00
(104/168): mesa-libEGL-24.1.2-3.el9.x86_64.rpm 2.9 MB/s | 138 kB 00:00
(105/168): mesa-libGL-24.1.2-3.el9.x86_64.rpm 2.8 MB/s | 169 kB 00:00
(106/168): mesa-filesystem-24.1.2-3.el9.x86_64.rpm 883 kB/s | 10 kB 00:00
(107/168): exiv2-libs-0.27.5-2.el9.x86_64.rpm 8.7 MB/s | 779 kB 00:00
(108/168): mesa-dri-drivers-24.1.2-3.el9.x86_64.rpm 42 MB/s | 8.8 MB 00:00
(109/168): exiv2-0.27.5-2.el9.x86_64.rpm 7.0 MB/s | 975 kB 00:00
(110/168): flac-libs-1.3.3-10.el9_2.1.x86_64.rpm 4.3 MB/s | 217 kB 00:00
(111/168): libXrandr-1.5.2-8.el9.x86_64.rpm 559 kB/s | 27 kB 00:00
(112/168): libsndfile-1.0.31-8.el9_5.2.x86_64.rpm 4.0 MB/s | 206 kB 00:00
(113/168): libdrm-2.4.121-1.el9.x86_64.rpm 1.8 MB/s | 158 kB 00:00
(114/168): jbigkit-libs-2.1-23.el9.x86_64.rpm 1.8 MB/s | 52 kB 00:00
(115/168): libXdamage-1.1.5-7.el9.x86_64.rpm 1.3 MB/s | 22 kB 00:00
(116/168): libtiff-4.4.0-13.el9.x86_64.rpm 4.1 MB/s | 197 kB 00:00
(117/168): libexif-0.6.22-6.el9.x86_64.rpm 6.6 MB/s | 423 kB 00:00
(118/168): gtk-update-icon-cache-3.24.31-5.el9.x86_64.rpm 1.7 MB/s | 32 kB 00:00
(119/168): libxslt-1.1.34-9.el9.x86_64.rpm 9.0 MB/s | 240 kB 00:00
(120/168): gtk3-3.24.31-5.el9.x86_64.rpm 32 MB/s | 4.8 MB 00:00
(121/168): libgsf-1.14.47-5.el9.x86_64.rpm 2.6 MB/s | 245 kB 00:00
(122/168): libglvnd-glx-1.3.4-1.el9.x86_64.rpm 2.9 MB/s | 140 kB 00:00
(123/168): libvorbis-1.3.7-5.el9.x86_64.rpm 2.9 MB/s | 192 kB 00:00
(124/168): libglvnd-1.3.4-1.el9.x86_64.rpm 3.5 MB/s | 133 kB 00:00
(125/168): libtheora-1.1.1-31.el9.x86_64.rpm 2.8 MB/s | 163 kB 00:00
(126/168): libglvnd-egl-1.3.4-1.el9.x86_64.rpm 329 kB/s | 36 kB 00:00
(127/168): mkfontscale-1.2.1-3.el9.x86_64.rpm 659 kB/s | 31 kB 00:00
(128/168): libwebp-1.2.0-8.el9.x86_64.rpm 4.2 MB/s | 276 kB 00:00
(129/168): libcanberra-gtk3-0.30-27.el9.x86_64.rpm 1.1 MB/s | 31 kB 00:00
(130/168): libXv-1.0.11-16.el9.x86_64.rpm 1.7 MB/s | 18 kB 00:00
(131/168): libcanberra-0.30-27.el9.x86_64.rpm 3.8 MB/s | 85 kB 00:00
(132/168): libXi-1.7.10-8.el9.x86_64.rpm 2.6 MB/s | 39 kB 00:00
(133/168): libXxf86vm-1.1.4-18.el9.x86_64.rpm 1.1 MB/s | 18 kB 00:00
(134/168): libtracker-sparql-3.1.2-3.el9_1.x86_64.rpm 3.2 MB/s | 316 kB 00:00
(135/168): tracker-3.1.2-3.el9_1.x86_64.rpm 4.0 MB/s | 538 kB 00:00
(136/168): opus-1.3.1-10.el9.x86_64.rpm 4.9 MB/s | 199 kB 00:00
(137/168): openjpeg2-2.4.0-7.el9.x86_64.rpm 3.9 MB/s | 162 kB 00:00
(138/168): wireplumber-0.4.14-1.el9.0.1.x86_64.rpm 1.5 MB/s | 83 kB 00:00
(139/168): wireplumber-libs-0.4.14-1.el9.0.1.x86_64.rpm 3.4 MB/s | 338 kB 00:00
(140/168): pdtoolkit-gnu14-ohpc-3.25.1-320.ohpc.1.1.x86_64.rpm 11 MB/s | 91 MB 00:08
(141/168): libwayland-server-1.21.0-1.el9.x86_64.rpm 72 kB/s | 41 kB 00:00
(142/168): tracker-miners-3.1.2-4.el9_3.x86_64.rpm 1.5 MB/s | 888 kB 00:00
(143/168): libwayland-egl-1.21.0-1.el9.x86_64.rpm 421 kB/s | 12 kB 00:00
(144/168): libwayland-cursor-1.21.0-1.el9.x86_64.rpm 585 kB/s | 18 kB 00:00
(145/168): libwayland-client-1.21.0-1.el9.x86_64.rpm 993 kB/s | 33 kB 00:00
(146/168): exempi-2.6.0-0.2.20211007gite23c213.el9.x86_64.rpm 7.4 MB/s | 523 kB 00:00
(147/168): ostree-libs-2024.9-1.el9_5.x86_64.rpm 8.7 MB/s | 467 kB 00:00
(148/168): libosinfo-1.10.0-1.el9.x86_64.rpm 2.8 MB/s | 312 kB 00:00
(149/168): pipewire-pulseaudio-1.0.1-1.el9.x86_64.rpm 2.8 MB/s | 185 kB 00:00
(150/168): pipewire-jack-audio-connection-kit-1.0.1-1.el9.x86_64.rpm 344 kB/s | 8.1 kB 00:00
(151/168): pulseaudio-libs-15.0-2.el9.x86_64.rpm 5.7 MB/s | 666 kB 00:00
(152/168): pipewire-alsa-1.0.1-1.el9.x86_64.rpm 2.7 MB/s | 56 kB 00:00
(153/168): libgxps-0.3.2-3.el9.x86_64.rpm 1.9 MB/s | 78 kB 00:00
(154/168): libXinerama-1.1.4-10.el9.x86_64.rpm 618 kB/s | 14 kB 00:00
(155/168): pipewire-libs-1.0.1-1.el9.x86_64.rpm 11 MB/s | 1.9 MB 00:00
(156/168): libsbc-1.4-9.el9.x86_64.rpm 984 kB/s | 44 kB 00:00
(157/168): pipewire-1.0.1-1.el9.x86_64.rpm 823 kB/s | 101 kB 00:00
(158/168): webrtc-audio-processing-0.3.1-8.el9.0.1.x86_64.rpm 8.6 MB/s | 303 kB 00:00
(159/168): low-memory-monitor-2.1-4.el9.x86_64.rpm 646 kB/s | 35 kB 00:00
(160/168): libfontenc-1.1.3-17.el9.x86_64.rpm 1.6 MB/s | 30 kB 00:00
(161/168): libiptcdata-1.0.5-10.el9.x86_64.rpm 5.2 MB/s | 60 kB 00:00
(162/168): gdk-pixbuf2-modules-2.42.6-4.el9_4.x86_64.rpm 2.1 MB/s | 85 kB 00:00
(163/168): upower-0.99.13-2.el9.x86_64.rpm 1.5 MB/s | 165 kB 00:00
(164/168): libX11-xcb-1.7.0-9.el9.x86_64.rpm 135 kB/s | 10 kB 00:00
(165/168): pipewire-jack-audio-connection-kit-libs-1.0.1-1.el9.x86_64.rpm 3.2 MB/s | 134 kB 00:00
(166/168): composefs-libs-1.0.5-1.el9.x86_64.rpm 874 kB/s | 60 kB 00:00
(167/168): java-17-openjdk-17.0.14.0.7-2.el9.x86_64.rpm 2.3 MB/s | 430 kB 00:00
(168/168): java-17-openjdk-headless-17.0.14.0.7-2.el9.x86_64.rpm 46 MB/s | 44 MB 00:00
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 23 MB/s | 380 MB 00:16
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Running scriptlet: copy-jdk-configs-4.0-3.el9.noarch 1/1
Running scriptlet: java-17-openjdk-headless-1:17.0.14.0.7-2.el9.x86_64 1/1
Preparing : 1/1
Installing : papi-ohpc-6.0.0-300.ohpc.1.6.x86_64 1/168
Installing : cubew-gnu14-ohpc-4.8.2-320.ohpc.1.1.x86_64 2/168
Installing : cubelib-gnu14-ohpc-4.8.2-320.ohpc.1.1.x86_64 3/168
Installing : libXi-1.7.10-8.el9.x86_64 4/168
Installing : libogg-2:1.3.4-6.el9.x86_64 5/168
Installing : libvorbis-1:1.3.7-5.el9.x86_64 6/168
Installing : libwayland-client-1.21.0-1.el9.x86_64 7/168
Installing : libXfixes-5.0.3-16.el9.x86_64 8/168
Installing : libX11-xcb-1.7.0-9.el9.x86_64 9/168
Installing : opus-1.3.1-10.el9.x86_64 10/168
Installing : lcms2-2.12-3.el9.x86_64 11/168
Installing : atk-2.36.0-5.el9.x86_64 12/168
Installing : gstreamer1-1.22.1-2.el9.x86_64 13/168
Installing : libunwind-devel-1.6.2-1.el9.x86_64 14/168
Installing : pdtoolkit-gnu14-ohpc-3.25.1-320.ohpc.1.1.x86_64 15/168
Installing : opari2-gnu14-ohpc-2.0.8-320.ohpc.1.1.x86_64 16/168
Installing : libwayland-cursor-1.21.0-1.el9.x86_64 17/168
Installing : libXtst-1.2.3-16.el9.x86_64 18/168
Installing : exiv2-0.27.5-2.el9.x86_64 19/168
Installing : exiv2-libs-0.27.5-2.el9.x86_64 20/168
Installing : libwayland-egl-1.21.0-1.el9.x86_64 21/168
Installing : libwayland-server-1.21.0-1.el9.x86_64 22/168
Installing : libglvnd-1:1.3.4-1.el9.x86_64 23/168
Installing : libtool-ltdl-2.4.6-46.el9.x86_64 24/168
Installing : libXcomposite-0.4.5-7.el9.x86_64 25/168
Installing : libxshmfence-1.3-10.el9.x86_64 26/168
Installing : dconf-0.40.0-6.el9.x86_64 27/168
Running scriptlet: dconf-0.40.0-6.el9.x86_64 27/168
Installing : cups-libs-1:2.3.3op2-31.el9_5.x86_64 28/168
Installing : libibumad-51.0-1.el9.x86_64 29/168
Installing : infiniband-diags-51.0-1.el9.x86_64 30/168
Installing : mvapich2-gnu14-ohpc-2.3.7-320.ohpc.3.1.x86_64 31/168
Installing : boost-gnu14-mpich-ohpc-1.81.0-320.ohpc.2.1.x86_64 32/168
Installing : dimemas-gnu14-mpich-ohpc-5.4.2-320.ohpc.8.1.x86_64 33/168
Installing : boost-gnu14-mvapich2-ohpc-1.81.0-320.ohpc.2.1.x86_64 34/168
Installing : dimemas-gnu14-mvapich2-ohpc-5.4.2-320.ohpc.8.1.x86_64 35/168
Installing : extrae-gnu14-mpich-ohpc-3.8.3-320.ohpc.8.1.x86_64 36/168
Installing : extrae-gnu14-mvapich2-ohpc-3.8.3-320.ohpc.8.1.x86_64 37/168
Installing : imb-gnu14-mpich-ohpc-2021.3-320.ohpc.2.1.x86_64 38/168
Installing : imb-gnu14-mvapich2-ohpc-2021.3-320.ohpc.2.1.x86_64 39/168
Installing : omb-gnu14-mpich-ohpc-7.3-320.ohpc.2.1.x86_64 40/168
Installing : omb-gnu14-mvapich2-ohpc-7.3-320.ohpc.2.1.x86_64 41/168
Installing : sionlib-gnu14-mpich-ohpc-1.7.7-320.ohpc.3.1.x86_64 42/168
Installing : otf2-gnu14-mpich-ohpc-3.0.3-320.ohpc.2.1.x86_64 43/168
Installing : scorep-gnu14-mpich-ohpc-8.4-320.ohpc.3.1.x86_64 44/168
Installing : scalasca-gnu14-mpich-ohpc-2.6.1-320.ohpc.3.1.x86_64 45/168
Installing : sionlib-gnu14-mvapich2-ohpc-1.7.7-320.ohpc.3.1.x86_64 46/168
Installing : otf2-gnu14-mvapich2-ohpc-3.0.3-320.ohpc.2.1.x86_64 47/168
Installing : scorep-gnu14-mvapich2-ohpc-8.4-320.ohpc.3.1.x86_64 48/168
Installing : scalasca-gnu14-mvapich2-ohpc-2.6.1-320.ohpc.3.1.x86_64 49/168
Installing : libgexiv2-0.12.3-1.el9.x86_64 50/168
Installing : at-spi2-core-2.40.3-1.el9.x86_64 51/168
Installing : at-spi2-atk-2.38.0-4.el9.x86_64 52/168
Installing : colord-libs-1.4.5-4.el9.x86_64 53/168
Installing : libXcursor-1.2.0-7.el9.x86_64 54/168
Installing : libXdamage-1.1.5-7.el9.x86_64 55/168
Installing : flac-libs-1.3.3-10.el9_2.1.x86_64 56/168
Installing : libtheora-1:1.1.1-31.el9.x86_64 57/168
Installing : extrae-gnu14-openmpi5-ohpc-3.8.3-320.ohpc.7.1.x86_64 58/168
Installing : composefs-libs-1.0.5-1.el9.x86_64 59/168
Installing : ostree-libs-2024.9-1.el9_5.x86_64 60/168
Installing : libiptcdata-1.0.5-10.el9.x86_64 61/168
Installing : libfontenc-1.1.3-17.el9.x86_64 62/168
Installing : mkfontscale-1.2.1-3.el9.x86_64 63/168
Installing : upower-0.99.13-2.el9.x86_64 64/168
Running scriptlet: upower-0.99.13-2.el9.x86_64 64/168
Created symlink /etc/systemd/system/graphical.target.wants/upower.service → /usr/lib/systemd/system/upower.service.
Installing : webrtc-audio-processing-0.3.1-8.el9.0.1.x86_64 65/168
Installing : low-memory-monitor-2.1-4.el9.x86_64 66/168
Running scriptlet: low-memory-monitor-2.1-4.el9.x86_64 66/168
Created symlink /etc/systemd/system/basic.target.wants/low-memory-monitor.service → /usr/lib/systemd/system/low-memory-monitor.service.
Installing : libsbc-1.4-9.el9.x86_64 67/168
Installing : libXinerama-1.1.4-10.el9.x86_64 68/168
Installing : exempi-2.6.0-0.2.20211007gite23c213.el9.x86_64 69/168
Installing : openjpeg2-2.4.0-7.el9.x86_64 70/168
Installing : libXxf86vm-1.1.4-18.el9.x86_64 71/168
Installing : libXv-1.0.11-16.el9.x86_64 72/168
Installing : libwebp-1.2.0-8.el9.x86_64 73/168
Installing : libgsf-1.14.47-5.el9.x86_64 74/168
Installing : libxslt-1.1.34-9.el9.x86_64 75/168
Installing : gtk-update-icon-cache-3.24.31-5.el9.x86_64 76/168
Installing : libexif-0.6.22-6.el9.x86_64 77/168
Installing : jbigkit-libs-2.1-23.el9.x86_64 78/168
Installing : libtiff-4.4.0-13.el9.x86_64 79/168
Installing : libgxps-0.3.2-3.el9.x86_64 80/168
Installing : gdk-pixbuf2-modules-2.42.6-4.el9_4.x86_64 81/168
Installing : libXrandr-1.5.2-8.el9.x86_64 82/168
Installing : mesa-filesystem-24.1.2-3.el9.x86_64 83/168
Installing : libnotify-0.7.9-8.el9.x86_64 84/168
Installing : gsm-1.0.19-6.el9.x86_64 85/168
Installing : libsndfile-1.0.31-8.el9_5.2.x86_64 86/168
Installing : ttmkfdir-3.0.9-65.el9.x86_64 87/168
Installing : xorg-x11-fonts-Type1-7.5-33.el9.noarch 88/168
Running scriptlet: xorg-x11-fonts-Type1-7.5-33.el9.noarch 88/168
Installing : sound-theme-freedesktop-0.8-17.el9.noarch 89/168
Running scriptlet: sound-theme-freedesktop-0.8-17.el9.noarch 89/168
Installing : xdg-dbus-proxy-0.1.3-1.el9.x86_64 90/168
Installing : totem-pl-parser-3.26.6-2.el9.x86_64 91/168
Installing : tzdata-java-2025a-1.el9.noarch 92/168
Installing : xkeyboard-config-2.33-2.el9.noarch 93/168
Installing : libxkbcommon-1.0.3-4.el9.x86_64 94/168
Installing : orc-0.4.31-8.el9.x86_64 95/168
Running scriptlet: rtkit-0.11-29.el9.x86_64 96/168
Installing : rtkit-0.11-29.el9.x86_64 96/168
Running scriptlet: rtkit-0.11-29.el9.x86_64 96/168
Created symlink /etc/systemd/system/graphical.target.wants/rtkit-daemon.service → /usr/lib/systemd/system/rtkit-daemon.service.
Installing : osinfo-db-tools-1.10.0-1.el9.x86_64 97/168
Installing : libvisual-1:0.4.0-34.el9.x86_64 98/168
Installing : libepoxy-1.5.5-4.el9.x86_64 99/168
Installing : libasyncns-0.8-22.el9.x86_64 100/168
Installing : pulseaudio-libs-15.0-2.el9.x86_64 101/168
Installing : libcanberra-0.30-27.el9.x86_64 102/168
Running scriptlet: libcanberra-0.30-27.el9.x86_64 102/168
Installing : libldac-2.0.2.3-10.el9.x86_64 103/168
Installing : avahi-glib-0.8-21.el9.x86_64 104/168
Installing : graphene-1.10.6-2.el9.x86_64 105/168
Installing : fdk-aac-free-2.0.0-8.el9.x86_64 106/168
Installing : flatpak-selinux-1.12.9-3.el9_5.noarch 107/168
Running scriptlet: flatpak-selinux-1.12.9-3.el9_5.noarch 107/168
Installing : flatpak-session-helper-1.12.9-3.el9_5.x86_64 108/168
Installing : giflib-5.2.1-9.el9.x86_64 109/168
Installing : copy-jdk-configs-4.0-3.el9.noarch 110/168
Installing : hicolor-icon-theme-0.17-13.el9.noarch 111/168
Installing : osinfo-db-20240701-2.el9.noarch 112/168
Installing : libosinfo-1.10.0-1.el9.x86_64 113/168
Installing : iso-codes-4.6.0-3.el9.noarch 114/168
Installing : javapackages-filesystem-6.0.0-7.el9_5.noarch 115/168
Installing : poppler-data-0.4.9-9.el9.0.1.noarch 116/168
Installing : poppler-21.01.0-21.el9.x86_64 117/168
Installing : poppler-glib-21.01.0-21.el9.x86_64 118/168
Installing : adwaita-cursor-theme-40.1.1-3.el9.noarch 119/168
Installing : adwaita-icon-theme-40.1.1-3.el9.noarch 120/168
Installing : fuse-common-3.10.2-9.el9.x86_64 121/168
Installing : fuse-2.9.9-16.el9.x86_64 122/168
Installing : bluez-libs-5.72-2.el9.x86_64 123/168
Installing : wireplumber-libs-0.4.14-1.el9.0.1.x86_64 124/168
Installing : wireplumber-0.4.14-1.el9.0.1.x86_64 125/168
Running scriptlet: pipewire-1.0.1-1.el9.x86_64 126/168
Installing : pipewire-1.0.1-1.el9.x86_64 126/168
Running scriptlet: pipewire-1.0.1-1.el9.x86_64 126/168
Created symlink /etc/systemd/user/sockets.target.wants/pipewire.socket → /usr/lib/systemd/user/pipewire.socket.
Installing : pipewire-libs-1.0.1-1.el9.x86_64 127/168
Installing : pipewire-jack-audio-connection-kit-libs-1.0.1-1.el9.x86_64 128/168
Installing : lksctp-tools-1.0.19-3.el9_4.x86_64 129/168
Installing : java-17-openjdk-headless-1:17.0.14.0.7-2.el9.x86_64 130/168
Running scriptlet: java-17-openjdk-headless-1:17.0.14.0.7-2.el9.x86_64 130/168
Installing : ModemManager-glib-1.20.2-1.el9.x86_64 131/168
Running scriptlet: geoclue2-2.6.0-7.el9.x86_64 132/168
Installing : geoclue2-2.6.0-7.el9.x86_64 132/168
Running scriptlet: geoclue2-2.6.0-7.el9.x86_64 132/168
Installing : libpciaccess-0.16-7.el9.x86_64 133/168
Installing : libdrm-2.4.121-1.el9.x86_64 134/168
Installing : mesa-libglapi-24.1.2-3.el9.x86_64 135/168
Installing : mesa-libgbm-24.1.2-3.el9.x86_64 136/168
Installing : libglvnd-egl-1:1.3.4-1.el9.x86_64 137/168
Installing : mesa-libEGL-24.1.2-3.el9.x86_64 138/168
Installing : mesa-dri-drivers-24.1.2-3.el9.x86_64 139/168
Installing : libglvnd-glx-1:1.3.4-1.el9.x86_64 140/168
Installing : mesa-libGL-24.1.2-3.el9.x86_64 141/168
Installing : gstreamer1-plugins-base-1.22.1-3.el9_5.x86_64 142/168
Installing : libtracker-sparql-3.1.2-3.el9_1.x86_64 143/168
Installing : tracker-3.1.2-3.el9_1.x86_64 144/168
Running scriptlet: tracker-3.1.2-3.el9_1.x86_64 144/168
Installing : tracker-miners-3.1.2-4.el9_3.x86_64 145/168
Running scriptlet: tracker-miners-3.1.2-4.el9_3.x86_64 145/168
Installing : bubblewrap-0.4.1-8.el9_5.x86_64 146/168
Running scriptlet: flatpak-1.12.9-3.el9_5.x86_64 147/168
Installing : flatpak-1.12.9-3.el9_5.x86_64 147/168
Installing : xdg-desktop-portal-1.12.6-1.el9.x86_64 148/168
Running scriptlet: xdg-desktop-portal-1.12.6-1.el9.x86_64 148/168
Installing : libcanberra-gtk3-0.30-27.el9.x86_64 149/168
Installing : gtk3-3.24.31-5.el9.x86_64 150/168
Installing : xdg-desktop-portal-gtk-1.12.0-3.el9.x86_64 151/168
Running scriptlet: xdg-desktop-portal-gtk-1.12.0-3.el9.x86_64 151/168
Installing : java-17-openjdk-1:17.0.14.0.7-2.el9.x86_64 152/168
Running scriptlet: java-17-openjdk-1:17.0.14.0.7-2.el9.x86_64 152/168
Installing : tau-gnu14-mpich-ohpc-2.31.1-320.ohpc.8.1.x86_64 153/168
Installing : tau-gnu14-mvapich2-ohpc-2.31.1-320.ohpc.8.1.x86_64 154/168
Installing : tau-gnu14-openmpi5-ohpc-2.31.1-320.ohpc.7.1.x86_64 155/168
Installing : sionlib-gnu14-openmpi5-ohpc-1.7.7-320.ohpc.2.1.x86_64 156/168
Installing : otf2-gnu14-openmpi5-ohpc-3.0.3-320.ohpc.1.1.x86_64 157/168
Installing : scorep-gnu14-openmpi5-ohpc-8.4-320.ohpc.2.1.x86_64 158/168
Installing : scalasca-gnu14-openmpi5-ohpc-2.6.1-320.ohpc.2.1.x86_64 159/168
Installing : omb-gnu14-openmpi5-ohpc-7.3-320.ohpc.1.1.x86_64 160/168
Installing : likwid-gnu14-ohpc-5.3.0-320.ohpc.1.1.x86_64 161/168
Running scriptlet: likwid-gnu14-ohpc-5.3.0-320.ohpc.1.1.x86_64 161/168
Installing : imb-gnu14-openmpi5-ohpc-2021.3-320.ohpc.1.1.x86_64 162/168
Installing : boost-gnu14-openmpi5-ohpc-1.81.0-320.ohpc.1.1.x86_64 163/168
Installing : dimemas-gnu14-openmpi5-ohpc-5.4.2-320.ohpc.7.1.x86_64 164/168
Installing : ohpc-gnu14-perf-tools-3.2-320.ohpc.1.1.x86_64 165/168
Installing : pipewire-jack-audio-connection-kit-1.0.1-1.el9.x86_64 166/168
Installing : pipewire-pulseaudio-1.0.1-1.el9.x86_64 167/168
Running scriptlet: pipewire-pulseaudio-1.0.1-1.el9.x86_64 167/168
Created symlink /etc/systemd/user/sockets.target.wants/pipewire-pulse.socket → /usr/lib/systemd/user/pipewire-pulse.socket.
Installing : pipewire-alsa-1.0.1-1.el9.x86_64 168/168
Running scriptlet: dconf-0.40.0-6.el9.x86_64 168/168
Running scriptlet: copy-jdk-configs-4.0-3.el9.noarch 168/168
Running scriptlet: wireplumber-0.4.14-1.el9.0.1.x86_64 168/168
Created symlink /etc/systemd/user/pipewire-session-manager.service → /usr/lib/systemd/user/wireplumber.service.
Created symlink /etc/systemd/user/pipewire.service.wants/wireplumber.service → /usr/lib/systemd/user/wireplumber.service.
Running scriptlet: java-17-openjdk-headless-1:17.0.14.0.7-2.el9.x86_64 168/168
Running scriptlet: java-17-openjdk-1:17.0.14.0.7-2.el9.x86_64 168/168
Running scriptlet: pipewire-alsa-1.0.1-1.el9.x86_64 168/168
Verifying : papi-ohpc-6.0.0-300.ohpc.1.6.x86_64 1/168
Verifying : boost-gnu14-mpich-ohpc-1.81.0-320.ohpc.2.1.x86_64 2/168
Verifying : boost-gnu14-mvapich2-ohpc-1.81.0-320.ohpc.2.1.x86_64 3/168
Verifying : boost-gnu14-openmpi5-ohpc-1.81.0-320.ohpc.1.1.x86_64 4/168
Verifying : cubelib-gnu14-ohpc-4.8.2-320.ohpc.1.1.x86_64 5/168
Verifying : cubew-gnu14-ohpc-4.8.2-320.ohpc.1.1.x86_64 6/168
Verifying : dimemas-gnu14-mpich-ohpc-5.4.2-320.ohpc.8.1.x86_64 7/168
Verifying : dimemas-gnu14-mvapich2-ohpc-5.4.2-320.ohpc.8.1.x86_64 8/168
Verifying : dimemas-gnu14-openmpi5-ohpc-5.4.2-320.ohpc.7.1.x86_64 9/168
Verifying : extrae-gnu14-mpich-ohpc-3.8.3-320.ohpc.8.1.x86_64 10/168
Verifying : extrae-gnu14-mvapich2-ohpc-3.8.3-320.ohpc.8.1.x86_64 11/168
Verifying : extrae-gnu14-openmpi5-ohpc-3.8.3-320.ohpc.7.1.x86_64 12/168
Verifying : imb-gnu14-mpich-ohpc-2021.3-320.ohpc.2.1.x86_64 13/168
Verifying : imb-gnu14-mvapich2-ohpc-2021.3-320.ohpc.2.1.x86_64 14/168
Verifying : imb-gnu14-openmpi5-ohpc-2021.3-320.ohpc.1.1.x86_64 15/168
Verifying : likwid-gnu14-ohpc-5.3.0-320.ohpc.1.1.x86_64 16/168
Verifying : mvapich2-gnu14-ohpc-2.3.7-320.ohpc.3.1.x86_64 17/168
Verifying : ohpc-gnu14-perf-tools-3.2-320.ohpc.1.1.x86_64 18/168
Verifying : omb-gnu14-mpich-ohpc-7.3-320.ohpc.2.1.x86_64 19/168
Verifying : omb-gnu14-mvapich2-ohpc-7.3-320.ohpc.2.1.x86_64 20/168
Verifying : omb-gnu14-openmpi5-ohpc-7.3-320.ohpc.1.1.x86_64 21/168
Verifying : opari2-gnu14-ohpc-2.0.8-320.ohpc.1.1.x86_64 22/168
Verifying : otf2-gnu14-mpich-ohpc-3.0.3-320.ohpc.2.1.x86_64 23/168
Verifying : otf2-gnu14-mvapich2-ohpc-3.0.3-320.ohpc.2.1.x86_64 24/168
Verifying : otf2-gnu14-openmpi5-ohpc-3.0.3-320.ohpc.1.1.x86_64 25/168
Verifying : pdtoolkit-gnu14-ohpc-3.25.1-320.ohpc.1.1.x86_64 26/168
Verifying : scalasca-gnu14-mpich-ohpc-2.6.1-320.ohpc.3.1.x86_64 27/168
Verifying : scalasca-gnu14-mvapich2-ohpc-2.6.1-320.ohpc.3.1.x86_64 28/168
Verifying : scalasca-gnu14-openmpi5-ohpc-2.6.1-320.ohpc.2.1.x86_64 29/168
Verifying : scorep-gnu14-mpich-ohpc-8.4-320.ohpc.3.1.x86_64 30/168
Verifying : scorep-gnu14-mvapich2-ohpc-8.4-320.ohpc.3.1.x86_64 31/168
Verifying : scorep-gnu14-openmpi5-ohpc-8.4-320.ohpc.2.1.x86_64 32/168
Verifying : sionlib-gnu14-mpich-ohpc-1.7.7-320.ohpc.3.1.x86_64 33/168
Verifying : sionlib-gnu14-mvapich2-ohpc-1.7.7-320.ohpc.3.1.x86_64 34/168
Verifying : sionlib-gnu14-openmpi5-ohpc-1.7.7-320.ohpc.2.1.x86_64 35/168
Verifying : tau-gnu14-mpich-ohpc-2.31.1-320.ohpc.8.1.x86_64 36/168
Verifying : tau-gnu14-mvapich2-ohpc-2.31.1-320.ohpc.8.1.x86_64 37/168
Verifying : tau-gnu14-openmpi5-ohpc-2.31.1-320.ohpc.7.1.x86_64 38/168
Verifying : libunwind-devel-1.6.2-1.el9.x86_64 39/168
Verifying : libibumad-51.0-1.el9.x86_64 40/168
Verifying : fuse-2.9.9-16.el9.x86_64 41/168
Verifying : bubblewrap-0.4.1-8.el9_5.x86_64 42/168
Verifying : libpciaccess-0.16-7.el9.x86_64 43/168
Verifying : ModemManager-glib-1.20.2-1.el9.x86_64 44/168
Verifying : cups-libs-1:2.3.3op2-31.el9_5.x86_64 45/168
Verifying : lksctp-tools-1.0.19-3.el9_4.x86_64 46/168
Verifying : bluez-libs-5.72-2.el9.x86_64 47/168
Verifying : fuse-common-3.10.2-9.el9.x86_64 48/168
Verifying : adwaita-icon-theme-40.1.1-3.el9.noarch 49/168
Verifying : adwaita-cursor-theme-40.1.1-3.el9.noarch 50/168
Verifying : poppler-data-0.4.9-9.el9.0.1.noarch 51/168
Verifying : javapackages-filesystem-6.0.0-7.el9_5.noarch 52/168
Verifying : iso-codes-4.6.0-3.el9.noarch 53/168
Verifying : osinfo-db-20240701-2.el9.noarch 54/168
Verifying : xorg-x11-fonts-Type1-7.5-33.el9.noarch 55/168
Verifying : hicolor-icon-theme-0.17-13.el9.noarch 56/168
Verifying : at-spi2-atk-2.38.0-4.el9.x86_64 57/168
Verifying : copy-jdk-configs-4.0-3.el9.noarch 58/168
Verifying : giflib-5.2.1-9.el9.x86_64 59/168
Verifying : at-spi2-core-2.40.3-1.el9.x86_64 60/168
Verifying : gstreamer1-1.22.1-2.el9.x86_64 61/168
Verifying : flatpak-session-helper-1.12.9-3.el9_5.x86_64 62/168
Verifying : flatpak-1.12.9-3.el9_5.x86_64 63/168
Verifying : flatpak-selinux-1.12.9-3.el9_5.noarch 64/168
Verifying : geoclue2-2.6.0-7.el9.x86_64 65/168
Verifying : fdk-aac-free-2.0.0-8.el9.x86_64 66/168
Verifying : graphene-1.10.6-2.el9.x86_64 67/168
Verifying : gstreamer1-plugins-base-1.22.1-3.el9_5.x86_64 68/168
Verifying : avahi-glib-0.8-21.el9.x86_64 69/168
Verifying : dconf-0.40.0-6.el9.x86_64 70/168
Verifying : atk-2.36.0-5.el9.x86_64 71/168
Verifying : libldac-2.0.2.3-10.el9.x86_64 72/168
Verifying : libasyncns-0.8-22.el9.x86_64 73/168
Verifying : lcms2-2.12-3.el9.x86_64 74/168
Verifying : libxkbcommon-1.0.3-4.el9.x86_64 75/168
Verifying : libgexiv2-0.12.3-1.el9.x86_64 76/168
Verifying : libxshmfence-1.3-10.el9.x86_64 77/168
Verifying : libXcomposite-0.4.5-7.el9.x86_64 78/168
Verifying : libepoxy-1.5.5-4.el9.x86_64 79/168
Verifying : libXfixes-5.0.3-16.el9.x86_64 80/168
Verifying : libvisual-1:0.4.0-34.el9.x86_64 81/168
Verifying : libogg-2:1.3.4-6.el9.x86_64 82/168
Verifying : libXcursor-1.2.0-7.el9.x86_64 83/168
Verifying : libtool-ltdl-2.4.6-46.el9.x86_64 84/168
Verifying : osinfo-db-tools-1.10.0-1.el9.x86_64 85/168
Verifying : rtkit-0.11-29.el9.x86_64 86/168
Verifying : infiniband-diags-51.0-1.el9.x86_64 87/168
Verifying : orc-0.4.31-8.el9.x86_64 88/168
Verifying : poppler-glib-21.01.0-21.el9.x86_64 89/168
Verifying : poppler-21.01.0-21.el9.x86_64 90/168
Verifying : xkeyboard-config-2.33-2.el9.noarch 91/168
Verifying : tzdata-java-2025a-1.el9.noarch 92/168
Verifying : totem-pl-parser-3.26.6-2.el9.x86_64 93/168
Verifying : xdg-dbus-proxy-0.1.3-1.el9.x86_64 94/168
Verifying : sound-theme-freedesktop-0.8-17.el9.noarch 95/168
Verifying : xdg-desktop-portal-gtk-1.12.0-3.el9.x86_64 96/168
Verifying : xdg-desktop-portal-1.12.6-1.el9.x86_64 97/168
Verifying : ttmkfdir-3.0.9-65.el9.x86_64 98/168
Verifying : gsm-1.0.19-6.el9.x86_64 99/168
Verifying : libXtst-1.2.3-16.el9.x86_64 100/168
Verifying : colord-libs-1.4.5-4.el9.x86_64 101/168
Verifying : libnotify-0.7.9-8.el9.x86_64 102/168
Verifying : mesa-libglapi-24.1.2-3.el9.x86_64 103/168
Verifying : mesa-libgbm-24.1.2-3.el9.x86_64 104/168
Verifying : mesa-libGL-24.1.2-3.el9.x86_64 105/168
Verifying : mesa-libEGL-24.1.2-3.el9.x86_64 106/168
Verifying : mesa-filesystem-24.1.2-3.el9.x86_64 107/168
Verifying : mesa-dri-drivers-24.1.2-3.el9.x86_64 108/168
Verifying : exiv2-libs-0.27.5-2.el9.x86_64 109/168
Verifying : exiv2-0.27.5-2.el9.x86_64 110/168
Verifying : flac-libs-1.3.3-10.el9_2.1.x86_64 111/168
Verifying : libXrandr-1.5.2-8.el9.x86_64 112/168
Verifying : libdrm-2.4.121-1.el9.x86_64 113/168
Verifying : libsndfile-1.0.31-8.el9_5.2.x86_64 114/168
Verifying : jbigkit-libs-2.1-23.el9.x86_64 115/168
Verifying : libXdamage-1.1.5-7.el9.x86_64 116/168
Verifying : libtiff-4.4.0-13.el9.x86_64 117/168
Verifying : libexif-0.6.22-6.el9.x86_64 118/168
Verifying : gtk3-3.24.31-5.el9.x86_64 119/168
Verifying : gtk-update-icon-cache-3.24.31-5.el9.x86_64 120/168
Verifying : libxslt-1.1.34-9.el9.x86_64 121/168
Verifying : libgsf-1.14.47-5.el9.x86_64 122/168
Verifying : libvorbis-1:1.3.7-5.el9.x86_64 123/168
Verifying : libglvnd-glx-1:1.3.4-1.el9.x86_64 124/168
Verifying : libglvnd-egl-1:1.3.4-1.el9.x86_64 125/168
Verifying : libglvnd-1:1.3.4-1.el9.x86_64 126/168
Verifying : libtheora-1:1.1.1-31.el9.x86_64 127/168
Verifying : mkfontscale-1.2.1-3.el9.x86_64 128/168
Verifying : libwebp-1.2.0-8.el9.x86_64 129/168
Verifying : libcanberra-gtk3-0.30-27.el9.x86_64 130/168
Verifying : libcanberra-0.30-27.el9.x86_64 131/168
Verifying : libXv-1.0.11-16.el9.x86_64 132/168
Verifying : libXi-1.7.10-8.el9.x86_64 133/168
Verifying : libXxf86vm-1.1.4-18.el9.x86_64 134/168
Verifying : tracker-3.1.2-3.el9_1.x86_64 135/168
Verifying : libtracker-sparql-3.1.2-3.el9_1.x86_64 136/168
Verifying : opus-1.3.1-10.el9.x86_64 137/168
Verifying : openjpeg2-2.4.0-7.el9.x86_64 138/168
Verifying : wireplumber-libs-0.4.14-1.el9.0.1.x86_64 139/168
Verifying : wireplumber-0.4.14-1.el9.0.1.x86_64 140/168
Verifying : tracker-miners-3.1.2-4.el9_3.x86_64 141/168
Verifying : libwayland-server-1.21.0-1.el9.x86_64 142/168
Verifying : libwayland-egl-1.21.0-1.el9.x86_64 143/168
Verifying : libwayland-cursor-1.21.0-1.el9.x86_64 144/168
Verifying : libwayland-client-1.21.0-1.el9.x86_64 145/168
Verifying : exempi-2.6.0-0.2.20211007gite23c213.el9.x86_64 146/168
Verifying : libosinfo-1.10.0-1.el9.x86_64 147/168
Verifying : ostree-libs-2024.9-1.el9_5.x86_64 148/168
Verifying : pulseaudio-libs-15.0-2.el9.x86_64 149/168
Verifying : pipewire-pulseaudio-1.0.1-1.el9.x86_64 150/168
Verifying : pipewire-libs-1.0.1-1.el9.x86_64 151/168
Verifying : pipewire-jack-audio-connection-kit-1.0.1-1.el9.x86_64 152/168
Verifying : pipewire-alsa-1.0.1-1.el9.x86_64 153/168
Verifying : pipewire-1.0.1-1.el9.x86_64 154/168
Verifying : libgxps-0.3.2-3.el9.x86_64 155/168
Verifying : libXinerama-1.1.4-10.el9.x86_64 156/168
Verifying : libsbc-1.4-9.el9.x86_64 157/168
Verifying : low-memory-monitor-2.1-4.el9.x86_64 158/168
Verifying : webrtc-audio-processing-0.3.1-8.el9.0.1.x86_64 159/168
Verifying : upower-0.99.13-2.el9.x86_64 160/168
Verifying : libfontenc-1.1.3-17.el9.x86_64 161/168
Verifying : libX11-xcb-1.7.0-9.el9.x86_64 162/168
Verifying : libiptcdata-1.0.5-10.el9.x86_64 163/168
Verifying : gdk-pixbuf2-modules-2.42.6-4.el9_4.x86_64 164/168
Verifying : pipewire-jack-audio-connection-kit-libs-1.0.1-1.el9.x86_64 165/168
Verifying : composefs-libs-1.0.5-1.el9.x86_64 166/168
Verifying : java-17-openjdk-headless-1:17.0.14.0.7-2.el9.x86_64 167/168
Verifying : java-17-openjdk-1:17.0.14.0.7-2.el9.x86_64 168/168
Installed:
ModemManager-glib-1.20.2-1.el9.x86_64 adwaita-cursor-theme-40.1.1-3.el9.noarch adwaita-icon-theme-40.1.1-3.el9.noarch
at-spi2-atk-2.38.0-4.el9.x86_64 at-spi2-core-2.40.3-1.el9.x86_64 atk-2.36.0-5.el9.x86_64
avahi-glib-0.8-21.el9.x86_64 bluez-libs-5.72-2.el9.x86_64 boost-gnu14-mpich-ohpc-1.81.0-320.ohpc.2.1.x86_64
boost-gnu14-mvapich2-ohpc-1.81.0-320.ohpc.2.1.x86_64 boost-gnu14-openmpi5-ohpc-1.81.0-320.ohpc.1.1.x86_64 bubblewrap-0.4.1-8.el9_5.x86_64
colord-libs-1.4.5-4.el9.x86_64 composefs-libs-1.0.5-1.el9.x86_64 copy-jdk-configs-4.0-3.el9.noarch
cubelib-gnu14-ohpc-4.8.2-320.ohpc.1.1.x86_64 cubew-gnu14-ohpc-4.8.2-320.ohpc.1.1.x86_64 cups-libs-1:2.3.3op2-31.el9_5.x86_64
dconf-0.40.0-6.el9.x86_64 dimemas-gnu14-mpich-ohpc-5.4.2-320.ohpc.8.1.x86_64 dimemas-gnu14-mvapich2-ohpc-5.4.2-320.ohpc.8.1.x86_64
dimemas-gnu14-openmpi5-ohpc-5.4.2-320.ohpc.7.1.x86_64 exempi-2.6.0-0.2.20211007gite23c213.el9.x86_64 exiv2-0.27.5-2.el9.x86_64
exiv2-libs-0.27.5-2.el9.x86_64 extrae-gnu14-mpich-ohpc-3.8.3-320.ohpc.8.1.x86_64 extrae-gnu14-mvapich2-ohpc-3.8.3-320.ohpc.8.1.x86_64
extrae-gnu14-openmpi5-ohpc-3.8.3-320.ohpc.7.1.x86_64 fdk-aac-free-2.0.0-8.el9.x86_64 flac-libs-1.3.3-10.el9_2.1.x86_64
flatpak-1.12.9-3.el9_5.x86_64 flatpak-selinux-1.12.9-3.el9_5.noarch flatpak-session-helper-1.12.9-3.el9_5.x86_64
fuse-2.9.9-16.el9.x86_64 fuse-common-3.10.2-9.el9.x86_64 gdk-pixbuf2-modules-2.42.6-4.el9_4.x86_64
geoclue2-2.6.0-7.el9.x86_64 giflib-5.2.1-9.el9.x86_64 graphene-1.10.6-2.el9.x86_64
gsm-1.0.19-6.el9.x86_64 gstreamer1-1.22.1-2.el9.x86_64 gstreamer1-plugins-base-1.22.1-3.el9_5.x86_64
gtk-update-icon-cache-3.24.31-5.el9.x86_64 gtk3-3.24.31-5.el9.x86_64 hicolor-icon-theme-0.17-13.el9.noarch
imb-gnu14-mpich-ohpc-2021.3-320.ohpc.2.1.x86_64 imb-gnu14-mvapich2-ohpc-2021.3-320.ohpc.2.1.x86_64 imb-gnu14-openmpi5-ohpc-2021.3-320.ohpc.1.1.x86_64
infiniband-diags-51.0-1.el9.x86_64 iso-codes-4.6.0-3.el9.noarch java-17-openjdk-1:17.0.14.0.7-2.el9.x86_64
java-17-openjdk-headless-1:17.0.14.0.7-2.el9.x86_64 javapackages-filesystem-6.0.0-7.el9_5.noarch jbigkit-libs-2.1-23.el9.x86_64
lcms2-2.12-3.el9.x86_64 libX11-xcb-1.7.0-9.el9.x86_64 libXcomposite-0.4.5-7.el9.x86_64
libXcursor-1.2.0-7.el9.x86_64 libXdamage-1.1.5-7.el9.x86_64 libXfixes-5.0.3-16.el9.x86_64
libXi-1.7.10-8.el9.x86_64 libXinerama-1.1.4-10.el9.x86_64 libXrandr-1.5.2-8.el9.x86_64
libXtst-1.2.3-16.el9.x86_64 libXv-1.0.11-16.el9.x86_64 libXxf86vm-1.1.4-18.el9.x86_64
libasyncns-0.8-22.el9.x86_64 libcanberra-0.30-27.el9.x86_64 libcanberra-gtk3-0.30-27.el9.x86_64
libdrm-2.4.121-1.el9.x86_64 libepoxy-1.5.5-4.el9.x86_64 libexif-0.6.22-6.el9.x86_64
libfontenc-1.1.3-17.el9.x86_64 libgexiv2-0.12.3-1.el9.x86_64 libglvnd-1:1.3.4-1.el9.x86_64
libglvnd-egl-1:1.3.4-1.el9.x86_64 libglvnd-glx-1:1.3.4-1.el9.x86_64 libgsf-1.14.47-5.el9.x86_64
libgxps-0.3.2-3.el9.x86_64 libibumad-51.0-1.el9.x86_64 libiptcdata-1.0.5-10.el9.x86_64
libldac-2.0.2.3-10.el9.x86_64 libnotify-0.7.9-8.el9.x86_64 libogg-2:1.3.4-6.el9.x86_64
libosinfo-1.10.0-1.el9.x86_64 libpciaccess-0.16-7.el9.x86_64 libsbc-1.4-9.el9.x86_64
libsndfile-1.0.31-8.el9_5.2.x86_64 libtheora-1:1.1.1-31.el9.x86_64 libtiff-4.4.0-13.el9.x86_64
libtool-ltdl-2.4.6-46.el9.x86_64 libtracker-sparql-3.1.2-3.el9_1.x86_64 libunwind-devel-1.6.2-1.el9.x86_64
libvisual-1:0.4.0-34.el9.x86_64 libvorbis-1:1.3.7-5.el9.x86_64 libwayland-client-1.21.0-1.el9.x86_64
libwayland-cursor-1.21.0-1.el9.x86_64 libwayland-egl-1.21.0-1.el9.x86_64 libwayland-server-1.21.0-1.el9.x86_64
libwebp-1.2.0-8.el9.x86_64 libxkbcommon-1.0.3-4.el9.x86_64 libxshmfence-1.3-10.el9.x86_64
libxslt-1.1.34-9.el9.x86_64 likwid-gnu14-ohpc-5.3.0-320.ohpc.1.1.x86_64 lksctp-tools-1.0.19-3.el9_4.x86_64
low-memory-monitor-2.1-4.el9.x86_64 mesa-dri-drivers-24.1.2-3.el9.x86_64 mesa-filesystem-24.1.2-3.el9.x86_64
mesa-libEGL-24.1.2-3.el9.x86_64 mesa-libGL-24.1.2-3.el9.x86_64 mesa-libgbm-24.1.2-3.el9.x86_64
mesa-libglapi-24.1.2-3.el9.x86_64 mkfontscale-1.2.1-3.el9.x86_64 mvapich2-gnu14-ohpc-2.3.7-320.ohpc.3.1.x86_64
ohpc-gnu14-perf-tools-3.2-320.ohpc.1.1.x86_64 omb-gnu14-mpich-ohpc-7.3-320.ohpc.2.1.x86_64 omb-gnu14-mvapich2-ohpc-7.3-320.ohpc.2.1.x86_64
omb-gnu14-openmpi5-ohpc-7.3-320.ohpc.1.1.x86_64 opari2-gnu14-ohpc-2.0.8-320.ohpc.1.1.x86_64 openjpeg2-2.4.0-7.el9.x86_64
opus-1.3.1-10.el9.x86_64 orc-0.4.31-8.el9.x86_64 osinfo-db-20240701-2.el9.noarch
osinfo-db-tools-1.10.0-1.el9.x86_64 ostree-libs-2024.9-1.el9_5.x86_64 otf2-gnu14-mpich-ohpc-3.0.3-320.ohpc.2.1.x86_64
otf2-gnu14-mvapich2-ohpc-3.0.3-320.ohpc.2.1.x86_64 otf2-gnu14-openmpi5-ohpc-3.0.3-320.ohpc.1.1.x86_64 papi-ohpc-6.0.0-300.ohpc.1.6.x86_64
pdtoolkit-gnu14-ohpc-3.25.1-320.ohpc.1.1.x86_64 pipewire-1.0.1-1.el9.x86_64 pipewire-alsa-1.0.1-1.el9.x86_64
pipewire-jack-audio-connection-kit-1.0.1-1.el9.x86_64 pipewire-jack-audio-connection-kit-libs-1.0.1-1.el9.x86_64 pipewire-libs-1.0.1-1.el9.x86_64
pipewire-pulseaudio-1.0.1-1.el9.x86_64 poppler-21.01.0-21.el9.x86_64 poppler-data-0.4.9-9.el9.0.1.noarch
poppler-glib-21.01.0-21.el9.x86_64 pulseaudio-libs-15.0-2.el9.x86_64 rtkit-0.11-29.el9.x86_64
scalasca-gnu14-mpich-ohpc-2.6.1-320.ohpc.3.1.x86_64 scalasca-gnu14-mvapich2-ohpc-2.6.1-320.ohpc.3.1.x86_64 scalasca-gnu14-openmpi5-ohpc-2.6.1-320.ohpc.2.1.x86_64
scorep-gnu14-mpich-ohpc-8.4-320.ohpc.3.1.x86_64 scorep-gnu14-mvapich2-ohpc-8.4-320.ohpc.3.1.x86_64 scorep-gnu14-openmpi5-ohpc-8.4-320.ohpc.2.1.x86_64
sionlib-gnu14-mpich-ohpc-1.7.7-320.ohpc.3.1.x86_64 sionlib-gnu14-mvapich2-ohpc-1.7.7-320.ohpc.3.1.x86_64 sionlib-gnu14-openmpi5-ohpc-1.7.7-320.ohpc.2.1.x86_64
sound-theme-freedesktop-0.8-17.el9.noarch tau-gnu14-mpich-ohpc-2.31.1-320.ohpc.8.1.x86_64 tau-gnu14-mvapich2-ohpc-2.31.1-320.ohpc.8.1.x86_64
tau-gnu14-openmpi5-ohpc-2.31.1-320.ohpc.7.1.x86_64 totem-pl-parser-3.26.6-2.el9.x86_64 tracker-3.1.2-3.el9_1.x86_64
tracker-miners-3.1.2-4.el9_3.x86_64 ttmkfdir-3.0.9-65.el9.x86_64 tzdata-java-2025a-1.el9.noarch
upower-0.99.13-2.el9.x86_64 webrtc-audio-processing-0.3.1-8.el9.0.1.x86_64 wireplumber-0.4.14-1.el9.0.1.x86_64
wireplumber-libs-0.4.14-1.el9.0.1.x86_64 xdg-dbus-proxy-0.1.3-1.el9.x86_64 xdg-desktop-portal-1.12.6-1.el9.x86_64
xdg-desktop-portal-gtk-1.12.0-3.el9.x86_64 xkeyboard-config-2.33-2.el9.noarch xorg-x11-fonts-Type1-7.5-33.el9.noarch
Complete!
Last metadata expiration check: 2:38:55 ago on Tue Feb 25 07:33:36 2025.
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
lmod-defaults-gnu14-openmpi5-ohpc noarch 2.0-320.ohpc.3.1 OpenHPC-updates 8.0 k
Transaction Summary
==============================================================================================================================================================================================================
Install 1 Package
Total download size: 8.0 k
Installed size: 881
Downloading Packages:
lmod-defaults-gnu14-openmpi5-ohpc-2.0-320.ohpc.3.1.noarch.rpm 19 kB/s | 8.0 kB 00:00
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 19 kB/s | 8.0 kB 00:00
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : lmod-defaults-gnu14-openmpi5-ohpc-2.0-320.ohpc.3.1.noarch 1/1
Verifying : lmod-defaults-gnu14-openmpi5-ohpc-2.0-320.ohpc.3.1.noarch 1/1
Installed:
lmod-defaults-gnu14-openmpi5-ohpc-2.0-320.ohpc.3.1.noarch
Complete!
Last metadata expiration check: 2:38:59 ago on Tue Feb 25 07:33:36 2025.
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
ohpc-gnu14-serial-libs x86_64 3.2-320.ohpc.1.1 OpenHPC-updates 7.1 k
Upgrading:
bzip2-libs x86_64 1.0.8-10.el9_5 baseos 39 k
Installing dependencies:
R-gnu14-ohpc x86_64 4.4.1-320.ohpc.2.1 OpenHPC-updates 46 M
bzip2-devel x86_64 1.0.8-10.el9_5 appstream 213 k
gsl-gnu14-ohpc x86_64 2.7.1-320.ohpc.1.1 OpenHPC-updates 1.6 M
metis-gnu14-ohpc x86_64 5.1.0-320.ohpc.7.1 OpenHPC-updates 238 k
openblas-gnu14-ohpc x86_64 0.3.28-320.ohpc.3.1 OpenHPC-updates 5.1 M
plasma-gnu14-ohpc x86_64 21.8.29-320.ohpc.1.1 OpenHPC-updates 1.1 M
scotch-gnu14-ohpc x86_64 6.0.6-320.ohpc.2.1 OpenHPC-updates 3.3 M
superlu-gnu14-ohpc x86_64 7.0.0-320.ohpc.3.1 OpenHPC-updates 255 k
tk x86_64 1:8.6.10-9.el9 appstream 1.6 M
Transaction Summary
==============================================================================================================================================================================================================
Install 10 Packages
Upgrade 1 Package
Total download size: 59 M
Downloading Packages:
(1/11): metis-gnu14-ohpc-5.1.0-320.ohpc.7.1.x86_64.rpm 225 kB/s | 238 kB 00:01
(2/11): ohpc-gnu14-serial-libs-3.2-320.ohpc.1.1.x86_64.rpm 39 kB/s | 7.1 kB 00:00
(3/11): gsl-gnu14-ohpc-2.7.1-320.ohpc.1.1.x86_64.rpm 866 kB/s | 1.6 MB 00:01
(4/11): plasma-gnu14-ohpc-21.8.29-320.ohpc.1.1.x86_64.rpm 5.2 MB/s | 1.1 MB 00:00
(5/11): openblas-gnu14-ohpc-0.3.28-320.ohpc.3.1.x86_64.rpm 5.3 MB/s | 5.1 MB 00:00
(6/11): superlu-gnu14-ohpc-7.0.0-320.ohpc.3.1.x86_64.rpm 1.3 MB/s | 255 kB 00:00
(7/11): bzip2-devel-1.0.8-10.el9_5.x86_64.rpm 3.0 MB/s | 213 kB 00:00
(8/11): tk-8.6.10-9.el9.x86_64.rpm 10 MB/s | 1.6 MB 00:00
(9/11): bzip2-libs-1.0.8-10.el9_5.x86_64.rpm 1.2 MB/s | 39 kB 00:00
(10/11): scotch-gnu14-ohpc-6.0.6-320.ohpc.2.1.x86_64.rpm 5.7 MB/s | 3.3 MB 00:00
(11/11): R-gnu14-ohpc-4.4.1-320.ohpc.2.1.x86_64.rpm 7.4 MB/s | 46 MB 00:06
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 8.4 MB/s | 59 MB 00:07
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : openblas-gnu14-ohpc-0.3.28-320.ohpc.3.1.x86_64 1/12
Upgrading : bzip2-libs-1.0.8-10.el9_5.x86_64 2/12
Installing : bzip2-devel-1.0.8-10.el9_5.x86_64 3/12
Installing : scotch-gnu14-ohpc-6.0.6-320.ohpc.2.1.x86_64 4/12
Installing : plasma-gnu14-ohpc-21.8.29-320.ohpc.1.1.x86_64 5/12
Installing : superlu-gnu14-ohpc-7.0.0-320.ohpc.3.1.x86_64 6/12
Running scriptlet: tk-1:8.6.10-9.el9.x86_64 7/12
Installing : tk-1:8.6.10-9.el9.x86_64 7/12
Installing : R-gnu14-ohpc-4.4.1-320.ohpc.2.1.x86_64 8/12
Installing : metis-gnu14-ohpc-5.1.0-320.ohpc.7.1.x86_64 9/12
Installing : gsl-gnu14-ohpc-2.7.1-320.ohpc.1.1.x86_64 10/12
Installing : ohpc-gnu14-serial-libs-3.2-320.ohpc.1.1.x86_64 11/12
Cleanup : bzip2-libs-1.0.8-8.el9.x86_64 12/12
Running scriptlet: bzip2-libs-1.0.8-8.el9.x86_64 12/12
Verifying : R-gnu14-ohpc-4.4.1-320.ohpc.2.1.x86_64 1/12
Verifying : gsl-gnu14-ohpc-2.7.1-320.ohpc.1.1.x86_64 2/12
Verifying : metis-gnu14-ohpc-5.1.0-320.ohpc.7.1.x86_64 3/12
Verifying : ohpc-gnu14-serial-libs-3.2-320.ohpc.1.1.x86_64 4/12
Verifying : openblas-gnu14-ohpc-0.3.28-320.ohpc.3.1.x86_64 5/12
Verifying : plasma-gnu14-ohpc-21.8.29-320.ohpc.1.1.x86_64 6/12
Verifying : scotch-gnu14-ohpc-6.0.6-320.ohpc.2.1.x86_64 7/12
Verifying : superlu-gnu14-ohpc-7.0.0-320.ohpc.3.1.x86_64 8/12
Verifying : bzip2-devel-1.0.8-10.el9_5.x86_64 9/12
Verifying : tk-1:8.6.10-9.el9.x86_64 10/12
Verifying : bzip2-libs-1.0.8-10.el9_5.x86_64 11/12
Verifying : bzip2-libs-1.0.8-8.el9.x86_64 12/12
Upgraded:
bzip2-libs-1.0.8-10.el9_5.x86_64
Installed:
R-gnu14-ohpc-4.4.1-320.ohpc.2.1.x86_64 bzip2-devel-1.0.8-10.el9_5.x86_64 gsl-gnu14-ohpc-2.7.1-320.ohpc.1.1.x86_64 metis-gnu14-ohpc-5.1.0-320.ohpc.7.1.x86_64
ohpc-gnu14-serial-libs-3.2-320.ohpc.1.1.x86_64 openblas-gnu14-ohpc-0.3.28-320.ohpc.3.1.x86_64 plasma-gnu14-ohpc-21.8.29-320.ohpc.1.1.x86_64 scotch-gnu14-ohpc-6.0.6-320.ohpc.2.1.x86_64
superlu-gnu14-ohpc-7.0.0-320.ohpc.3.1.x86_64 tk-1:8.6.10-9.el9.x86_64
Complete!
Last metadata expiration check: 2:39:14 ago on Tue Feb 25 07:33:36 2025.
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
ohpc-gnu14-io-libs x86_64 3.2-320.ohpc.1.1 OpenHPC-updates 7.6 k
Installing dependencies:
adios2-gnu14-mpich-ohpc x86_64 2.10.1-320.ohpc.4.1 OpenHPC-updates 4.3 M
adios2-gnu14-mvapich2-ohpc x86_64 2.10.1-320.ohpc.4.1 OpenHPC-updates 4.3 M
adios2-gnu14-openmpi5-ohpc x86_64 2.10.1-320.ohpc.3.1 OpenHPC-updates 4.3 M
hdf5-gnu14-ohpc x86_64 1.14.5-320.ohpc.2.1 OpenHPC-updates 3.7 M
libnsl2 x86_64 2.0.0-1.el9.0.1 appstream 30 k
mpdecimal x86_64 2.5.1-3.el9 appstream 85 k
netcdf-cxx-gnu14-mpich-ohpc x86_64 4.3.1-320.ohpc.2.1 OpenHPC-updates 125 k
netcdf-cxx-gnu14-mvapich2-ohpc x86_64 4.3.1-320.ohpc.2.1 OpenHPC-updates 125 k
netcdf-cxx-gnu14-ohpc x86_64 4.3.1-320.ohpc.2.1 OpenHPC-updates 125 k
netcdf-cxx-gnu14-openmpi5-ohpc x86_64 4.3.1-320.ohpc.1.1 OpenHPC-updates 125 k
netcdf-fortran-gnu14-mpich-ohpc x86_64 4.6.1-320.ohpc.2.1 OpenHPC-updates 408 k
netcdf-fortran-gnu14-mvapich2-ohpc x86_64 4.6.1-320.ohpc.2.1 OpenHPC-updates 408 k
netcdf-fortran-gnu14-ohpc x86_64 4.6.1-320.ohpc.2.1 OpenHPC-updates 408 k
netcdf-fortran-gnu14-openmpi5-ohpc x86_64 4.6.1-320.ohpc.1.1 OpenHPC-updates 409 k
netcdf-gnu14-mpich-ohpc x86_64 4.9.2-320.ohpc.2.1 OpenHPC-updates 912 k
netcdf-gnu14-mvapich2-ohpc x86_64 4.9.2-320.ohpc.2.1 OpenHPC-updates 912 k
netcdf-gnu14-ohpc x86_64 4.9.2-320.ohpc.2.1 OpenHPC-updates 909 k
netcdf-gnu14-openmpi5-ohpc x86_64 4.9.2-320.ohpc.1.1 OpenHPC-updates 912 k
phdf5-gnu14-mpich-ohpc x86_64 1.14.0-320.ohpc.5.1 OpenHPC-updates 3.6 M
phdf5-gnu14-mvapich2-ohpc x86_64 1.14.0-320.ohpc.5.1 OpenHPC-updates 3.6 M
phdf5-gnu14-openmpi5-ohpc x86_64 1.14.0-320.ohpc.4.1 OpenHPC-updates 3.6 M
pnetcdf-gnu14-mpich-ohpc x86_64 1.12.3-320.ohpc.2.1 OpenHPC-updates 1.5 M
pnetcdf-gnu14-mvapich2-ohpc x86_64 1.12.3-320.ohpc.2.1 OpenHPC-updates 1.5 M
pnetcdf-gnu14-openmpi5-ohpc x86_64 1.12.3-320.ohpc.1.1 OpenHPC-updates 1.6 M
python3.11 x86_64 3.11.9-7.el9_5.2 appstream 27 k
python3.11-libs x86_64 3.11.9-7.el9_5.2 appstream 9.7 M
python3.11-mpi4py-gnu14-mpich-ohpc x86_64 3.1.5-320.ohpc.2.1 OpenHPC-updates 620 k
python3.11-mpi4py-gnu14-mvapich2-ohpc x86_64 3.1.5-320.ohpc.2.1 OpenHPC-updates 620 k
python3.11-mpi4py-gnu14-openmpi5-ohpc x86_64 3.1.5-320.ohpc.1.1 OpenHPC-updates 625 k
python3.11-numpy-gnu14-ohpc x86_64 1.26.4-320.ohpc.1.1 OpenHPC-updates 7.6 M
python3.11-pip-wheel noarch 22.3.1-5.el9 appstream 1.4 M
python3.11-setuptools-wheel noarch 65.5.1-3.el9 appstream 713 k
Installing weak dependencies:
python3.11-tkinter x86_64 3.11.9-7.el9_5.2 appstream 395 k
Transaction Summary
==============================================================================================================================================================================================================
Install 34 Packages
Total download size: 59 M
Installed size: 275 M
Downloading Packages:
(1/34): adios2-gnu14-mpich-ohpc-2.10.1-320.ohpc.4.1.x86_64.rpm 1.9 MB/s | 4.3 MB 00:02
(2/34): adios2-gnu14-openmpi5-ohpc-2.10.1-320.ohpc.3.1.x86_64.rpm 1.9 MB/s | 4.3 MB 00:02
(3/34): adios2-gnu14-mvapich2-ohpc-2.10.1-320.ohpc.4.1.x86_64.rpm 1.8 MB/s | 4.3 MB 00:02
(4/34): netcdf-cxx-gnu14-mpich-ohpc-4.3.1-320.ohpc.2.1.x86_64.rpm 661 kB/s | 125 kB 00:00
(5/34): netcdf-cxx-gnu14-mvapich2-ohpc-4.3.1-320.ohpc.2.1.x86_64.rpm 668 kB/s | 125 kB 00:00
(6/34): netcdf-cxx-gnu14-ohpc-4.3.1-320.ohpc.2.1.x86_64.rpm 662 kB/s | 125 kB 00:00
(7/34): netcdf-cxx-gnu14-openmpi5-ohpc-4.3.1-320.ohpc.1.1.x86_64.rpm 662 kB/s | 125 kB 00:00
(8/34): hdf5-gnu14-ohpc-1.14.5-320.ohpc.2.1.x86_64.rpm 5.6 MB/s | 3.7 MB 00:00
(9/34): netcdf-fortran-gnu14-mvapich2-ohpc-4.6.1-320.ohpc.2.1.x86_64.rpm 2.0 MB/s | 408 kB 00:00
(10/34): netcdf-fortran-gnu14-ohpc-4.6.1-320.ohpc.2.1.x86_64.rpm 2.1 MB/s | 408 kB 00:00
(11/34): netcdf-fortran-gnu14-openmpi5-ohpc-4.6.1-320.ohpc.1.1.x86_64.rpm 2.1 MB/s | 409 kB 00:00
(12/34): netcdf-gnu14-mpich-ohpc-4.9.2-320.ohpc.2.1.x86_64.rpm 4.5 MB/s | 912 kB 00:00
(13/34): netcdf-fortran-gnu14-mpich-ohpc-4.6.1-320.ohpc.2.1.x86_64.rpm 612 kB/s | 408 kB 00:00
(14/34): netcdf-gnu14-mvapich2-ohpc-4.9.2-320.ohpc.2.1.x86_64.rpm 4.5 MB/s | 912 kB 00:00
(15/34): netcdf-gnu14-ohpc-4.9.2-320.ohpc.2.1.x86_64.rpm 4.4 MB/s | 909 kB 00:00
(16/34): netcdf-gnu14-openmpi5-ohpc-4.9.2-320.ohpc.1.1.x86_64.rpm 4.4 MB/s | 912 kB 00:00
(17/34): ohpc-gnu14-io-libs-3.2-320.ohpc.1.1.x86_64.rpm 41 kB/s | 7.6 kB 00:00
(18/34): phdf5-gnu14-mpich-ohpc-1.14.0-320.ohpc.5.1.x86_64.rpm 4.5 MB/s | 3.6 MB 00:00
(19/34): phdf5-gnu14-openmpi5-ohpc-1.14.0-320.ohpc.4.1.x86_64.rpm 4.5 MB/s | 3.6 MB 00:00
(20/34): phdf5-gnu14-mvapich2-ohpc-1.14.0-320.ohpc.5.1.x86_64.rpm 4.1 MB/s | 3.6 MB 00:00
(21/34): pnetcdf-gnu14-mpich-ohpc-1.12.3-320.ohpc.2.1.x86_64.rpm 7.1 MB/s | 1.5 MB 00:00
(22/34): pnetcdf-gnu14-mvapich2-ohpc-1.12.3-320.ohpc.2.1.x86_64.rpm 7.1 MB/s | 1.5 MB 00:00
(23/34): python3.11-mpi4py-gnu14-mpich-ohpc-3.1.5-320.ohpc.2.1.x86_64.rpm 3.1 MB/s | 620 kB 00:00
(24/34): python3.11-mpi4py-gnu14-mvapich2-ohpc-3.1.5-320.ohpc.2.1.x86_64.rpm 3.1 MB/s | 620 kB 00:00
(25/34): pnetcdf-gnu14-openmpi5-ohpc-1.12.3-320.ohpc.1.1.x86_64.rpm 3.4 MB/s | 1.6 MB 00:00
(26/34): python3.11-mpi4py-gnu14-openmpi5-ohpc-3.1.5-320.ohpc.1.1.x86_64.rpm 3.0 MB/s | 625 kB 00:00
(27/34): libnsl2-2.0.0-1.el9.0.1.x86_64.rpm 397 kB/s | 30 kB 00:00
(28/34): mpdecimal-2.5.1-3.el9.x86_64.rpm 1.2 MB/s | 85 kB 00:00
(29/34): python3.11-tkinter-3.11.9-7.el9_5.2.x86_64.rpm 4.3 MB/s | 395 kB 00:00
(30/34): python3.11-3.11.9-7.el9_5.2.x86_64.rpm 831 kB/s | 27 kB 00:00
(31/34): python3.11-libs-3.11.9-7.el9_5.2.x86_64.rpm 45 MB/s | 9.7 MB 00:00
(32/34): python3.11-setuptools-wheel-65.5.1-3.el9.noarch.rpm 5.9 MB/s | 713 kB 00:00
(33/34): python3.11-pip-wheel-22.3.1-5.el9.noarch.rpm 16 MB/s | 1.4 MB 00:00
(34/34): python3.11-numpy-gnu14-ohpc-1.26.4-320.ohpc.1.1.x86_64.rpm 7.8 MB/s | 7.6 MB 00:00
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 8.2 MB/s | 59 MB 00:07
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : hdf5-gnu14-ohpc-1.14.5-320.ohpc.2.1.x86_64 1/34
Installing : netcdf-gnu14-ohpc-4.9.2-320.ohpc.2.1.x86_64 2/34
Installing : phdf5-gnu14-openmpi5-ohpc-1.14.0-320.ohpc.4.1.x86_64 3/34
Installing : netcdf-gnu14-openmpi5-ohpc-4.9.2-320.ohpc.1.1.x86_64 4/34
Installing : phdf5-gnu14-mvapich2-ohpc-1.14.0-320.ohpc.5.1.x86_64 5/34
Installing : netcdf-gnu14-mvapich2-ohpc-4.9.2-320.ohpc.2.1.x86_64 6/34
Installing : phdf5-gnu14-mpich-ohpc-1.14.0-320.ohpc.5.1.x86_64 7/34
Installing : netcdf-gnu14-mpich-ohpc-4.9.2-320.ohpc.2.1.x86_64 8/34
Installing : netcdf-cxx-gnu14-mpich-ohpc-4.3.1-320.ohpc.2.1.x86_64 9/34
Installing : netcdf-fortran-gnu14-mpich-ohpc-4.6.1-320.ohpc.2.1.x86_64 10/34
Installing : netcdf-fortran-gnu14-mvapich2-ohpc-4.6.1-320.ohpc.2.1.x86_64 11/34
Installing : netcdf-fortran-gnu14-ohpc-4.6.1-320.ohpc.2.1.x86_64 12/34
Installing : netcdf-fortran-gnu14-openmpi5-ohpc-4.6.1-320.ohpc.1.1.x86_64 13/34
Installing : netcdf-cxx-gnu14-mvapich2-ohpc-4.3.1-320.ohpc.2.1.x86_64 14/34
Installing : netcdf-cxx-gnu14-openmpi5-ohpc-4.3.1-320.ohpc.1.1.x86_64 15/34
Installing : netcdf-cxx-gnu14-ohpc-4.3.1-320.ohpc.2.1.x86_64 16/34
Installing : python3.11-pip-wheel-22.3.1-5.el9.noarch 17/34
Installing : python3.11-setuptools-wheel-65.5.1-3.el9.noarch 18/34
Installing : mpdecimal-2.5.1-3.el9.x86_64 19/34
Installing : libnsl2-2.0.0-1.el9.0.1.x86_64 20/34
Installing : python3.11-tkinter-3.11.9-7.el9_5.2.x86_64 21/34
Installing : python3.11-3.11.9-7.el9_5.2.x86_64 22/34
Installing : python3.11-libs-3.11.9-7.el9_5.2.x86_64 23/34
Installing : python3.11-numpy-gnu14-ohpc-1.26.4-320.ohpc.1.1.x86_64 24/34
Installing : python3.11-mpi4py-gnu14-mpich-ohpc-3.1.5-320.ohpc.2.1.x86_64 25/34
Installing : adios2-gnu14-mpich-ohpc-2.10.1-320.ohpc.4.1.x86_64 26/34
Installing : python3.11-mpi4py-gnu14-mvapich2-ohpc-3.1.5-320.ohpc.2.1.x86_64 27/34
Installing : adios2-gnu14-mvapich2-ohpc-2.10.1-320.ohpc.4.1.x86_64 28/34
Installing : python3.11-mpi4py-gnu14-openmpi5-ohpc-3.1.5-320.ohpc.1.1.x86_64 29/34
Installing : adios2-gnu14-openmpi5-ohpc-2.10.1-320.ohpc.3.1.x86_64 30/34
Installing : pnetcdf-gnu14-openmpi5-ohpc-1.12.3-320.ohpc.1.1.x86_64 31/34
Installing : pnetcdf-gnu14-mvapich2-ohpc-1.12.3-320.ohpc.2.1.x86_64 32/34
Installing : pnetcdf-gnu14-mpich-ohpc-1.12.3-320.ohpc.2.1.x86_64 33/34
Installing : ohpc-gnu14-io-libs-3.2-320.ohpc.1.1.x86_64 34/34
Running scriptlet: ohpc-gnu14-io-libs-3.2-320.ohpc.1.1.x86_64 34/34
Verifying : adios2-gnu14-mpich-ohpc-2.10.1-320.ohpc.4.1.x86_64 1/34
Verifying : adios2-gnu14-mvapich2-ohpc-2.10.1-320.ohpc.4.1.x86_64 2/34
Verifying : adios2-gnu14-openmpi5-ohpc-2.10.1-320.ohpc.3.1.x86_64 3/34
Verifying : hdf5-gnu14-ohpc-1.14.5-320.ohpc.2.1.x86_64 4/34
Verifying : netcdf-cxx-gnu14-mpich-ohpc-4.3.1-320.ohpc.2.1.x86_64 5/34
Verifying : netcdf-cxx-gnu14-mvapich2-ohpc-4.3.1-320.ohpc.2.1.x86_64 6/34
Verifying : netcdf-cxx-gnu14-ohpc-4.3.1-320.ohpc.2.1.x86_64 7/34
Verifying : netcdf-cxx-gnu14-openmpi5-ohpc-4.3.1-320.ohpc.1.1.x86_64 8/34
Verifying : netcdf-fortran-gnu14-mpich-ohpc-4.6.1-320.ohpc.2.1.x86_64 9/34
Verifying : netcdf-fortran-gnu14-mvapich2-ohpc-4.6.1-320.ohpc.2.1.x86_64 10/34
Verifying : netcdf-fortran-gnu14-ohpc-4.6.1-320.ohpc.2.1.x86_64 11/34
Verifying : netcdf-fortran-gnu14-openmpi5-ohpc-4.6.1-320.ohpc.1.1.x86_64 12/34
Verifying : netcdf-gnu14-mpich-ohpc-4.9.2-320.ohpc.2.1.x86_64 13/34
Verifying : netcdf-gnu14-mvapich2-ohpc-4.9.2-320.ohpc.2.1.x86_64 14/34
Verifying : netcdf-gnu14-ohpc-4.9.2-320.ohpc.2.1.x86_64 15/34
Verifying : netcdf-gnu14-openmpi5-ohpc-4.9.2-320.ohpc.1.1.x86_64 16/34
Verifying : ohpc-gnu14-io-libs-3.2-320.ohpc.1.1.x86_64 17/34
Verifying : phdf5-gnu14-mpich-ohpc-1.14.0-320.ohpc.5.1.x86_64 18/34
Verifying : phdf5-gnu14-mvapich2-ohpc-1.14.0-320.ohpc.5.1.x86_64 19/34
Verifying : phdf5-gnu14-openmpi5-ohpc-1.14.0-320.ohpc.4.1.x86_64 20/34
Verifying : pnetcdf-gnu14-mpich-ohpc-1.12.3-320.ohpc.2.1.x86_64 21/34
Verifying : pnetcdf-gnu14-mvapich2-ohpc-1.12.3-320.ohpc.2.1.x86_64 22/34
Verifying : pnetcdf-gnu14-openmpi5-ohpc-1.12.3-320.ohpc.1.1.x86_64 23/34
Verifying : python3.11-mpi4py-gnu14-mpich-ohpc-3.1.5-320.ohpc.2.1.x86_64 24/34
Verifying : python3.11-mpi4py-gnu14-mvapich2-ohpc-3.1.5-320.ohpc.2.1.x86_64 25/34
Verifying : python3.11-mpi4py-gnu14-openmpi5-ohpc-3.1.5-320.ohpc.1.1.x86_64 26/34
Verifying : python3.11-numpy-gnu14-ohpc-1.26.4-320.ohpc.1.1.x86_64 27/34
Verifying : libnsl2-2.0.0-1.el9.0.1.x86_64 28/34
Verifying : mpdecimal-2.5.1-3.el9.x86_64 29/34
Verifying : python3.11-tkinter-3.11.9-7.el9_5.2.x86_64 30/34
Verifying : python3.11-libs-3.11.9-7.el9_5.2.x86_64 31/34
Verifying : python3.11-3.11.9-7.el9_5.2.x86_64 32/34
Verifying : python3.11-setuptools-wheel-65.5.1-3.el9.noarch 33/34
Verifying : python3.11-pip-wheel-22.3.1-5.el9.noarch 34/34
Installed:
adios2-gnu14-mpich-ohpc-2.10.1-320.ohpc.4.1.x86_64 adios2-gnu14-mvapich2-ohpc-2.10.1-320.ohpc.4.1.x86_64 adios2-gnu14-openmpi5-ohpc-2.10.1-320.ohpc.3.1.x86_64
hdf5-gnu14-ohpc-1.14.5-320.ohpc.2.1.x86_64 libnsl2-2.0.0-1.el9.0.1.x86_64 mpdecimal-2.5.1-3.el9.x86_64
netcdf-cxx-gnu14-mpich-ohpc-4.3.1-320.ohpc.2.1.x86_64 netcdf-cxx-gnu14-mvapich2-ohpc-4.3.1-320.ohpc.2.1.x86_64 netcdf-cxx-gnu14-ohpc-4.3.1-320.ohpc.2.1.x86_64
netcdf-cxx-gnu14-openmpi5-ohpc-4.3.1-320.ohpc.1.1.x86_64 netcdf-fortran-gnu14-mpich-ohpc-4.6.1-320.ohpc.2.1.x86_64 netcdf-fortran-gnu14-mvapich2-ohpc-4.6.1-320.ohpc.2.1.x86_64
netcdf-fortran-gnu14-ohpc-4.6.1-320.ohpc.2.1.x86_64 netcdf-fortran-gnu14-openmpi5-ohpc-4.6.1-320.ohpc.1.1.x86_64 netcdf-gnu14-mpich-ohpc-4.9.2-320.ohpc.2.1.x86_64
netcdf-gnu14-mvapich2-ohpc-4.9.2-320.ohpc.2.1.x86_64 netcdf-gnu14-ohpc-4.9.2-320.ohpc.2.1.x86_64 netcdf-gnu14-openmpi5-ohpc-4.9.2-320.ohpc.1.1.x86_64
ohpc-gnu14-io-libs-3.2-320.ohpc.1.1.x86_64 phdf5-gnu14-mpich-ohpc-1.14.0-320.ohpc.5.1.x86_64 phdf5-gnu14-mvapich2-ohpc-1.14.0-320.ohpc.5.1.x86_64
phdf5-gnu14-openmpi5-ohpc-1.14.0-320.ohpc.4.1.x86_64 pnetcdf-gnu14-mpich-ohpc-1.12.3-320.ohpc.2.1.x86_64 pnetcdf-gnu14-mvapich2-ohpc-1.12.3-320.ohpc.2.1.x86_64
pnetcdf-gnu14-openmpi5-ohpc-1.12.3-320.ohpc.1.1.x86_64 python3.11-3.11.9-7.el9_5.2.x86_64 python3.11-libs-3.11.9-7.el9_5.2.x86_64
python3.11-mpi4py-gnu14-mpich-ohpc-3.1.5-320.ohpc.2.1.x86_64 python3.11-mpi4py-gnu14-mvapich2-ohpc-3.1.5-320.ohpc.2.1.x86_64 python3.11-mpi4py-gnu14-openmpi5-ohpc-3.1.5-320.ohpc.1.1.x86_64
python3.11-numpy-gnu14-ohpc-1.26.4-320.ohpc.1.1.x86_64 python3.11-pip-wheel-22.3.1-5.el9.noarch python3.11-setuptools-wheel-65.5.1-3.el9.noarch
python3.11-tkinter-3.11.9-7.el9_5.2.x86_64
Complete!
Last metadata expiration check: 2:39:34 ago on Tue Feb 25 07:33:36 2025.
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
ohpc-gnu14-python-libs x86_64 3.2-320.ohpc.1.1 OpenHPC-updates 7.0 k
Installing dependencies:
fftw-gnu14-mpich-ohpc x86_64 3.3.10-320.ohpc.2.1 OpenHPC-updates 2.8 M
fftw-gnu14-mvapich2-ohpc x86_64 3.3.10-320.ohpc.2.1 OpenHPC-updates 2.8 M
fftw-gnu14-openmpi5-ohpc x86_64 3.3.10-320.ohpc.1.1 OpenHPC-updates 2.8 M
ohpc-gnu14-python3-libs x86_64 3.2-320.ohpc.1.1 OpenHPC-updates 7.2 k
python3.11-scipy-gnu14-mpich-ohpc x86_64 1.5.4-320.ohpc.2.1 OpenHPC-updates 12 M
python3.11-scipy-gnu14-mvapich2-ohpc x86_64 1.5.4-320.ohpc.2.1 OpenHPC-updates 12 M
python3.11-scipy-gnu14-openmpi5-ohpc x86_64 1.5.4-320.ohpc.1.1 OpenHPC-updates 12 M
Transaction Summary
==============================================================================================================================================================================================================
Install 8 Packages
Total download size: 44 M
Installed size: 180 M
Downloading Packages:
(1/8): fftw-gnu14-openmpi5-ohpc-3.3.10-320.ohpc.1.1.x86_64.rpm 1.7 MB/s | 2.8 MB 00:01
(2/8): ohpc-gnu14-python-libs-3.2-320.ohpc.1.1.x86_64.rpm 37 kB/s | 7.0 kB 00:00
(3/8): fftw-gnu14-mpich-ohpc-3.3.10-320.ohpc.2.1.x86_64.rpm 1.4 MB/s | 2.8 MB 00:02
(4/8): ohpc-gnu14-python3-libs-3.2-320.ohpc.1.1.x86_64.rpm 37 kB/s | 7.2 kB 00:00
(5/8): fftw-gnu14-mvapich2-ohpc-3.3.10-320.ohpc.2.1.x86_64.rpm 1.2 MB/s | 2.8 MB 00:02
(6/8): python3.11-scipy-gnu14-mpich-ohpc-1.5.4-320.ohpc.2.1.x86_64.rpm 10 MB/s | 12 MB 00:01
(7/8): python3.11-scipy-gnu14-mvapich2-ohpc-1.5.4-320.ohpc.2.1.x86_64.rpm 8.1 MB/s | 12 MB 00:01
(8/8): python3.11-scipy-gnu14-openmpi5-ohpc-1.5.4-320.ohpc.1.1.x86_64.rpm 9.2 MB/s | 12 MB 00:01
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 12 MB/s | 44 MB 00:03
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : fftw-gnu14-openmpi5-ohpc-3.3.10-320.ohpc.1.1.x86_64 1/8
Installing : python3.11-scipy-gnu14-openmpi5-ohpc-1.5.4-320.ohpc.1.1.x86_64 2/8
Installing : fftw-gnu14-mvapich2-ohpc-3.3.10-320.ohpc.2.1.x86_64 3/8
Installing : python3.11-scipy-gnu14-mvapich2-ohpc-1.5.4-320.ohpc.2.1.x86_64 4/8
Installing : fftw-gnu14-mpich-ohpc-3.3.10-320.ohpc.2.1.x86_64 5/8
Installing : python3.11-scipy-gnu14-mpich-ohpc-1.5.4-320.ohpc.2.1.x86_64 6/8
Installing : ohpc-gnu14-python3-libs-3.2-320.ohpc.1.1.x86_64 7/8
Installing : ohpc-gnu14-python-libs-3.2-320.ohpc.1.1.x86_64 8/8
Verifying : fftw-gnu14-mpich-ohpc-3.3.10-320.ohpc.2.1.x86_64 1/8
Verifying : fftw-gnu14-mvapich2-ohpc-3.3.10-320.ohpc.2.1.x86_64 2/8
Verifying : fftw-gnu14-openmpi5-ohpc-3.3.10-320.ohpc.1.1.x86_64 3/8
Verifying : ohpc-gnu14-python-libs-3.2-320.ohpc.1.1.x86_64 4/8
Verifying : ohpc-gnu14-python3-libs-3.2-320.ohpc.1.1.x86_64 5/8
Verifying : python3.11-scipy-gnu14-mpich-ohpc-1.5.4-320.ohpc.2.1.x86_64 6/8
Verifying : python3.11-scipy-gnu14-mvapich2-ohpc-1.5.4-320.ohpc.2.1.x86_64 7/8
Verifying : python3.11-scipy-gnu14-openmpi5-ohpc-1.5.4-320.ohpc.1.1.x86_64 8/8
Installed:
fftw-gnu14-mpich-ohpc-3.3.10-320.ohpc.2.1.x86_64 fftw-gnu14-mvapich2-ohpc-3.3.10-320.ohpc.2.1.x86_64 fftw-gnu14-openmpi5-ohpc-3.3.10-320.ohpc.1.1.x86_64
ohpc-gnu14-python-libs-3.2-320.ohpc.1.1.x86_64 ohpc-gnu14-python3-libs-3.2-320.ohpc.1.1.x86_64 python3.11-scipy-gnu14-mpich-ohpc-1.5.4-320.ohpc.2.1.x86_64
python3.11-scipy-gnu14-mvapich2-ohpc-1.5.4-320.ohpc.2.1.x86_64 python3.11-scipy-gnu14-openmpi5-ohpc-1.5.4-320.ohpc.1.1.x86_64
Complete!
Last metadata expiration check: 2:39:46 ago on Tue Feb 25 07:33:36 2025.
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
ohpc-gnu14-runtimes x86_64 3.2-320.ohpc.1.1 OpenHPC-updates 7.0 k
Installing dependencies:
charliecloud-ohpc x86_64 0.15-300.ohpc.1.6 OpenHPC 138 k
conmon x86_64 3:2.1.12-1.el9 appstream 51 k
criu x86_64 3.19-1.el9 appstream 559 k
crun x86_64 1.16.1-1.el9 appstream 223 k
fuse3 x86_64 3.10.2-9.el9 appstream 53 k
fuse3-libs x86_64 3.10.2-9.el9 appstream 91 k
libnet x86_64 1.2-7.el9 appstream 57 k
squashfs-tools-ng x86_64 1.3.1-1.el9 epel 117 k
squashfs-tools-ng-libs x86_64 1.3.1-1.el9 epel 49 k
yajl x86_64 2.1.0-22.el9 appstream 37 k
Installing weak dependencies:
criu-libs x86_64 3.19-1.el9 appstream 31 k
singularity-ce x86_64 4.2.2-1.el9 epel 45 M
Transaction Summary
==============================================================================================================================================================================================================
Install 13 Packages
Total download size: 46 M
Installed size: 184 M
Downloading Packages:
(1/13): singularity-ce-4.2.2-1.el9.x86_64.rpm 63 MB/s | 45 MB 00:00
(2/13): squashfs-tools-ng-1.3.1-1.el9.x86_64.rpm 2.1 MB/s | 117 kB 00:00
(3/13): squashfs-tools-ng-libs-1.3.1-1.el9.x86_64.rpm 2.2 MB/s | 49 kB 00:00
(4/13): conmon-2.1.12-1.el9.x86_64.rpm 1.6 MB/s | 51 kB 00:00
(5/13): yajl-2.1.0-22.el9.x86_64.rpm 2.1 MB/s | 37 kB 00:00
(6/13): criu-libs-3.19-1.el9.x86_64.rpm 5.7 MB/s | 31 kB 00:00
(7/13): criu-3.19-1.el9.x86_64.rpm 34 MB/s | 559 kB 00:00
(8/13): crun-1.16.1-1.el9.x86_64.rpm 22 MB/s | 223 kB 00:00
(9/13): libnet-1.2-7.el9.x86_64.rpm 6.9 MB/s | 57 kB 00:00
(10/13): ohpc-gnu14-runtimes-3.2-320.ohpc.1.1.x86_64.rpm 7.0 kB/s | 7.0 kB 00:01
(11/13): fuse3-libs-3.10.2-9.el9.x86_64.rpm 651 kB/s | 91 kB 00:00
(12/13): fuse3-3.10.2-9.el9.x86_64.rpm 3.0 MB/s | 53 kB 00:00
(13/13): charliecloud-ohpc-0.15-300.ohpc.1.6.x86_64.rpm 90 kB/s | 138 kB 00:01
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 2.3 MB/s | 46 MB 00:20
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : fuse3-libs-3.10.2-9.el9.x86_64 1/13
Installing : fuse3-3.10.2-9.el9.x86_64 2/13
Installing : libnet-1.2-7.el9.x86_64 3/13
Installing : criu-3.19-1.el9.x86_64 4/13
Installing : criu-libs-3.19-1.el9.x86_64 5/13
Installing : yajl-2.1.0-22.el9.x86_64 6/13
Installing : crun-1.16.1-1.el9.x86_64 7/13
Installing : conmon-3:2.1.12-1.el9.x86_64 8/13
Installing : squashfs-tools-ng-libs-1.3.1-1.el9.x86_64 9/13
Installing : squashfs-tools-ng-1.3.1-1.el9.x86_64 10/13
Installing : singularity-ce-4.2.2-1.el9.x86_64 11/13
Installing : charliecloud-ohpc-0.15-300.ohpc.1.6.x86_64 12/13
Installing : ohpc-gnu14-runtimes-3.2-320.ohpc.1.1.x86_64 13/13
Running scriptlet: ohpc-gnu14-runtimes-3.2-320.ohpc.1.1.x86_64 13/13
Verifying : charliecloud-ohpc-0.15-300.ohpc.1.6.x86_64 1/13
Verifying : ohpc-gnu14-runtimes-3.2-320.ohpc.1.1.x86_64 2/13
Verifying : singularity-ce-4.2.2-1.el9.x86_64 3/13
Verifying : squashfs-tools-ng-1.3.1-1.el9.x86_64 4/13
Verifying : squashfs-tools-ng-libs-1.3.1-1.el9.x86_64 5/13
Verifying : conmon-3:2.1.12-1.el9.x86_64 6/13
Verifying : yajl-2.1.0-22.el9.x86_64 7/13
Verifying : criu-libs-3.19-1.el9.x86_64 8/13
Verifying : criu-3.19-1.el9.x86_64 9/13
Verifying : crun-1.16.1-1.el9.x86_64 10/13
Verifying : libnet-1.2-7.el9.x86_64 11/13
Verifying : fuse3-libs-3.10.2-9.el9.x86_64 12/13
Verifying : fuse3-3.10.2-9.el9.x86_64 13/13
Installed:
charliecloud-ohpc-0.15-300.ohpc.1.6.x86_64 conmon-3:2.1.12-1.el9.x86_64 criu-3.19-1.el9.x86_64 criu-libs-3.19-1.el9.x86_64 crun-1.16.1-1.el9.x86_64
fuse3-3.10.2-9.el9.x86_64 fuse3-libs-3.10.2-9.el9.x86_64 libnet-1.2-7.el9.x86_64 ohpc-gnu14-runtimes-3.2-320.ohpc.1.1.x86_64 singularity-ce-4.2.2-1.el9.x86_64
squashfs-tools-ng-1.3.1-1.el9.x86_64 squashfs-tools-ng-libs-1.3.1-1.el9.x86_64 yajl-2.1.0-22.el9.x86_64
Complete!
Last metadata expiration check: 2:40:12 ago on Tue Feb 25 07:33:36 2025.
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
ohpc-gnu14-mpich-parallel-libs x86_64 3.2-320.ohpc.1.1 OpenHPC-updates 7.3 k
Installing dependencies:
hypre-gnu14-mpich-ohpc x86_64 2.18.1-320.ohpc.2.1 OpenHPC-updates 1.8 M
mfem-gnu14-mpich-ohpc x86_64 4.4-320.ohpc.2.1 OpenHPC-updates 5.8 M
mumps-gnu14-mpich-ohpc x86_64 5.2.1-320.ohpc.2.1 OpenHPC-updates 2.2 M
opencoarrays-gnu14-mpich-ohpc x86_64 2.10.2-320.ohpc.3.1 OpenHPC-updates 87 k
petsc-gnu14-mpich-ohpc x86_64 3.18.1-320.ohpc.2.1 OpenHPC-updates 14 M
ptscotch-gnu14-mpich-ohpc x86_64 7.0.1-320.ohpc.8.1 OpenHPC-updates 4.0 M
scalapack-gnu14-mpich-ohpc x86_64 2.2.0-320.ohpc.2.1 OpenHPC-updates 2.0 M
slepc-gnu14-mpich-ohpc x86_64 3.18.0-320.ohpc.2.1 OpenHPC-updates 5.0 M
superlu_dist-gnu14-mpich-ohpc x86_64 6.4.0-320.ohpc.3.1 OpenHPC-updates 424 k
trilinos-gnu14-mpich-ohpc x86_64 13.4.0-320.ohpc.2.1 OpenHPC-updates 55 M
Transaction Summary
==============================================================================================================================================================================================================
Install 11 Packages
Total download size: 91 M
Installed size: 449 M
Downloading Packages:
(1/11): hypre-gnu14-mpich-ohpc-2.18.1-320.ohpc.2.1.x86_64.rpm 1.1 MB/s | 1.8 MB 00:01
(2/11): mumps-gnu14-mpich-ohpc-5.2.1-320.ohpc.2.1.x86_64.rpm 1.2 MB/s | 2.2 MB 00:01
(3/11): ohpc-gnu14-mpich-parallel-libs-3.2-320.ohpc.1.1.x86_64.rpm 37 kB/s | 7.3 kB 00:00
(4/11): opencoarrays-gnu14-mpich-ohpc-2.10.2-320.ohpc.3.1.x86_64.rpm 465 kB/s | 87 kB 00:00
(5/11): mfem-gnu14-mpich-ohpc-4.4-320.ohpc.2.1.x86_64.rpm 2.5 MB/s | 5.8 MB 00:02
(6/11): scalapack-gnu14-mpich-ohpc-2.2.0-320.ohpc.2.1.x86_64.rpm 4.9 MB/s | 2.0 MB 00:00
(7/11): ptscotch-gnu14-mpich-ohpc-7.0.1-320.ohpc.8.1.x86_64.rpm 3.3 MB/s | 4.0 MB 00:01
(8/11): slepc-gnu14-mpich-ohpc-3.18.0-320.ohpc.2.1.x86_64.rpm 8.0 MB/s | 5.0 MB 00:00
(9/11): superlu_dist-gnu14-mpich-ohpc-6.4.0-320.ohpc.3.1.x86_64.rpm 2.1 MB/s | 424 kB 00:00
(10/11): petsc-gnu14-mpich-ohpc-3.18.1-320.ohpc.2.1.x86_64.rpm 5.1 MB/s | 14 MB 00:02
(11/11): trilinos-gnu14-mpich-ohpc-13.4.0-320.ohpc.2.1.x86_64.rpm 5.5 MB/s | 55 MB 00:10
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 6.8 MB/s | 91 MB 00:13
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : scalapack-gnu14-mpich-ohpc-2.2.0-320.ohpc.2.1.x86_64 1/11
Installing : petsc-gnu14-mpich-ohpc-3.18.1-320.ohpc.2.1.x86_64 2/11
Installing : ptscotch-gnu14-mpich-ohpc-7.0.1-320.ohpc.8.1.x86_64 3/11
Installing : superlu_dist-gnu14-mpich-ohpc-6.4.0-320.ohpc.3.1.x86_64 4/11
Installing : hypre-gnu14-mpich-ohpc-2.18.1-320.ohpc.2.1.x86_64 5/11
Installing : mfem-gnu14-mpich-ohpc-4.4-320.ohpc.2.1.x86_64 6/11
Installing : slepc-gnu14-mpich-ohpc-3.18.0-320.ohpc.2.1.x86_64 7/11
Installing : mumps-gnu14-mpich-ohpc-5.2.1-320.ohpc.2.1.x86_64 8/11
Installing : trilinos-gnu14-mpich-ohpc-13.4.0-320.ohpc.2.1.x86_64 9/11
Installing : opencoarrays-gnu14-mpich-ohpc-2.10.2-320.ohpc.3.1.x86_64 10/11
Installing : ohpc-gnu14-mpich-parallel-libs-3.2-320.ohpc.1.1.x86_64 11/11
Verifying : hypre-gnu14-mpich-ohpc-2.18.1-320.ohpc.2.1.x86_64 1/11
Verifying : mfem-gnu14-mpich-ohpc-4.4-320.ohpc.2.1.x86_64 2/11
Verifying : mumps-gnu14-mpich-ohpc-5.2.1-320.ohpc.2.1.x86_64 3/11
Verifying : ohpc-gnu14-mpich-parallel-libs-3.2-320.ohpc.1.1.x86_64 4/11
Verifying : opencoarrays-gnu14-mpich-ohpc-2.10.2-320.ohpc.3.1.x86_64 5/11
Verifying : petsc-gnu14-mpich-ohpc-3.18.1-320.ohpc.2.1.x86_64 6/11
Verifying : ptscotch-gnu14-mpich-ohpc-7.0.1-320.ohpc.8.1.x86_64 7/11
Verifying : scalapack-gnu14-mpich-ohpc-2.2.0-320.ohpc.2.1.x86_64 8/11
Verifying : slepc-gnu14-mpich-ohpc-3.18.0-320.ohpc.2.1.x86_64 9/11
Verifying : superlu_dist-gnu14-mpich-ohpc-6.4.0-320.ohpc.3.1.x86_64 10/11
Verifying : trilinos-gnu14-mpich-ohpc-13.4.0-320.ohpc.2.1.x86_64 11/11
Installed:
hypre-gnu14-mpich-ohpc-2.18.1-320.ohpc.2.1.x86_64 mfem-gnu14-mpich-ohpc-4.4-320.ohpc.2.1.x86_64 mumps-gnu14-mpich-ohpc-5.2.1-320.ohpc.2.1.x86_64
ohpc-gnu14-mpich-parallel-libs-3.2-320.ohpc.1.1.x86_64 opencoarrays-gnu14-mpich-ohpc-2.10.2-320.ohpc.3.1.x86_64 petsc-gnu14-mpich-ohpc-3.18.1-320.ohpc.2.1.x86_64
ptscotch-gnu14-mpich-ohpc-7.0.1-320.ohpc.8.1.x86_64 scalapack-gnu14-mpich-ohpc-2.2.0-320.ohpc.2.1.x86_64 slepc-gnu14-mpich-ohpc-3.18.0-320.ohpc.2.1.x86_64
superlu_dist-gnu14-mpich-ohpc-6.4.0-320.ohpc.3.1.x86_64 trilinos-gnu14-mpich-ohpc-13.4.0-320.ohpc.2.1.x86_64
Complete!
Last metadata expiration check: 2:40:42 ago on Tue Feb 25 07:33:36 2025.
Dependencies resolved.
==============================================================================================================================================================================================================
Package Architecture Version Repository Size
==============================================================================================================================================================================================================
Installing:
ohpc-gnu14-openmpi5-parallel-libs x86_64 3.2-320.ohpc.1.1 OpenHPC-updates 7.4 k
Installing dependencies:
hypre-gnu14-openmpi5-ohpc x86_64 2.18.1-320.ohpc.1.1 OpenHPC-updates 1.8 M
mfem-gnu14-openmpi5-ohpc x86_64 4.4-320.ohpc.1.1 OpenHPC-updates 5.8 M
mumps-gnu14-openmpi5-ohpc x86_64 5.2.1-320.ohpc.1.1 OpenHPC-updates 2.2 M
opencoarrays-gnu14-openmpi5-ohpc x86_64 2.10.2-320.ohpc.2.1 OpenHPC-updates 88 k
petsc-gnu14-openmpi5-ohpc x86_64 3.18.1-320.ohpc.1.1 OpenHPC-updates 18 M
ptscotch-gnu14-openmpi5-ohpc x86_64 7.0.1-320.ohpc.7.1 OpenHPC-updates 4.0 M
scalapack-gnu14-openmpi5-ohpc x86_64 2.2.0-320.ohpc.1.1 OpenHPC-updates 2.0 M
slepc-gnu14-openmpi5-ohpc x86_64 3.18.0-320.ohpc.1.1 OpenHPC-updates 6.8 M
superlu_dist-gnu14-openmpi5-ohpc x86_64 6.4.0-320.ohpc.2.1 OpenHPC-updates 426 k
trilinos-gnu14-openmpi5-ohpc x86_64 13.4.0-320.ohpc.1.1 OpenHPC-updates 55 M
Transaction Summary
==============================================================================================================================================================================================================
Install 11 Packages
Total download size: 96 M
Installed size: 455 M
Downloading Packages:
(1/11): hypre-gnu14-openmpi5-ohpc-2.18.1-320.ohpc.1.1.x86_64.rpm 1.0 MB/s | 1.8 MB 00:01
(2/11): mumps-gnu14-openmpi5-ohpc-5.2.1-320.ohpc.1.1.x86_64.rpm 1.3 MB/s | 2.2 MB 00:01
(3/11): ohpc-gnu14-openmpi5-parallel-libs-3.2-320.ohpc.1.1.x86_64.rpm 37 kB/s | 7.4 kB 00:00
(4/11): opencoarrays-gnu14-openmpi5-ohpc-2.10.2-320.ohpc.2.1.x86_64.rpm 465 kB/s | 88 kB 00:00
(5/11): mfem-gnu14-openmpi5-ohpc-4.4-320.ohpc.1.1.x86_64.rpm 2.8 MB/s | 5.8 MB 00:02
(6/11): scalapack-gnu14-openmpi5-ohpc-2.2.0-320.ohpc.1.1.x86_64.rpm 9.1 MB/s | 2.0 MB 00:00
(7/11): ptscotch-gnu14-openmpi5-ohpc-7.0.1-320.ohpc.7.1.x86_64.rpm 6.6 MB/s | 4.0 MB 00:00
(8/11): superlu_dist-gnu14-openmpi5-ohpc-6.4.0-320.ohpc.2.1.x86_64.rpm 2.1 MB/s | 426 kB 00:00
(9/11): slepc-gnu14-openmpi5-ohpc-3.18.0-320.ohpc.1.1.x86_64.rpm 8.1 MB/s | 6.8 MB 00:00
(10/11): petsc-gnu14-openmpi5-ohpc-3.18.1-320.ohpc.1.1.x86_64.rpm 5.8 MB/s | 18 MB 00:03
(11/11): trilinos-gnu14-openmpi5-ohpc-13.4.0-320.ohpc.1.1.x86_64.rpm 7.4 MB/s | 55 MB 00:07
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total 9.5 MB/s | 96 MB 00:10
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : scalapack-gnu14-openmpi5-ohpc-2.2.0-320.ohpc.1.1.x86_64 1/11
Installing : petsc-gnu14-openmpi5-ohpc-3.18.1-320.ohpc.1.1.x86_64 2/11
Installing : ptscotch-gnu14-openmpi5-ohpc-7.0.1-320.ohpc.7.1.x86_64 3/11
Installing : superlu_dist-gnu14-openmpi5-ohpc-6.4.0-320.ohpc.2.1.x86_64 4/11
Installing : hypre-gnu14-openmpi5-ohpc-2.18.1-320.ohpc.1.1.x86_64 5/11
Installing : mfem-gnu14-openmpi5-ohpc-4.4-320.ohpc.1.1.x86_64 6/11
Installing : slepc-gnu14-openmpi5-ohpc-3.18.0-320.ohpc.1.1.x86_64 7/11
Installing : mumps-gnu14-openmpi5-ohpc-5.2.1-320.ohpc.1.1.x86_64 8/11
Installing : trilinos-gnu14-openmpi5-ohpc-13.4.0-320.ohpc.1.1.x86_64 9/11
Installing : opencoarrays-gnu14-openmpi5-ohpc-2.10.2-320.ohpc.2.1.x86_64 10/11
Installing : ohpc-gnu14-openmpi5-parallel-libs-3.2-320.ohpc.1.1.x86_64 11/11
Verifying : hypre-gnu14-openmpi5-ohpc-2.18.1-320.ohpc.1.1.x86_64 1/11
Verifying : mfem-gnu14-openmpi5-ohpc-4.4-320.ohpc.1.1.x86_64 2/11
Verifying : mumps-gnu14-openmpi5-ohpc-5.2.1-320.ohpc.1.1.x86_64 3/11
Verifying : ohpc-gnu14-openmpi5-parallel-libs-3.2-320.ohpc.1.1.x86_64 4/11
Verifying : opencoarrays-gnu14-openmpi5-ohpc-2.10.2-320.ohpc.2.1.x86_64 5/11
Verifying : petsc-gnu14-openmpi5-ohpc-3.18.1-320.ohpc.1.1.x86_64 6/11
Verifying : ptscotch-gnu14-openmpi5-ohpc-7.0.1-320.ohpc.7.1.x86_64 7/11
Verifying : scalapack-gnu14-openmpi5-ohpc-2.2.0-320.ohpc.1.1.x86_64 8/11
Verifying : slepc-gnu14-openmpi5-ohpc-3.18.0-320.ohpc.1.1.x86_64 9/11
Verifying : superlu_dist-gnu14-openmpi5-ohpc-6.4.0-320.ohpc.2.1.x86_64 10/11
Verifying : trilinos-gnu14-openmpi5-ohpc-13.4.0-320.ohpc.1.1.x86_64 11/11
Installed:
hypre-gnu14-openmpi5-ohpc-2.18.1-320.ohpc.1.1.x86_64 mfem-gnu14-openmpi5-ohpc-4.4-320.ohpc.1.1.x86_64 mumps-gnu14-openmpi5-ohpc-5.2.1-320.ohpc.1.1.x86_64
ohpc-gnu14-openmpi5-parallel-libs-3.2-320.ohpc.1.1.x86_64 opencoarrays-gnu14-openmpi5-ohpc-2.10.2-320.ohpc.2.1.x86_64 petsc-gnu14-openmpi5-ohpc-3.18.1-320.ohpc.1.1.x86_64
ptscotch-gnu14-openmpi5-ohpc-7.0.1-320.ohpc.7.1.x86_64 scalapack-gnu14-openmpi5-ohpc-2.2.0-320.ohpc.1.1.x86_64 slepc-gnu14-openmpi5-ohpc-3.18.0-320.ohpc.1.1.x86_64
superlu_dist-gnu14-openmpi5-ohpc-6.4.0-320.ohpc.2.1.x86_64 trilinos-gnu14-openmpi5-ohpc-13.4.0-320.ohpc.1.1.x86_64
Complete!
16. Section 15 of the recipe.sh script
#!/usr/bin/bash
# -----------------------------------------------------------------------------------------
# Example Installation Script Template
# This convenience script encapsulates command-line instructions highlighted in
# an OpenHPC Install Guide that can be used as a starting point to perform a local
# cluster install beginning with bare-metal. Necessary inputs that describe local
# hardware characteristics, desired network settings, and other customizations
# are controlled via a companion input file that is used to initialize variables
# within this script.
# Please see the OpenHPC Install Guide(s) for more information regarding the
# procedure. Note that the section numbering included in this script refers to
# corresponding sections from the companion install guide.
# -----------------------------------------------------------------------------------------
inputFile=${OHPC_INPUT_LOCAL:-/input.local}
if [ ! -e ${inputFile} ];then
echo "Error: Unable to access local input file -> ${inputFile}"
exit 1
else
. ${inputFile} || { echo "Error sourcing ${inputFile}"; exit 1; }
fi
# ------------------------------------
# Resource Manager Startup (Section 5)
# ------------------------------------
systemctl enable munge
systemctl enable slurmctld
systemctl start munge
systemctl start slurmctld
pdsh -w ${compute_prefix}[1-${num_computes}] systemctl start munge
pdsh -w ${compute_prefix}[1-${num_computes}] systemctl start slurmd
# Optionally, generate nhc config
pdsh -w c1 "/usr/sbin/nhc-genconf -H '*' -c -" | dshbak -c
useradd -m test
wwctl overlay build
sleep 90
The script execution output shows errors, as you can see below :
compute1: Warning: Permanently added 'compute1' (ED25519) to the list of known hosts.
compute2: Warning: Permanently added 'compute2' (ED25519) to the list of known hosts.
compute1: Permission denied, please try again.
compute2: Permission denied, please try again.
compute1: Permission denied, please try again.
compute2: Permission denied, please try again.
compute1: root@compute1: Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password).
pdsh@master-ohpc: compute1: ssh exited with exit code 255
compute2: root@compute2: Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password).
pdsh@master-ohpc: compute2: ssh exited with exit code 255
compute1: Permission denied, please try again.
compute2: Permission denied, please try again.
compute1: Permission denied, please try again.
compute1: root@compute1: Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password).
pdsh@master-ohpc: compute1: ssh exited with exit code 255
compute2: Permission denied, please try again.
compute2: root@compute2: Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password).
pdsh@master-ohpc: compute2: ssh exited with exit code 255
c1: ssh: Could not resolve hostname c1: Name or service not known
pdsh@master-ohpc: c1: ssh exited with exit code 255
Building system overlays for compute1: [wwinit]
Created image for overlay compute1/[wwinit]: /srv/warewulf/provision/overlays/compute1/__SYSTEM__.img
Compressed image for overlay compute1/[wwinit]: /srv/warewulf/provision/overlays/compute1/__SYSTEM__.img.gz
Building runtime overlays for compute1: [generic]
Created image for overlay compute1/[generic]: /srv/warewulf/provision/overlays/compute1/__RUNTIME__.img
Compressed image for overlay compute1/[generic]: /srv/warewulf/provision/overlays/compute1/__RUNTIME__.img.g
Building system overlays for compute2: [wwinit]
Created image for overlay compute2/[wwinit]: /srv/warewulf/provision/overlays/compute2/__SYSTEM__.img
Compressed image for overlay compute2/[wwinit]: /srv/warewulf/provision/overlays/compute2/__SYSTEM__.img.gz
Building runtime overlays for compute2: [generic]
Created image for overlay compute2/[generic]: /srv/warewulf/provision/overlays/compute2/__RUNTIME__.img
Compressed image for overlay compute2/[generic]: /srv/warewulf/provision/overlays/compute2/__RUNTIME__.img.g
We will proceed to resolve the errors identified :
[root@master-ohpc /]# ls -l /root/.ssh/id_rsa.pub
-rw-r--r-- 1 root root 554 Feb 10 05:38 /root/.ssh/id_rsa.pub
[root@master-ohpc /]# ssh-copy-id root@compute1
/usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub"
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already in
/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the key(s)
root@compute1's password:
Number of key(s) added: 1
Now try logging into the machine, with: "ssh 'root@compute1'"
and check to make sure that only the key(s) you wanted were added.
[root@master-ohpc /]# ssh-copy-id root@compute2
/usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub"
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already in
/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the key(s)
root@compute2's password:
Number of key(s) added: 1
Now try logging into the machine, with: "ssh 'root@compute2'"
and check to make sure that only the key(s) you wanted were added.
The user is copying their SSH public key (id_rsa.pub) from the master node (master-ohpc) to two remote compute nodes (compute1 and compute2) using the ssh-copy-id command. This sets up passwordless SSH login from the master to the compute nodes for the root user. After this setup, the user can log in via SSH without needing to enter the password.
[root@master-ohpc /]# ssh 192.168.70.51
root@192.168.70.51's password:
Last failed login: Tue Feb 25 16:37:14 CET 2025 from 192.168.70.41 on ssh:notty
There were 4 failed login attempts since the last successful login.
Last login: Tue Feb 25 16:02:39 2025 from 192.168.70.41
[root@compute1 ~]# cat /root/.ssh/authorized_keys
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA4BqobqbyAfYhDZ2avy1ALtyCxt9xURo3mh2hZj/FeUgfasyb8FERML1KMRveu9FxKz/w4Pkw
PRc9WbN6t4uB4b+4dDd3bY+GsA3tL6d8ysEkb+y8HsH4hzAe+2cpE1fxEmkgOvJo0t5zCDAbqEmsJ1Nsit3U1k9CK2ZZM3t9Gac/PRkwu
kPskAl0W2Po+C1kdoA98FrbAbh3byr9QsVaMEvLR2djHgZu0ukBeAv3t4K9Qoys1tLFSL0c0h7r4dd30sJv8NGdwqK+c2b0bf4LvkB3J
[root@compute1 ~]# exit
logout
Connection to 192.168.70.51 closed.
[root@master-ohpc /]# ssh 192.168.70.52
root@192.168.70.52's password:
Last failed login: Tue Feb 25 15:37:14 +00 2025 from 192.168.70.41 on ssh:notty
There were 4 failed login attempts since the last successful login.
Last login: Tue Feb 4 15:17:38 2025 from 192.168.70.41
[root@compute2 ~]# cat /root/.ssh/authorized_keys
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA4BqobqbyAfYhDZ2avy1ALtyCxt9xURo3mh2hZj/FeUgfasyb8FERML1KMRveu9FxKz/w4Pkw
PRc9WbN6t4uB4b+4dDd3bY+GsA3tL6d8ysEkb+y8HsH4hzAe+2cpE1fxEmkgOvJo0t5zCDAbqEmsJ1Nsit3U1k9CK2ZZM3t9Gac/PRkwu
kPskAl0W2Po+C1kdoA98FrbAbh3byr9QsVaMEvLR2djHgZu0ukBeAv3t4K9Qoys1tLFSL0c0h7r4dd30sJv8NGdwqK+c2b0bf4LvkB3J
[root@compute2 ~]# exit
logout
Connection to 192.168.70.52 closed.
In this step, the user verifies that the SSH public key has been successfully copied to the authorized_keys file on both compute nodes (192.168.70.51 and 192.168.70.52).
They connect to each node using SSH as root, check the contents of /root/.ssh/authorized_keys, and confirm that the correct public key has been added.
This ensures that passwordless SSH access is now functional from the master node to the compute nodes.
We then make changes to the /etc/ssh/sshd_config file to adjust the SSH server settings:
[root@compute2 ~]# vi /etc/ssh/sshd_config
[root@compute2 ~]# systemctl restart sshd
The following changes were made to the /etc/ssh/sshd_config file:
#LoginGraceTime 2m
PermitRootLogin yes
#StrictModes yes
#MaxAuthTries 6
# To disable tunneled clear text passwords, change to no here!
PasswordAuthentification yes
#PermitEmptyPasswords no
PubkeyAuthentication yes
# but this is overridden so installations will only chexk .ssh/authorized_keys
AuthorizedKeysFile .ssh/authorized_keys
The warning message was resolved immediately after setting PubkeyAuthentication to yes :
[root@master-ohpc /]# pdsh -w compute1 uptime
compute1: Permission denied, please try again.
compute1: Permission denied, please try again.
compute1: root@compute1: Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password).
pdsh@master-ohpc: compute1: ssh exited with exit code 255
[root@master-ohpc /]#
COMPUTE1: The content of ~/.ssh/authorized_keys is: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDb0AYq/Hv9ZDavylAIU7cXt9xuRa03m2hW2j/FeUgFasv9bEFERmL1KMReuyFxJKz/w48wSI76QlM2RPRMA0yYHgYnRpGDzSqt3wTCG6ouvqK0SlGvqZk9BowlJBltOa4nwAoty7I2hnUDTwjmMLtegTbnDvqAmh+G/Wi3RHRr0cWUO1BtbQNlx0R3oXYbAI3Q3xrl6dg3byelcky+B+sHdWaZ1e+2CpfElkm6qUw9OHlDPTZ3CCbAq0emU51nSti3UU2KC2zzMi9acFPkuwJSqeajRMTaJKYQZIIowLiMk/RyED2HinJfcjyECMIH/mIiP+1ekWVr6BRfqLL4cE+G7OTi4yQTcG/0BM/4p0KfpJl4IdbpWuYYkPSla3WO2oP+CL4dOA94FEbWAd3Ybg+qYsaVaMEGWlR2djHgAzUOUkbeAv3t4JKQ0ys1tLFISLo0h7r4dd3O5u/8NGdWqK+2cDb8f4lxKb3JI0PjHvtJg0AUAiQNk9az3rMt22PkS00=
Master (SMS): The output of cat /root/.ssh/cluster.pub is: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDLvl1s4VJ0A0SQHyGkymiARFuvSNi+tUqEJHVUGMMu1utjNmT803Q89RwzPM5B+//eLjH97Rz62tQo9PtgOmdVdk/kCgCj13AtBVaDK+jkFnXDzRW7fQXjHNPp3/CpNhuWPGMSwiVdGa6+g2NJ+HpJdsnPP/FSrRrFjyHUudUFQ9H8LgxMGQSEId4s5hLPZLFNoU3cI7uTa+yPmSLRtYJB0+W50r2n/4JIQpobX4mX+ubCsUPzlePAOVhXcZ9jXpK7Vz37zlQ7aT3nhXqbBIQexVf5SLiXeBdzxhtcM9gPSGJ+1Dxt+ppmwuvVS4Wyr5skQOIXqb2ea6Ff6SXzzZAz+zOIuz1fL280250Qy/pD7FLub3ZOq6HmpKLDycVS3if6XOHwCP/emgPBdUm2os8pSpUOtXI5xd/GP+EjGBqf4YPx59lrfArlKXcxuCQiCBmxr58zQQehQ+Y1rsPnfozi1trEq4YeSJ8/FyYhsAHevxaECOsAsmXPGte0nv1COFk= Warewulf Cluster key
Note: This is the Warewulf cluster public key.
Problem
The two public keys are not identical! This means that the compute node does not have the correct public key from the master node, which can cause authentication failures.
Solution
On the master node, run the following command to correctly copy the right key to compute1:
ssh-copy-id -i /root/.ssh/cluster.pub root@compute1
This will install the proper cluster public key on compute1.
Don’t forget to remove the old key from ~/.ssh/authorized_keys on compute1 to avoid conflicts or unauthorized access.
As a result of these modifications, the output now appears as follows:
[root@master-ohpc /]# ./recipe15.sh
compute2: Failed to start munge.service: Unit munge.service not found.
pdsh@master-ohpc: compute2: ssh exited with exit code 5
compute1: Failed to start munge.service: Unit munge.service not found.
pdsh@master-ohpc: compute1: ssh exited with exit code 5
compute1: Failed to start slurmd.service: Unit slurmd.service not found.
pdsh@master-ohpc: compute1: ssh exited with exit code 5
compute2: Failed to start slurmd.service: Unit slurmd.service not found.
pdsh@master-ohpc: compute2: ssh exited with exit code 5
c1: ssh: Could not resolve hostname c1: Name or service not known
pdsh@master-ohpc: c1: ssh exited with exit code 255
useradd: user 'test' already exists
Building system overlays for compute1: [wwinit]
Created image for overlay compute1/[wwinit]: /srv/warewulf/provision/overlays/compute1/__SYSTEM__.img
Compressed image for overlay compute1/[wwinit]: /srv/warewulf/provision/overlays/compute1/__SYSTEM__.img.gz
Building runtime overlays for compute1: [generic]
Created image for overlay compute1/[generic]: /srv/warewulf/provision/overlays/compute1/__RUNTIME__.img
Compressed image for overlay compute1/[generic]: /srv/warewulf/provision/overlays/compute1/__RUNTIME__.img.gz
Building system overlays for compute2: [wwinit]
Created image for overlay compute2/[wwinit]: /srv/warewulf/provision/overlays/compute2/__SYSTEM__.img
Compressed image for overlay compute2/[wwinit]: /srv/warewulf/provision/overlays/compute2/__SYSTEM__.img.gz
Building runtime overlays for compute2: [generic]
Created image for overlay compute2/[generic]: /srv/warewulf/provision/overlays/compute2/__RUNTIME__.img
Compressed image for overlay compute2/[generic]: /srv/warewulf/provision/overlays/compute2/__RUNTIME__.img.gz
Problem
Connection issue from the compute nodes: Network unreachable
Solution
[root@compute2 /]# ip route
169.254.1.0/24 dev idrac proto kernel scope link src 169.254.1.2 metric 101
192.168.70.0/24 dev eth2 proto kernel scope link src 192.168.70.52 metric 100
[root@compute2 /]# nmtui
[root@compute2 /]# ip route add default via 192.168.70.1
[root@compute2 /]# ip route
default via 192.168.70.1 dev eth2
169.254.1.0/24 dev idrac proto kernel scope link src 169.254.1.2 metric 101
192.168.70.0/24 dev eth2 proto kernel scope link src 192.168.70.52 metric 100
[root@compute2 /]# ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_seq=1 ttl=116 time=17.2 ms
64 bytes from 8.8.8.8: icmp_seq=2 ttl=116 time=17.0 ms
64 bytes from 8.8.8.8: icmp_seq=3 ttl=116 time=16.4 ms
64 bytes from 8.8.8.8: icmp_seq=4 ttl=116 time=16.4 ms
64 bytes from 8.8.8.8: icmp_seq=6 ttl=116 time=18.9 ms
MUNGE Installation and Keyfile Error Resolution on Compute Nodes
On each node (compute1, compute2), run the following commands:
dnf install -y munge munge-libs munge-devel
systemctl enable --now munge
Then, verify that MUNGE is working properly:
[root@compute2 ~]# systemctl status munge.service
× munge.service - MUNGE authentication service
Loaded: loaded (/usr/lib/systemd/system/munge.service; enabled; preset: disabled)
Active: failed (Result: exit-code) since Wed 2025-02-26 14:02:06 +00; 1min 47s ago
Docs: man:munged(8)
Process: 29177 ExecStart=/usr/sbin/munged (code=exited, status=1/FAILURE)
CPU: 4ms
Feb 26 14:02:05 compute2 systemd[1]: Starting MUNGE authentication service...
Feb 26 14:02:06 compute2 munged[29177]: munged: Error: Failed to check keyfile "/etc/munge/munge.key": No s>
Feb 26 14:02:06 compute2 systemd[1]: munge.service: Control process exited, code=exited, status=1/FAILURE
Feb 26 14:02:06 compute2 systemd[1]: munge.service: Failed with result 'exit-code'.
Feb 26 14:02:06 compute2 systemd[1]: Failed to start MUNGE authentication service.
Solution
[root@compute2 ~]# cd /etc/munge/
[root@compute2 munge]# ls
[root@compute2 munge]# systemctl stop munge
[root@compute2 munge]# create-munge-key
Generating a pseudo-random key using /dev/urandom completed.
[root@compute2 munge]# systemctl start munge
[root@compute2 munge]# chown munge:munge /etc/munge/munge.key
[root@compute2 munge]# chmod 0600 /etc/munge/munge.key
[root@compute2 munge]# systemctl restart munge
[root@compute2 munge]# systemctl status munge
● munge.service - MUNGE authentication service
Loaded: loaded (/usr/lib/systemd/system/munge.service; enabled; preset: disabled)
Active: active (running) since Wed 2025-02-26 14:12:30 +00; 7s ago
Docs: man:munged(8)
Process: 29320 ExecStart=/usr/sbin/munged (code=exited, status=0/SUCCESS)
Main PID: 29322 (munged)
Tasks: 4 (limit: 202700)
Memory: 1.6M
CPU: 5ms
Once MUNGE is successfully activated on both compute nodes, the resulting output is:
[root@master-ohpc /]# ./recipe15.sh
compute1: Failed to start slurmd.service: Unit slurmd.service not found.
pdsh@master-ohpc: compute1: ssh exited with exit code 5
compute2: Failed to start slurmd.service: Unit slurmd.service not found.
pdsh@master-ohpc: compute2: ssh exited with exit code 5
c1: ssh: Could not resolve hostname c1: Name or service not known
pdsh@master-ohpc: c1: ssh exited with exit code 255
useradd: user 'test' already exists
Building system overlays for compute1: [wwinit]
Created image for overlay compute1/[wwinit]: /srv/warewulf/provision/overlays/compute1/__SYSTEM__.img
Compressed image for overlay compute1/[wwinit]: /srv/warewulf/provision/overlays/compute1/__SYSTEM__.img.gz
Building runtime overlays for compute1: [generic]
Created image for overlay compute1/[generic]: /srv/warewulf/provision/overlays/compute1/__RUNTIME__.img
Compressed image for overlay compute1/[generic]: /srv/warewulf/provision/overlays/compute1/__RUNTIME__.img.gz
Building system overlays for compute2: [wwinit]
Created image for overlay compute2/[wwinit]: /srv/warewulf/provision/overlays/compute2/__SYSTEM__.img
Compressed image for overlay compute2/[wwinit]: /srv/warewulf/provision/overlays/compute2/__SYSTEM__.img.gz
Building runtime overlays for compute2: [generic]
Created image for overlay compute2/[generic]: /srv/warewulf/provision/overlays/compute2/__RUNTIME__.img
Compressed image for overlay compute2/[generic]: /srv/warewulf/provision/overlays/compute2/__RUNTIME__.img.gz
Installing and Enabling slurmd on Each Compute Node
To resolve the SLURM error, run the following commands on each compute node:
dnf install -y slurm slurm-slurmd
systemctl enable --now slurmd
systemctl status slurmd
This installs and starts the SLURM daemon (slurmd), which is required for each compute node to communicate with the SLURM controller and accept jobs.
Once slurmd is enabled and running on the compute nodes, the resulting output is:
[root@master-ohpc /]# ./recipe15.sh
c1: ssh: Could not resolve hostname c1: Name or service not known
pdsh@master-ohpc: c1: ssh exited with exit code 255
useradd: user 'test' already exists
Building system overlays for compute1: [wwinit]
Created image for overlay compute1[wwinit]: /srv/warewulf/provision/overlays/compute1/__SYSTEM__.img
Compressed image for overlay compute1[wwinit]: /srv/warewulf/provision/overlays/compute1/__SYSTEM__.img.gz
Building runtime overlays for compute1: [generic]
Created image for overlay compute1[generic]: /srv/warewulf/provision/overlays/compute1/__RUNTIME__.img
Compressed image for overlay compute1[generic]: /srv/warewulf/provision/overlays/compute1/__RUNTIME__.img.gz
Building system overlays for compute2: [wwinit]
Created image for overlay compute2[wwinit]: /srv/warewulf/provision/overlays/compute2/__SYSTEM__.img
Compressed image for overlay compute2[wwinit]: /srv/warewulf/provision/overlays/compute2/__SYSTEM__.img.gz
Building runtime overlays for compute2: [generic]
Created image for overlay compute2[generic]: /srv/warewulf/provision/overlays/compute2/__RUNTIME__.img
Compressed image for overlay compute2[generic]: /srv/warewulf/provision/overlays/compute2/__RUNTIME__.img.gz
Troubleshooting SSH Connection and Hostname Resolution Issues
- To resolve the hostname resolution error, make sure the following line is present in the /etc/hosts file on the master node:
# /etc/hosts
192.168.70.41 master-ohpc master-ohpc.cluster
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
# Do not edit after this line
# This block is autogenerated by master-ohpc
# Hosts: master-ohpc.cluster
# Time: 02-25-2025 07:33:30 EST
# Source:
# Warewulf Server
192.168.70.41 master-ohpc.cluster master-ohpc
# Entry for compute1
192.168.70.51 compute1.localdomain compute1.localdomain compute1 c1 compute1-default compute1-default
# Entry for compute2
192.168.70.52 compute2.localdomain compute2.localdomain compute2 compute2-default compute2-default
- installing the OpenHPC repository and verifying enabled repos:
[root@compute1 srv]# dnf install http://repos.openhpc.community/OpenHPC/3/EL_9/x86_64/ohpc-release-3-1.el9.x86_64.rpm
[root@compute1 ~]# dnf repolist
repo id repo name
OpenHPC OpenHPC-3 - Base
OpenHPC-updates OpenHPC-3 - Updates
appstream Rocky Linux 9 - AppStream
baseos Rocky Linux 9 - BaseOS
epel Extra Packages for Enterprise Linux 9 - x86_64
epel-cisco-openh264 Extra Packages for Enterprise Linux 9 openh264 (From Cisco) - x86_64
extras Rocky Linux 9 - Extras
- Verify that the following directory contains nhc-genconf and other components. Then, proceed to build and install Node Health Check (NHC) from source:
[root@compute1 src]# cd /usr/local/src/nhc
[root@compute1 nhc]# ls
COPYING Makefile.am autogen.sh contrib nhc nhc-wrapper scripts
ChangeLog README.md bench helpers nhc-genconf nhc.conf test
LICENSE RELEASE_NOTES.txt configure.ac lbnl-nhc.spec.in nhc-test.conf nhc.logrotate
[root@compute1 nhc]# ./autogen.sh
[root@compute1 nhc]# ./configure
[root@compute1 nhc]# make
[root@compute1 nhc]# make install
- Fix the path to nhc-genconf in recipe15.sh
Original line (incorrect path):
pdsh -w c1 "/usr/sbin/nhc-genconf -H '*' -c -" | dshbak -c
Replace it with the corrected line:
pdsh -w c1 "/usr/local/src/nhc/nhc-genconf -H '*' -c -" | dshbak -c
This ensures pdsh correctly calls the version of nhc-genconf located in the source directory, not the default system path.
After correcting the path to nhc-genconf in the script (/usr/local/src/nhc/nhc-genconf), running ./recipe15.sh now produces the following output:
c1: /usr/local/src/nhc/nhc-genconf: line 342: nhc_common_unparse_size: command not found
c1: /usr/local/src/nhc/nhc-genconf: line 346: nhc_common_unparse_size: command not found
----------------
c1
----------------
# NHC Configuration File
#
# Lines are in the form "<hostmask>||<check>"
# Hostmask is a glob, /regexp/, or {noderange}
# Comments begin with '#'
#
# This file was automatically generated by nhc-genconf
# Fri Feb 28 13:13:50 CET 2025
#
#######################################################################
###
### NHC Configuration Variables
###
# * || export MARK_OFFLINE=1 NHC_CHECK_ALL=0
#######################################################################
###
### Hardware checks
###
* || check_hw_cpuinfo
* || check_hw_physmem 3%
* || check_hw_swap 3%
#######################################################################
###
### nVidia GPU checks
###
* || check_nv_healthmon
useradd: user 'test' already exists
Building system overlays for compute1: [wwinit]
Created image for overlay compute1/[wwinit]: /srv/warewulf/provision/overlays/compute1/__SYSTEM__.img
Compressed image for overlay compute1/[wwinit]: /srv/warewulf/provision/overlays/compute1/__SYSTEM__.img.gz
Building runtime overlays for compute1: [generic]
Created image for overlay compute1/[generic]: /srv/warewulf/provision/overlays/compute1/__RUNTIME__.img
Compressed image for overlay compute1/[generic]: /srv/warewulf/provision/overlays/compute1/__RUNTIME__.img.gz
Building system overlays for compute2: [wwinit]
Created image for overlay compute2/[wwinit]: /srv/warewulf/provision/overlays/compute2/__SYSTEM__.img
Compressed image for overlay compute2/[wwinit]: /srv/warewulf/provision/overlays/compute2/__SYSTEM__.img.gz
Building runtime overlays for compute2: [generic]
Created image for overlay compute2/[generic]: /srv/warewulf/provision/overlays/compute2/__RUNTIME__.img
Compressed image for overlay compute2/[generic]: /srv/warewulf/provision/overlays/compute2/__RUNTIME__.img.gz
Resolving the error encountered during the execution of recipe15.sh:
c1: /usr/local/src/nhc/nhc-genconf: line 342: nhc_common_unparse_size: command not found c1: /usr/local/src/nhc/nhc-genconf: line 346: nhc_common_unparse_size: command not found
[root@compute1 nhc]# grep -r "nhc_common_unparse_size" /usr/local/src/nhc
/usr/local/src/nhc/scripts/common.nhc:function nhc_common_unparse_size() {
/usr/local/src/nhc/scripts/lbnl_fs.nhc: nhc_common_unparse_size $FS_SIZE FS_SIZE
/usr/local/src/nhc/scripts/lbnl_fs.nhc: nhc_common_unparse_size $MIN_SIZE MIN_SIZE
/usr/local/src/nhc/scripts/lbnl_fs.nhc: nhc_common_unparse_size $FS_SIZE FS_SIZE
/usr/local/src/nhc/scripts/lbnl_fs.nhc: nhc_common_unparse_size $MAX_SIZE MAX_SIZE
/usr/local/src/nhc/scripts/lbnl_fs.nhc: nhc_common_unparse_size $FS_FREE FS_FREE
/usr/local/src/nhc/scripts/lbnl_fs.nhc: nhc_common_unparse_size $MIN_FREE MIN_FREE
/usr/local/src/nhc/scripts/lbnl_fs.nhc: nhc_common_unparse_size $FS_FREE FS_FREE
/usr/local/src/nhc/scripts/lbnl_fs.nhc: nhc_common_unparse_size $FS_USED FS_USED
/usr/local/src/nhc/scripts/lbnl_fs.nhc: nhc_common_unparse_size $MAX_USED MAX_USED
/usr/local/src/nhc/scripts/lbnl_fs.nhc: nhc_common_unparse_size $FS_USED FS_USED
/usr/local/src/nhc/scripts/lbnl_ps.nhc: nhc_common_unparse_size ${PS_RSS[$THIS_PID]} NUM
/usr/local/src/nhc/scripts/lbnl_ps.nhc: nhc_common_unparse_size $THRESHOLD LIM
/usr/local/src/nhc/scripts/lbnl_ps.nhc: nhc_common_unparse_size ${PS_VSZ[$THIS_PID]} NUM
/usr/local/src/nhc/scripts/lbnl_ps.nhc: nhc_common_unparse_size $THRESHOLD LIM
/usr/local/src/nhc/test/test_common.nhc: is "`type -t nhc_common_unparse_size 2>&1`" 'function' 'nhc_common_unparse_size() loaded properly'
/usr/local/src/nhc/test/test_common.nhc: nhc_common_unparse_size $OSIZE NSIZE
/usr/local/src/nhc/test/test_common.nhc: is "$NSIZE" "1024EB" "nhc_common_unparse_size(): $OSIZE -> 1024EB"
/usr/local/src/nhc/test/test_common.nhc: nhc_common_unparse_size $OSIZE NSIZE
/usr/local/src/nhc/test/test_common.nhc: is "$NSIZE" "1EB" "nhc_common_unparse_size(): $OSIZE -> 1EB"
/usr/local/src/nhc/test/test_common.nhc: nhc_common_unparse_size $OSIZE NSIZE
/usr/local/src/nhc/test/test_common.nhc: is "$NSIZE" "1023PB" "nhc_common_unparse_size(): $OSIZE -> 1023PB"
/usr/local/src/nhc/test/test_common.nhc: nhc_common_unparse_size $OSIZE NSIZE
/usr/local/src/nhc/test/test_common.nhc: is "$NSIZE" "64TB" "nhc_common_unparse_size(): $OSIZE -> 64TB"
/usr/local/src/nhc/test/test_common.nhc: nhc_common_unparse_size $OSIZE NSIZE
/usr/local/src/nhc/test/test_common.nhc: is "$NSIZE" "4GB" "nhc_common_unparse_size(): $OSIZE -> 4GB"
/usr/local/src/nhc/test/test_common.nhc: nhc_common_unparse_size $OSIZE NSIZE
/usr/local/src/nhc/test/test_common.nhc: is "$NSIZE" "1023MB" "nhc_common_unparse_size(): $OSIZE -> 1023MB"
/usr/local/src/nhc/test/test_common.nhc: nhc_common_unparse_size $OSIZE NSIZE
/usr/local/src/nhc/test/test_common.nhc: is "$NSIZE" "1MB" "nhc_common_unparse_size(): $OSIZE -> 1MB"
/usr/local/src/nhc/test/test_common.nhc: nhc_common_unparse_size $OSIZE NSIZE
/usr/local/src/nhc/test/test_common.nhc: is "$NSIZE" "1000kB" "nhc_common_unparse_size(): $OSIZE -> 1000kB"
/usr/local/src/nhc/test/test_common.nhc: nhc_common_unparse_size $OSIZE NSIZE 1024 ERR
/usr/local/src/nhc/test/test_common.nhc: is "$NSIZE" "1GB" "nhc_common_unparse_size(): $OSIZE -> 1GB with 51MB error (size)"
/usr/local/src/nhc/test/test_common.nhc: is "$ERR" "51" "nhc_common_unparse_size(): $OSIZE -> 1GB with 51MB error (error)"
/usr/local/src/nhc/test/test_common.nhc: nhc_common_unparse_size $OSIZE NSIZE 1024 ERR
/usr/local/src/nhc/test/test_common.nhc: is "$NSIZE" "1177GB" "nhc_common_unparse_size(): $OSIZE -> 1177GB (1.15TB) with 0GB error (size)"
/usr/local/src/nhc/test/test_common.nhc: is "$ERR" "0" "nhc_common_unparse_size(): $OSIZE -> 1177GB (1.15TB) with 0GB error (error)"
/usr/local/src/nhc/test/test_common.nhc: nhc_common_unparse_size $OSIZE NSIZE 1024 ERR
/usr/local/src/nhc/test/test_common.nhc: is "$NSIZE" "1536GB" "nhc_common_unparse_size(): $OSIZE -> 1536GB (1.5TB) with 0GB error (size)"
/usr/local/src/nhc/test/test_common.nhc: is "$ERR" "0" "nhc_common_unparse_size(): $OSIZE -> 1536GB (1.5TB) with 0GB error (error)"
/usr/local/src/nhc/test/test_common.nhc: nhc_common_unparse_size $OSIZE NSIZE 1024 ERR
/usr/local/src/nhc/test/test_common.nhc: is "$NSIZE" "1792kB" "nhc_common_unparse_size(): $OSIZE -> 1792kB (1.75MB) with 0kB error (size)"
/usr/local/src/nhc/test/test_common.nhc: is "$ERR" "0" "nhc_common_unparse_size(): $OSIZE -> 1792kB (1.75MB) with 0kB error (error)"
/usr/local/src/nhc/test/test_common.nhc: nhc_common_unparse_size $OSIZE NSIZE 1024 ERR
/usr/local/src/nhc/test/test_common.nhc: is "$NSIZE" "2PB" "nhc_common_unparse_size(): $OSIZE -> 2PB (1.99PB) with 11TB error (size)"
/usr/local/src/nhc/test/test_common.nhc: is "$ERR" "11" "nhc_common_unparse_size(): $OSIZE -> 2PB (1.99PB) with 11TB error (error)"
/usr/local/src/nhc/nhc-genconf: nhc_common_unparse_size $HW_RAM_TOTAL HW_RAM_TOTAL 1024 ERR
/usr/local/src/nhc/nhc-genconf: nhc_common_unparse_size $HW_SWAP_TOTAL HW_SWAP_TOTAL 1024 ERR
[root@compute1 nhc]# source /usr/local/src/nhc/scripts/common.nhc
[root@compute1 nhc]# cd /usr/local/src/nhc/scripts/
[root@compute1 scripts]# ls
common.nhc lbnl_cmd.nhc lbnl_file.nhc lbnl_hw.nhc lbnl_moab.nhc lbnl_nv.nhc
csc_nvidia_smi.nhc lbnl_dmi.nhc lbnl_fs.nhc lbnl_job.nhc lbnl_net.nhc lbnl_ps.nhc
[root@compute1 scripts]# nhc_common_unparse_size 1024 RAM_SIZE
The output after executing recipe15.sh is now:
pdsh@master-ohpc: /rc/recipets.sh
c1: /usr/local/src/nhc/scripts/common.nhc: line 528: die: command not found
pdsh@master-ohpc: c1: ssh exited with exit code 1
c1
################################################################################
# NHC Configuration File
#
# Lines are in the form "<hostmask>|<check>"
# Hostmask is a glob, /regex/, or !nodenameg
# Comments begin with "#"
#
# This file was automatically generated by nhc-genconf
# Fri Feb 28 13:36:30 CET 2025
################################################################################
## NHC Configuration Variables
## || export MARK_OFFLINE=1 NHC_CHECK_ALL=0
################################################################################
# Hardware checks
################################################################################
* || check_hw_cpuinfo
useradd: user 'test' already exists
Building system overlays for compute1: [wninit]
Created image for overlay compute1/[wninit]: /srv/warewulf/provision/overlays/compute1/__SYSTEM__.img
Compressed image for overlay compute1/[wninit]: /srv/warewulf/provision/overlays/compute1/__SYSTEM__.img.gz
Created image for overlay compute1/[generic]: /srv/warewulf/provision/overlays/compute1/__RUNTIME__.img
Compressed image for overlay compute1/[generic]: /srv/warewulf/provision/overlays/compute1/__RUNTIME__.img.g
Building system overlays for compute2: [wninit]
Created image for overlay compute2/[wninit]: /srv/warewulf/provision/overlays/compute2/__SYSTEM__.img
Compressed image for overlay compute2/[wninit]: /srv/warewulf/provision/overlays/compute2/__SYSTEM__.img.gz
Created image for overlay compute2/[generic]: /srv/warewulf/provision/overlays/compute2/__RUNTIME__.img
Compressed image for overlay compute2/[generic]: /srv/warewulf/provision/overlays/compute2/__RUNTIME__.img.g
################################################################################
Resolving the error encountered during the execution of recipe15.sh:
The error shown in the output c1: /usr/local/src/nhc/scripts/common.nhc: line 528: die: command not found
means that the die function or command used in the common.nhc script is not defined or accessible at runtime.
The die function is commonly used in scripts to stop execution and display an error message. If it’s not defined, this kind of error may occur.
The die function should be defined somewhere in the script itself or in another sourced file. You should search for its definition in common.nhc or other related files.
If the function is missing (which is our case), you can add it at the end of the common.nhc file as follows, to terminate execution with an error message:
die() {
echo “$1”
exit 1
}
[root@compute1 ~]# cd /usr/local/src/nhc/scripts/
[root@compute1 scripts]# vi common.nhc
# Find system definition for UID range
function nhc_common_get_max_sys_uid() {
local LINE UID_MIN SYS_UID_MAX
MAX_SYS_UID=${MAX_SYS_UID:-99}
if [[ -e "$LOGIN_DEFS_SRC" ]]; then
while read LINE ; do
if [[ "${LINE#UID_MIN}" != "$LINE" ]]; then
UID_MIN=${LINE//[!0-9]/}
elif [[ "${LINE#UID_MAX}" != "$LINE" ]]; then
SYS_UID_MAX=${LINE//[!0-9]/}
break
fi
done < "$LOGIN_DEFS_SRC"
if [[ -n "$SYS_UID_MAX" ]]; then
MAX_SYS_UID=$((SYS_UID_MAX+0))
fi
if [[ -n "$UID_MIN" ]]; then
UID_MIN=$((UID_MIN-1))
fi
if (( MAX_SYS_UID <= 0 )); then
MAX_SYS_UID=99
fi
return 0
else
return 1
fi
}
die() {
echo "$1"
exit 1
}
The output after executing recipe15.sh is now:
pdsh@master-ohpc: c1: ssh exited with exit code 1
----------------
c1
----------------
# NHC Configuration File
#
# Lines are in the form "<hostmask>||<check>"
# Hostmask is a glob, /regexp/, or {noderange}
# Comments begin with '#'
#
# This file was automatically generated by nhc-genconf
# Fri Feb 28 13:40:37 CET 2025
#
#######################################################################
###
### NHC Configuration Variables
###
# * || export MARK_OFFLINE=1 NHC_CHECK_ALL=0
#######################################################################
###
### Hardware checks
###
* || check_hw_cpuinfo
1
useradd: user 'test' already exists
Building system overlays for compute1: [wwinit]
Created image for overlay compute1/[wwinit]: /srv/warewulf/provision/overlays/compute1/__SYSTEM__.img
Compressed image for overlay compute1/[wwinit]: /srv/warewulf/provision/overlays/compute1/__SYSTEM__.img.gz
Building runtime overlays for compute1: [generic]
Created image for overlay compute1/[generic]: /srv/warewulf/provision/overlays/compute1/__RUNTIME__.img
Compressed image for overlay compute1/[generic]: /srv/warewulf/provision/overlays/compute1/__RUNTIME__.img.g z
Building system overlays for compute2: [wwinit]
Created image for overlay compute2/[wwinit]: /srv/warewulf/provision/overlays/compute2/__SYSTEM__.img
Compressed image for overlay compute2/[wwinit]: /srv/warewulf/provision/overlays/compute2/__SYSTEM__.img.gz
Building runtime overlays for compute2: [generic]
Created image for overlay compute2/[generic]: /srv/warewulf/provision/overlays/compute2/__RUNTIME__.img
Compressed image for overlay compute2/[generic]: /srv/warewulf/provision/overlays/compute2/__RUNTIME__.img.g z
Checking that the script runs correctly
Enabling and Starting Services (munge, slurmctld, and slurmd)
The script uses systemctl to enable and start the necessary services (munge and slurmctld) on the master node and on the compute nodes via pdsh.
Verification:
Ensure that the services are successfully started on the master node and compute nodes.
Use systemctl status to verify that the services are running:
systemctl status munge
[root@master-ohpc ~]# systemctl status munge
● munge.service - MUNGE authentication service
Loaded: loaded (/usr/lib/systemd/system/munge.service; enabled; preset: disabled)
Active: active (running) since Wed 2025-02-12 05:13:09 EST; 2 weeks 4 days ago
Docs: man:munged(8)
Main PID: 3279213 (munged)
Tasks: 1 (limit: 48899)
Memory: 4.1M
CPU: 2.229s
CGroup: /system.slice/munge.service
└─3279213 /usr/sbin/munged
Feb 28 07:36:29 master-ohpc.cluster systemd[1]: /usr/lib/systemd/system/munge.service:10: PIDFile= reference...
Feb 28 07:36:29 master-ohpc.cluster systemd[1]: /usr/lib/systemd/system/munge.service:10: PIDFile= reference...
Feb 28 08:09:22 master-ohpc.cluster systemd[1]: /usr/lib/systemd/system/munge.service:10: PIDFile= reference...
Feb 28 08:09:22 master-ohpc.cluster systemd[1]: /usr/lib/systemd/system/munge.service:10: PIDFile= reference...
Feb 28 08:09:22 master-ohpc.cluster systemd[1]: /usr/lib/systemd/system/munge.service:10: PIDFile= reference...
systemctl status slurmctld
[root@master-ohpc ~]# systemctl status slurmctld
● slurmctld.service - Slurm controller daemon
Loaded: loaded (/usr/lib/systemd/system/slurmctld.service; enabled; preset: disabled)
Active: active (running) since Wed 2025-02-12 05:29:09 EST; 2 weeks 4 days ago
Main PID: 2305503 (slurmctld)
Tasks: 8 (limit: 48899)
Memory: 23.1M
CPU: 2min 21.800s
CGroup: /system.slice/slurmctld.service
└─2305503 /usr/sbin/slurmctld -D
Feb 12 05:29:09 master-ohpc.cluster slurmctld[2305503]: slurmctld: error: slurm_set_addr: Unable to resolve "compute2"
Feb 12 05:29:09 master-ohpc.cluster slurmctld[2305503]: slurmctld: error: slurm_set_addr: Address family not supported
Feb 12 05:29:09 master-ohpc.cluster slurmctld[2305503]: slurmctld: error: get_node_addrs: Address to compute2
Feb 12 05:29:09 master-ohpc.cluster slurmctld[2305503]: slurmctld: error: slurm_set_addr: Unable to resolve "compute3"
Feb 12 05:29:09 master-ohpc.cluster slurmctld[2305503]: slurmctld: error: slurm_set_addr: Address family not supported
Feb 12 05:29:09 master-ohpc.cluster slurmctld[2305503]: slurmctld: error: get_node_addrs: Address to compute3
Feb 12 05:29:09 master-ohpc.cluster slurmctld[2305503]: slurmctld: Recovered state of 0 reservations
Feb 12 05:29:09 master-ohpc.cluster slurmctld[2305503]: slurmctld: slurmctld: backfill scheduling
Feb 12 05:29:09 master-ohpc.cluster slurmctld[2305503]: slurmctld: select/cons_tres: prof_cnt = 0
Feb 12 05:29:09 master-ohpc.cluster slurmctld[2305503]: slurmctld: Running as primary controller
Fixing the reported problems
- Node Address Configuration Missing in slurm.conf
The configuration in slurm.conf defines the nodes compute1 and compute2, but it lacks explicit IP address declarations (NodeAddr). Since slurmctld is reporting a resolution issue for compute2, it is likely that it cannot resolve its address.
Manually add the IP address of each node in /etc/slurm/slurm.conf on master-ohpc:
NodeName=compute1 NodeAddr=192.168.70.51 Sockets=2 CoresPerSocket=12 ThreadsPerCore=2 State=UNKNOWN
NodeName=compute2 NodeAddr=192.168.70.52 Sockets=2 CoresPerSocket=12 ThreadsPerCore=2 State=UNKNOWN
Then reload the configuration and restart Slurm:
systemctl restart slurmctld
systemctl restart slurmd
- Create the Log File Manually
If the log file /var/log/slurmctld.log is missing:
touch /var/log/slurmctld.log
chown slurm:slurm /var/log/slurmctld.log
chmod 644 /var/log/slurmctld.log
Check if the /var/log/slurm/ directory exists:
ls -ld /var/log/slurm
If it doesn’t exist, create it:
mkdir -p /var/log/slurm
chown slurm:slurm /var/log/slurm
chmod 755 /var/log/slurm
Restart slurmctld to test:
systemctl restart slurmctld
systemctl status slurmctld
- Reset Node States via scontrol
Use the following commands to reset the states of compute nodes:
scontrol update NodeName=compute1 State=DRAIN Reason="Manual reset"
scontrol update NodeName=compute2 State=DRAIN Reason="Manual reset"
scontrol update NodeName=compute1 State=DOWN Reason="Reset"
scontrol update NodeName=compute2 State=DOWN Reason="Reset"
scontrol update NodeName=compute1 State=RESUME
scontrol update NodeName=compute2 State=RESUME
- Add MemoryEnforce=YES in slurm.conf
To enforce memory limits, add the following line to /etc/slurm/slurm.conf on master-ohpc:
MemoryEnforce=YES
and now the output of systemctl status slurmctld as follow :
[root@master-ohpc ~]# systemctl status slurmctld
● slurmctld.service - Slurm controller daemon
Loaded: loaded (/usr/lib/systemd/system/slurmctld.service; enabled; preset: disabled)
Active: active (running) since Mon 2025-03-03 04:50:39 EST; 7min ago
Main PID: 3871952 (slurmctld)
Tasks: 5
Memory: 5.4M
CPU: 95ms
CGroup: /system.slice/slurmctld.service
└─3871952 /usr/sbin/slurmctld -D
Mar 03 04:57:15 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute1 reason set to *
Mar 03 04:57:15 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute1 state set to DRAINED*
Mar 03 04:57:15 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute2 reason set to *
Mar 03 04:57:15 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute2 state set to DRAINED*
Mar 03 04:57:18 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute1 state set to DOWN*
Mar 03 04:57:18 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute2 state set to DOWN*
Mar 03 04:57:21 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute1 state set to IDLE
Mar 03 04:57:21 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute2 state set to IDLE
-- More -- (ctrl-C pour quitter)
[root@master-ohpc ~]# systemctl status slurmctld
● slurmctld.service - Slurm controller daemon
Loaded: loaded (/usr/lib/systemd/system/slurmctld.service; enabled; preset: disabled)
Active: active (running) since Mon 2025-03-03 04:50:39 EST; 7min ago
Main PID: 3871952 (slurmctld)
Tasks: 5
Memory: 5.4M
CPU: 95ms
CGroup: /system.slice/slurmctld.service
└─3871952 /usr/sbin/slurmctld -D
Mar 03 04:57:15 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute1 reason set to: Manual reset
Mar 03 04:57:15 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute1 state set to DRAINED*
Mar 03 04:57:15 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute2 reason set to: Manual reset
Mar 03 04:57:15 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute2 state set to DRAINED*
Mar 03 04:57:18 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute1 state set to DOWN*
Mar 03 04:57:18 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute2 state set to DOWN*
Mar 03 04:57:21 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute1 state set to IDLE
Mar 03 04:57:21 master-ohpc.cluster slurmctld[3871952]: slurmctld: update_node: node compute2 state set to IDLE
Verification of the pdsh command
Let’s check this with the following commands:
[root@master-ohpc /]# pdsh -w 192.168.70.51 systemctl status munge
192.168.70.51: ● munge.service - MUNGE authentication service
192.168.70.51: Loaded: loaded (/usr/lib/systemd/system/munge.service; enabled; preset: disabled)
192.168.70.51: Active: active (running) since Tue 2025-03-04 12:02:13 CET; 7min ago
192.168.70.51: Docs: man:munged(8)
192.168.70.51: Process: 140959 ExecStart=/usr/sbin/munged (code=exited, status=0/SUCCESS)
192.168.70.51: Main PID: 140961 (munged)
192.168.70.51: Tasks: 4 (limit: 202700)
192.168.70.51: Memory: 1.4M
192.168.70.51: CPU: 76ms
192.168.70.51: CGroup: /system.slice/munge.service
192.168.70.51: └─140961 /usr/sbin/munged
192.168.70.51: Mar 04 12:02:13 compute1 systemd[1]: Starting MUNGE authentication service...
192.168.70.51: Mar 04 12:02:13 compute1 systemd[1]: Started MUNGE authentication service.
[root@master-ohpc /]# pdsh -w c1 systemctl status slurmd
c1: ● slurmd.service - Slurm node daemon
c1: Loaded: loaded (/usr/lib/systemd/system/slurmd.service; enabled; preset: disabled)
c1: Active: active (running) since Tue 2025-03-04 12:03:08 CET; 7min ago
c1: Main PID: 141050 (slurmd)
c1: Tasks: 2
c1: Memory: 4.2M
c1: CPU: 78ms
c1: CGroup: /system.slice/slurmd.service
c1: └─141050 /usr/sbin/slurmd -D -s
c1: Mar 04 12:03:08 compute1 systemd[1]: Started Slurm node daemon.
c1: Mar 04 12:03:08 compute1 slurmd[141050]: slurmd: slurmd version 22.05.0 started
c1: Mar 04 12:03:08 compute1 slurmd[141050]: slurmd: Started on Tue, 04 Mar 2025 12:03:08
c1: Mar 04 12:03:08 compute1 slurmd[141050]: slurmd: CPUs=1 Boards=1 Sockets=1 Cores=1 Threads=1 Memory=3172s TmpDisk=17616 Uptime=504933 CPUSpecList=CPU Procs=1
c1: yes=(null)
[root@master-ohpc /]#
However, this command fails when executed from the nodes :
[root@compute1 ~]# pdsh -w c2 systemctl status munge
pdsh@compute1: c2: connect: Connection refused
[root@compute1 ~]# pdsh -w 192.168.70.52 systemctl status munge
pdsh@compute1: 192.168.70.52: connect: Connection refused
Solution :
[root@compute1 ~]# echo $PDSH_RCMD_TYPE
[root@compute1 ~]# export PDSH_RCMD_TYPE=ssh
[root@compute1 ~]# echo $PDSH_RCMD_TYPE
ssh
[root@compute1 ~]# echo "export PDSH_RCMD_TYPE=ssh" >> ~/.bashrc
source ~/.bashrc
[root@compute1 ~]# pdsh -w 192.168.70.52 systemctl status munge
No such rcmd module "ssh"
[root@compute1 ~]# exit
logout
Connection to c1 closed.
[root@master-ohpc /]# ssh c2
Last login: Tue Mar 4 11:03:20 2025 from 192.168.70.41
[root@compute2 ~]# export PDSH_RCMD_TYPE=ssh
[root@compute2 ~]# echo "export PDSH_RCMD_TYPE=ssh" >> ~/.bashrc
source ~/.bashrc
[root@compute2 ~]# pdsh -w c1 systemctl status munge
No such rcmd module "ssh"
[root@compute2 ~]# exit
logout
Connection to c2 closed.
[root@master-ohpc /]# ssh c1
Last login: Tue Mar 4 12:14:40 2025 from 192.168.70.41
[root@compute1 ~]# pdsh -w 192.168.70.52 systemctl status munge
No such rcmd module "ssh"
[root@compute1 ~]# pdsh -L
2 modules loaded:
Module: rcmd/exec
Author: Mark Grondona <mgrondona@llnl.gov>
Descr: arbitrary command rcmd connect method
Active: yes
Module: rcmd/rsh
Author: Jim Garlick <garlick@llnl.gov>
Descr: BSD rcmd connect method
Active: yes
[root@compute1 ~]# yum install pdsh-rcmd-ssh -y
Last metadata expiration check: 2:45:17 ago on Tue Mar 4 09:35:01 2025.
Dependencies resolved.
===============================================================================================
Package Architecture Version Repository Size
===============================================================================================
Installing:
pdsh-rcmd-ssh x86_64 2.34-7.el9 epel 13 k
Transaction Summary
===============================================================================================
Install 1 Package
Total download size: 13 k
Installed size: 15 k
Downloading Packages:
pdsh-rcmd-ssh-2.34-7.el9.x86_64.rpm 140 kB/s | 13 kB 00:00
-----------------------------------------------------------------------------------------------
Total 6.6 kB/s | 13 kB 00:01
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : pdsh-rcmd-ssh-2.34-7.el9.x86_64 1/1
Running scriptlet: pdsh-rcmd-ssh-2.34-7.el9.x86_64 1/1
Verifying : pdsh-rcmd-ssh-2.34-7.el9.x86_64 1/1
Installed:
pdsh-rcmd-ssh-2.34-7.el9.x86_64
Complete!
[root@compute1 ~]# pdsh -L
3 modules loaded:
Module: rcmd/exec
Author: Mark Grondona <mgrondona@llnl.gov>
Descr: arbitrary command rcmd connect method
Active: yes
Module: rcmd/rsh
Author: Jim Garlick <garlick@llnl.gov>
Descr: BSD rcmd connect method
Active: yes
Module: rcmd/ssh
Author: Jim Garlick <garlick@llnl.gov>
Descr: ssh based rcmd connect method
Active: yes
[root@compute1 ~]# exit
logout
Connection to c1 closed.
[root@master-ohpc /]# ssh c2
Last login: Tue Mar 4 11:17:47 2025 from 192.168.70.41
[root@compute2 ~]# yum install pdsh-rcmd-ssh -y
Last metadata expiration check: 0:13:40 ago on Tue Mar 4 11:07:02 2025.
Dependencies resolved.
===============================================================================================
Package Architecture Version Repository Size
===============================================================================================
Installing:
pdsh-rcmd-ssh x86_64 2.34-7.el9 epel 13 k
Transaction Summary
===============================================================================================
Install 1 Package
Total download size: 13 k
Installed size: 15 k
Downloading Packages:
pdsh-rcmd-ssh-2.34-7.el9.x86_64.rpm 1.3 MB/s | 13 kB 00:00
-----------------------------------------------------------------------------------------------
Total 1.1 kB/s | 13 kB 00:12
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : pdsh-rcmd-ssh-2.34-7.el9.x86_64 1/1
Running scriptlet: pdsh-rcmd-ssh-2.34-7.el9.x86_64 1/1
Verifying : pdsh-rcmd-ssh-2.34-7.el9.x86_64 1/1
Installed:
pdsh-rcmd-ssh-2.34-7.el9.x86_64
Complete!
[root@compute2 ~]# pdsh -L
3 modules loaded:
Module: rcmd/exec
Author: Mark Grondona <mgrondona@llnl.gov>
Descr: arbitrary command rcmd connect method
Active: yes
Module: rcmd/rsh
Author: Jim Garlick <garlick@llnl.gov>
Descr: BSD rcmd connect method
Active: yes
Module: rcmd/ssh
Author: Jim Garlick <garlick@llnl.gov>
Descr: ssh based rcmd connect method
Active: yes
after that, we got this :
[root@compute2 ~]# pdsh -w c1 systemctl status munge
c1: Host key verification failed.
pdsh@compute2: c1: ssh exited with exit code 255
Solution :
If the private key is missing, you can generate a new SSH key pair on compute1 (do the same on compute2).
[root@compute1 ~]# ssh-keygen -t rsa -b 2048 -f /root/.ssh/id_rsa
This command will generate a new private key (id_rsa) and a public key (id_rsa.pub) in the /root/.ssh/ directory.
Enter passphrase (empty for no passphrase):
When you’re prompted to enter a passphrase, you can choose to leave it empty if you don’t want a password for the private key.
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa
Your public key has been saved in /root/.ssh/id_rsa.pub
The key fingerprint is:
SHA256:0oTKoULuoyFHKGqBGY5zkrdfu7q8h4bNcZHGOHJrOHQ root@compute1
The key's randomart image is:
+---[RSA 2048]----+
| |
| . |
|.. .o... |
|*=ooEo=o |
|@===o+..S |
|+B+.+ .. |
|++o* +. |
|+ooo=... |
|. .*=o. |
+----[SHA256]-----+
[root@compute1 ~]# cat /root/.ssh/id_rsa.pub
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHsEf13pu9VL1pPi7RVyL3R2PujKG76Fr2wdy5B92aw9gfh0FYknnoyCr58U3wkUmcCatT+PRdIj02q2UELpjnnwTJLFXNZG2FSmg14cgW8wC3CI0Hrb/EAuTSJYk/vkAiYFzVNS6UHaclA30o1NaJ/8D9iSECdtbEOuRJP+dSnZ3VJG0Now7S+NBtsCRMW491Sj3qxsyUFl8tZNxNMrdlFdwkPK9gPUynwq+a5fpm0ZUYRdjioRbcTvyVoQLn2j37NZfUafbMn5uv/IHAmoTVph+WwZ3GsYVyYzoYV1RXmUPjnSved4NU7RW7lAltk5F4S1Y4UiN3WLLR/eocr+Lh root@compute1
After generating the new key pair, you will need to copy the public key (/root/.ssh/id_rsa.pub) to ~/.ssh/authorized_keys on compute1 under the root user.
[root@compute1 ~]# exit
logout
Connection to c1 closed.
[root@compute2 ~]# vi ~/.ssh/authorized_keys
Copy this key, then connect to compute2 and add the public key to the ~/.ssh/authorized_keys file.
[root@compute2 ~]# exit
logout
Connection to c2 closed.
[root@master-ohpc /]# ssh c1
Last login: Tue Mar 4 13:46:51 2025 from 192.168.70.52
[root@compute1 ~]# ssh c2
Last login: Tue Mar 4 12:46:10 2025 from 192.168.70.41
[root@compute2 ~]# ssh c1
Last login: Tue Mar 4 13:49:31 2025 from 192.168.70.41
[root@compute1 ~]# pdsh -w c2 systemctl status munge
c2: ● munge.service - MUNGE authentication service
c2: Loaded: loaded (/usr/lib/systemd/system/munge.service; enabled; preset: disabled)
c2: Active: active (running) since Tue 2025-03-04 11:02:24 +00; 1h 47min ago
c2: Docs: man:munged(8)
c2: Process: 124785 ExecStart=/usr/sbin/munged (code=exited, status=0/SUCCESS)
c2: Main PID: 124787 (munged)
c2: Tasks: 4 (limit: 202700)
c2: Memory: 1.7M
c2: CPU: 28ms
c2: CGroup: /system.slice/munge.service
c2: └─124787 /usr/sbin/munged
c2:
c2: Mar 04 11:02:24 compute2 systemd[1]: Starting MUNGE authentication service...
c2: Mar 04 11:02:24 compute2 systemd[1]: Started MUNGE authentication service.
[root@master-ohpc /]# pdsh -w c1 systemctl status munge
c1: ● munge.service - MUNGE authentication service
c1: Loaded: loaded (/usr/lib/systemd/system/munge.service; enabled; preset: disabled)
c1: Active: active (running) since Tue 2025-03-04 12:02:13 CET; 7min ago
c1: Docs: man:munged(8)
c1: Process: 140959 ExecStart=/usr/sbin/munged (code=exited, status=0/SUCCESS)
c1: Main PID: 140961 (munged)
c1: Tasks: 4 (limit: 202700)
c1: Memory: 1.4M
c1: CPU: 76ms
c1: CGroup: /system.slice/munge.service
c1: └─140961 /usr/sbin/munged
c1: Mar 04 12:02:13 compute1 systemd[1]: Starting MUNGE authentication service...
c1: Mar 04 12:02:13 compute1 systemd[1]: Started MUNGE authentication service.
[root@master-ohpc /]# pdsh -w c1 systemctl status slurmd
c1: ● slurmd.service - Slurm node daemon
c1: Loaded: loaded (/usr/lib/systemd/system/slurmd.service; enabled; preset: disabled)
c1: Active: active (running) since Tue 2025-03-04 12:03:08 CET; 7min ago
c1: Main PID: 141050 (slurmd)
c1: Tasks: 2
c1: Memory: 4.2M
c1: CPU: 78ms
c1: CGroup: /system.slice/slurmd.service
c1: └─141050 /usr/sbin/slurmd -D -s
c1: Mar 04 12:03:08 compute1 systemd[1]: Started Slurm node daemon.
c1: Mar 04 12:03:08 compute1 slurmd[141050]: slurmd: slurmd version 22.05.0 started
c1: Mar 04 12:03:08 compute1 slurmd[141050]: slurmd: Started on Tue, 04 Mar 2025 12:03:08
c1: Mar 04 12:03:08 compute1 slurmd[141050]: slurmd: CPUs=1 Boards=1 Sockets=1 Cores=1 Threads=1 Memory=3172s TmpDisk=17616 Uptime=504933 CPUSpecList=CPU Procs=1
c1: yes=(null)
[root@master-ohpc /]#
**Verification: pdsh -w c1 “/usr/local/src/nhc/nhc-genconf -H ’*’ -c -’“**
Make sure the nhc-genconf command runs without errors on c1.
[root@master-ohpc ~]# pdsh -w c1 "/usr/local/src/nhc/nhc-genconf -H '*' -c -"
c1: # NHC Configuration File
c1: #
c1: # Lines are read in order; the first matching line is used.
c1: # Comments are ignored. Use '#' for comments.
c1: # Hostmask is a glob, /regexp/, or (noderange)
c1: # Comments begin with '#'
c1: #
c1: # This file was automatically generated by nhc-genconf
c1: # Wed Mar 05 13:44:42 CET 2025
c1: #
c1:
c1: ################################################################################
c1: ###
c1: ### NHC Configuration Variables
c1: ###
c1: #* || export MARK_OFFLINE=1 NHC_CHECK_ALL=0
c1:
c1: ################################################################################
c1: ###
c1: ### Hardware checks
c1: ###
c1: * || check_hw_cpuinfo
c1:
pdsh@master-ohpc: c1: ssh exited with exit code 1
It appears that the file check_hw_cpuinfo is indeed missing on compute1, which may explain the previous errors. This file is essential for the proper functioning of NHC hardware checks. To download the nhc-genconf file from GitHub: https://github.com/mej/nhc/blob/master/nhc-genconf. Download the file from the command line:
Use the wget or curl command to download the file directly from the command line. wget https://raw.githubusercontent.com/mej/nhc/master/nhc-genconf -O /usr/local/src/nhc/nhc-genconf
[root@compute1 src]# wget https://raw.githubusercontent.com/mej/nhc/master/nhc-genconf -O /usr/local/src/nhc/nhc-genconf
--2025-03-05 15:19:22-- https://raw.githubusercontent.com/mej/nhc/master/nhc-genconf
Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.110.133, ...
Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 16594 (16K) [text/plain]
Saving to: '/usr/local/src/nhc/nhc-genconf'
/usr/local/src/nhc/nhc- 100%[==============================>] 16.21K --.-KB/s in 0.004s
2025-03-05 15:19:22 (3.64 MB/s) - '/usr/local/src/nhc/nhc-genconf' saved [16594/16594]
[root@compute1 src]# cd /usr/local/src/nhc/
[root@compute1 nhc]# ls
COPYING Makefile.in automate.cache configure.ac lbnl-nhc.spec.in nhc-wrapper
README helpers branch contrib missing nhc.conf
README.md LICENSE.txt config.log install.sh nhc nhc.cron
aclocal.m4 automate.sh configure scripts nhc-genconf nhc.logrotate
Makefile autogen.sh configure.deps install.sh nhc-wrapper.conf test.nhc
for both nodes :
[root@master-ohpc ~]# pdsh -w c1 "/usr/local/src/nhc/nhc-genconf -H '*' -c -"
c1: # NHC Configuration File
c1: #
c1: # Lines are in the form "<hostmask>||<check>"
c1: # Hostmask is a glob, /regexp/, or {noderange}
c1: # Comments begin with '#'
c1: #
c1: # This file was automatically generated by nhc-genconf
c1: # Wed Mar 5 15:21:09 CET 2025
c1: #
c1:
c1: #######################################################################
c1: ###
c1: ### NHC Configuration Variables
c1: ###
c1: # * || export MARK_OFFLINE=1 NHC_CHECK_ALL=0
c1:
c1:
c1: #######################################################################
c1: ###
c1: ### DMI Checks
c1: ###
c1: # * || check_dmi_data_match -h 0x0000 -t 0 "BIOS Information: Version: 1.5.1"
c1: # * || check_dmi_data_match -h 0x0100 -t 1 "System Information: Version: Not Specified"
c1: # * || check_dmi_data_match -h 0x0200 -t 2 "Base Board Information: Version: A02"
c1: # * || check_dmi_data_match -h 0x0300 -t 3 "Chassis Information: Version: Not Specified"
c1: # * || check_dmi_data_match -h 0x0400 -t 4 "Processor Information: Version: Intel(R) Xeon(R) E-2356G CPU @ 3.20GHz"
c1: # * || check_dmi_data_match -h 0x0400 -t 4 "Processor Information: Max Speed: 4000 MHz"
c1: # * || check_dmi_data_match -h 0x0400 -t 4 "Processor Information: Current Speed: 3200 MHz"
c1: # * || check_dmi_data_match -h 0x0700 -t 7 "Cache Information: Speed: Unknown"
c1: # * || check_dmi_data_match -h 0x0701 -t 7 "Cache Information: Speed: Unknown"
c1: # * || check_dmi_data_match -h 0x0702 -t 7 "Cache Information: Speed: Unknown"
c1: # * || check_dmi_data_match -h 0x1100 -t 17 "Memory Device: Speed: 3200 MT/s"
c1: # * || check_dmi_data_match -h 0x1100 -t 17 "Memory Device: Configured Memory Speed: 3200 MT/s"
c1: # * || check_dmi_data_match -h 0x1100 -t 17 "Memory Device: Firmware Version: Not Specified"
c1: # * || check_dmi_data_match -h 0x1101 -t 17 "Memory Device: Speed: 3200 MT/s"
c1: # * || check_dmi_data_match -h 0x1101 -t 17 "Memory Device: Configured Memory Speed: 3200 MT/s"
c1: # * || check_dmi_data_match -h 0x1101 -t 17 "Memory Device: Firmware Version: Not Specified"
c1: # * || check_dmi_data_match -h 0x2600 -t 38 "IPMI Device Information: Specification Version: 2.0"
c1: # * || check_dmi_data_match -h 0x0001 -t 43 "TPM Device: Specification Version: 2.0"
c1: # * || check_dmi_data_match -h 0x0001 -t 43 "TPM Device: Description: TPM 2.0, ManufacturerID: NTC , Firmware Version: 0x00070002.0x0"
c1:
c1:
c1: #######################################################################
c1: ###
c1: ### Filesystem checks
c1: ###
c1: * || check_fs_mount_rw -t "proc" -s "proc" -f "/proc"
c1: * || check_fs_mount_rw -t "sysfs" -s "sysfs" -f "/sys"
c1: * || check_fs_mount_rw -t "devtmpfs" -s "devtmpfs" -f "/dev"
c1: * || check_fs_mount_rw -t "securityfs" -s "securityfs" -f "/sys/kernel/security"
c1: * || check_fs_mount_rw -t "tmpfs" -s "tmpfs" -f "/dev/shm"
c1: * || check_fs_mount_rw -t "devpts" -s "devpts" -f "/dev/pts"
c1: * || check_fs_mount_rw -t "tmpfs" -s "tmpfs" -f "/run"
c1: * || check_fs_mount_rw -t "pstore" -s "pstore" -f "/sys/fs/pstore"
c1: * || check_fs_mount_rw -t "efivarfs" -s "efivarfs" -f "/sys/firmware/efi/efivars"
c1: * || check_fs_mount_rw -t "bpf" -s "bpf" -f "/sys/fs/bpf"
c1: * || check_fs_mount_rw -t "xfs" -s "/dev/mapper/rl-root" -f "/"
c1: * || check_fs_mount_rw -t "selinuxfs" -s "selinuxfs" -f "/sys/fs/selinux"
c1: * || check_fs_mount_rw -t "hugetlbfs" -s "hugetlbfs" -f "/dev/hugepages"
c1: * || check_fs_mount_rw -t "mqueue" -s "mqueue" -f "/dev/mqueue"
c1: * || check_fs_mount_rw -t "debugfs" -s "debugfs" -f "/sys/kernel/debug"
c1: * || check_fs_mount_rw -t "tracefs" -s "tracefs" -f "/sys/kernel/tracing"
c1: * || check_fs_mount_rw -t "fusectl" -s "fusectl" -f "/sys/fs/fuse/connections"
c1: * || check_fs_mount_rw -t "configfs" -s "configfs" -f "/sys/kernel/config"
c1: * || check_fs_mount_ro -t "ramfs" -s "none" -f "/run/credentials/systemd-sysctl.service"
c1: * || check_fs_mount_ro -t "ramfs" -s "none" -f "/run/credentials/systemd-tmpfiles-setup-dev.service"
c1: * || check_fs_mount_rw -t "xfs" -s "/dev/sda2" -f "/boot"
c1: * || check_fs_mount_rw -t "vfat" -s "/dev/sda1" -f "/boot/efi"
c1: * || check_fs_mount_rw -t "xfs" -s "/dev/mapper/rl-home" -f "/home"
c1: * || check_fs_mount_ro -t "ramfs" -s "none" -f "/run/credentials/systemd-tmpfiles-setup.service"
c1: * || check_fs_mount_rw -t "tracefs" -s "tracefs" -f "/sys/kernel/debug/tracing"
c1: * || check_fs_mount_rw -t "tmpfs" -s "tmpfs" -f "/run/user/0"
c1: * || check_fs_used /dev 90%
c1: * || check_fs_used /sys/firmware/efi/efivars 90%
c1: * || check_fs_used / 90%
c1: * || check_fs_free /boot 40MB
c1: * || check_fs_used /boot/efi 90%
c1: * || check_fs_used /home 90%
c1: * || check_fs_iused /dev 100%
c1: * || check_fs_iused / 100%
c1: * || check_fs_iused /boot 100%
c1: * || check_fs_iused /home 98%
c1:
c1:
c1: #######################################################################
Creation of TEST55 on compute1 from the master node.
[root@master-ohpc /]# pdsh -w c1 "useradd -m test55"
[root@master-ohpc /]# ssh c1
Last login: Wed Mar 5 14:51:13 2025 from 192.168.70.41
[root@compute1 ~]# id test55
uid=1002(test55) gid=1002(test55) groups=1002(test55)
[root@compute1 ~]#