Switch to a new operating system
What is changing
Gradually, more and more nodes are being migrated to Rocky Linux 9. As soon as the migration is completeits-cs10 can no longer be used to submit jobs.
Some of the centrally provided software modules, which you can retrieve via the module avail command, have already been installed for Rocky Linux 9. Therefore, please check in good time whether the software you need for your work is already available on its-cs1.
Your tasks
- Software test: Log in to its-cs1.its.uni-kassl.de and test your applications and workflows. Your own programs will probably have to be reinstalled. Especially programs that use MPI internally must be recompiled in order to run under the currently installed version.
- Provide feedback: If you notice that something is missing or not working as expected, please get in touch. For queries or to request additional software, please write to ttsclust[at]uni-kassel[dot]de.
We ask for your help to make the transition as smooth as possible. Thank you for your support and understanding!
Script query Operating system
If you have scripts that are to perform different actions under both operating systems, you can use this to query which type of node you are on:
| if grep -q rocky /etc/os-release; then os=rocky elif grep -q centos /etc/os-release; then os=centos else echo "ERROR: No OS discovert" exit 1 fi |
Module system
Due to the changeover to Rocky Linux 9, many software packages have been installed in newer versions. Slurm scripts must therefore be adapted to the new module names, which you can view with module avail.
Please note: Previous adjustments to the shell environment that were necessary under CentOS 7 (e.g. to make modules visible) are no longer required under Rocky Linux 9. Therefore, remove old workarounds or modifications in your login environment. The new module system works directly and without additional tricks.