From Beocat
Revision as of 10:00, 11 February 2024 by Mozes (talk | contribs) (Created page with "== OS Change == Soon we'll be switching our Operating System from CentOS 7 to Rocky Linux 9. === Accessing the testbed === We have provided two new head nodes <tt>helios</tt> and <tt>clymene</tt>. Once you have logged into beocat, you can access them with ssh. e.g. <tt>ssh helios</tt> They will be setup much the same way as our previous head nodes were, with access to the module command. The modules we have available under Rocky Linux 9 are available as a searchable l...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

OS Change

Soon we'll be switching our Operating System from CentOS 7 to Rocky Linux 9.

Accessing the testbed

We have provided two new head nodes helios and clymene.

Once you have logged into beocat, you can access them with ssh. e.g. ssh helios

They will be setup much the same way as our previous head nodes were, with access to the module command. The modules we have available under Rocky Linux 9 are available as a searchable list [here https://modules.beocat.ksu.edu/rocky9/]

To submit jobs to the new operating system, we have provided a new constraint so that you are able to request the OS variant. CentOS 7 hosts have the feature os_el7, while the Rocky Linux 9 hosts provide the feature os_el9.

You would use the following in a job script to tell the scheduler that you would like the new OS:

#SBATCH -C os_el9

Using old software

Below is a script that will execute a container with all of the public software we provide under CentOS 7 from the head nodes. There may be versions of GPU-related packages missing.

#!/bin/bash
# This script is a wrapper for our CentOS 7 based container.
# You would use it something like this:
# sbatch -C os_el9 /opt/beocat/containers/beocat_centos-7.9.wrapper.sh ./R-hello_world.sh

# Note that you would need to provide an appropriate path for the script to to execute
# under the contained environnment (either a full path or a relative path), and the script
# would need to be executable.

# This is meant to be a stopgap measure for those that may be reliant on older software
# that we will not or cannot provide under our new operating system.

singularity exec /opt/beocat/containers/beocat_centos-7.9.sif /bin/bash -l <<EOF
${@}
EOF

If you would prefer, you could put the singularity exec lines in your script, with the commands you would like to run between the <<EOF and EOF sections.