Compatibility Tool

From ScientificComputing
Revision as of 08:29, 24 July 2024 by Lhausammann (talk | contribs) (Created page with "== Compatibility Tool == A compatibility tool is available in order to run centos software on ubuntu. You can have an interactive shell by calling <tt>run-centos7</tt>. This...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Compatibility Tool

A compatibility tool is available in order to run centos software on ubuntu. You can have an interactive shell by calling run-centos7. This command can be run with arguments that will be executed by bash (e.g. run-centos7 hostname).

If you need to run something in a script (e.g. through the batch system):

 run-centos7 <<EOF
 module load intel
 cd xxx
 ./my-software
 EOF