Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 407 Bytes

File metadata and controls

11 lines (7 loc) · 407 Bytes

Write into a Singularity Container

Try writing into the sandbox container you created earlier. You will do this by logging in as root, so you might be prompted for your password:

sudo singularity shell --writable ubuntu

Create a "test" file in the root directory and view its contents

Singularity> echo "my test file" > /test
Singularity> cat /test
my test file