Skip to content
Snippets Groups Projects
Commit 4f3c7b55 authored by Norman Koch's avatar Norman Koch
Browse files

added x86 to virtual_machine_tools.md

parent c08e82c3
No related branches found
No related tags found
3 merge requests!392Merge preview into contrib guide for browser users,!387Merge preview into main,!380Resolve "Singularity - VM-Tools auch für x86"
......@@ -35,14 +35,19 @@ in which case you'd need to change that when moving to ZIH systems.
## Build a Singularity Container in a Job
To build a Singularity container on ZIH systems simply run:
To build a Singularity container for the power9-architecture on ZIH systems simply run:
```console
marie@login$ buildSingularityImage --arch=power9 myContainer.sif myDefinition.def
```
This command will submit a batch job and immediately return. Note that while Power9 is currently
the only supported architecture, the parameter is still required. If you want it to block while the
To build a singularity image on the x86-architecture, run:
```console
marie@login$ buildSingularityImage --arch=x86 myContainer.sif myDefinition.def
```
These commands will submit a batch job and immediately return. If you want it to block while the
image is built and see live output, add the option `--interactive`:
```console
......@@ -99,12 +104,18 @@ needs to be re-generated on every script run.
## Start a Job in a VM
Especially when developing a Singularity definition file it might be useful to get a shell directly
on a VM. To do so simply run:
on a VM. To do so on the power9-architecture, simply run:
```console
startInVM --arch=power9
```
To do so on the x86-architecture, run:
```console
startInVM --arch=x86
```
This will execute an `srun` command with the `--cloud=kvm` parameter, wait till the VM is ready,
mount all folders (just like `buildSingularityImage`, see the Filesystem section above) and come
back with a bash inside the VM. Inside that you are root, so you can directly execute `singularity
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment