Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hpc-compendium
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ZIH
hpcsupport
hpc-compendium
Commits
4f3c7b55
Commit
4f3c7b55
authored
3 years ago
by
Norman Koch
Browse files
Options
Downloads
Patches
Plain Diff
added x86 to virtual_machine_tools.md
parent
c08e82c3
No related branches found
No related tags found
3 merge requests
!392
Merge preview into contrib guide for browser users
,
!387
Merge preview into main
,
!380
Resolve "Singularity - VM-Tools auch für x86"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc.zih.tu-dresden.de/docs/software/virtual_machines_tools.md
+15
-4
15 additions, 4 deletions
...zih.tu-dresden.de/docs/software/virtual_machines_tools.md
with
15 additions
and
4 deletions
doc.zih.tu-dresden.de/docs/software/virtual_machines_tools.md
+
15
−
4
View file @
4f3c7b55
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment