Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created October 7, 2019 01:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/09aadc74b6feaf69e65ab87709c0559a to your computer and use it in GitHub Desktop.
Save ryantm/09aadc74b6feaf69e65ab87709c0559a to your computer and use it in GitHub Desktop.
/nix/store/kvjhmgd2g9knk033rr9szpwi7l59pkfd-charliecloud-0.11
├── bin
│   ├── ch-build
│   ├── ch-build2dir
│   ├── ch-builder2tar
│   ├── ch-checkns
│   ├── ch-dir2squash
│   ├── ch-docker2squash
│   ├── ch-fromhost
│   ├── ch-grow
│   ├── ch-mount
│   ├── ch-pull2dir
│   ├── ch-pull2tar
│   ├── ch-run
│   ├── ch-run-oci
│   ├── ch-ssh
│   ├── ch-tar2dir
│   ├── ch-tar2squash
│   └── ch-umount
├── lib
│   └── charliecloud
│   ├── base.sh
│   └── version.sh
└── share
├── charliecloud
│   ├── examples
│   │   ├── mpi
│   │   │   ├── lammps
│   │   │   │   ├── Dockerfile
│   │   │   │   ├── melt.patch
│   │   │   │   └── test.bats
│   │   │   ├── mpibench
│   │   │   │   ├── Dockerfile.mpich
│   │   │   │   ├── Dockerfile.openmpi
│   │   │   │   ├── test.bats
│   │   │   │   └── test.sh
│   │   │   ├── mpihello
│   │   │   │   ├── Dockerfile.mpich
│   │   │   │   ├── Dockerfile.openmpi
│   │   │   │   ├── hello.c
│   │   │   │   ├── Makefile
│   │   │   │   ├── slurm.sh
│   │   │   │   └── test.bats
│   │   │   └── paraview
│   │   │   ├── cone.2ranks.vtk
│   │   │   ├── cone.nranks.vtk
│   │   │   ├── cone.png
│   │   │   ├── cone.py
│   │   │   ├── cone.serial.vtk
│   │   │   ├── Dockerfile
│   │   │   └── test.bats
│   │   ├── other
│   │   │   └── spark
│   │   │   ├── Dockerfile
│   │   │   ├── slurm.sh
│   │   │   └── test.bats
│   │   └── serial
│   │   ├── hello
│   │   │   ├── Dockerfile
│   │   │   ├── hello.sh
│   │   │   ├── README
│   │   │   └── test.bats
│   │   ├── obspy
│   │   │   ├── Dockerfile
│   │   │   ├── README
│   │   │   └── test.bats
│   │   └── spack
│   │   ├── Dockerfile
│   │   └── test.bats
│   └── test
│   ├── bin -> ../../../bin
│   ├── build_auto.bats
│   ├── build.bats
│   ├── Build.centos7xz
│   ├── Build.ch-build2dir
│   ├── Build.ch-pull2dir
│   ├── Build.ch-pull2tar
│   ├── Build.missing
│   ├── build_post.bats
│   ├── Build.skopeo-umoci
│   ├── chtest
│   │   ├── bind_priv.py
│   │   ├── Build
│   │   ├── chroot-escape.c
│   │   ├── dev_proc_sys.py
│   │   ├── fs_perms.py
│   │   ├── Makefile
│   │   ├── mknods.c
│   │   ├── printns
│   │   ├── setgroups.c
│   │   ├── setuid.c
│   │   └── signal_out.py
│   ├── common.bash
│   ├── Dockerfile.alpine39
│   ├── Dockerfile.alpineedge
│   ├── Dockerfile.argenv
│   ├── Dockerfile.centos6
│   ├── Dockerfile.centos7
│   ├── Dockerfile.debian9
│   ├── Dockerfile.exhaustive
│   ├── Dockerfile.mpich
│   ├── Dockerfile.nvidia
│   ├── Dockerfile.openmpi
│   ├── Dockerfile.python3
│   ├── Dockerfile.ubuntu1604
│   ├── Docker_Pull.alpine39_dp
│   ├── docs-sane
│   ├── dont-init-ucx-on-intel-cray.patch
│   ├── make-auto
│   ├── Makefile
│   ├── make-perms-test
│   ├── run
│   │   ├── build-rpms.bats
│   │   ├── ch-fromhost.bats
│   │   ├── ch-run_escalated.bats
│   │   ├── ch-run_isolation.bats
│   │   ├── ch-run_join.bats
│   │   ├── ch-run_misc.bats
│   │   ├── ch-run_uidgid.bats
│   │   └── ch-tar2dir.bats
│   ├── run_auto.bats
│   ├── run_first.bats
│   └── sotest
│   ├── bin
│   │   └── sotest
│   ├── files_inferrable.txt
│   ├── lib
│   │   └── libsotest.so.1.0
│   ├── libsotest.c
│   ├── libsotest.so -> ./libsotest.so.1.0
│   ├── libsotest.so.1 -> ./libsotest.so.1.0
│   ├── libsotest.so.1.0
│   ├── sotest
│   └── sotest.c
└── doc
└── charliecloud-0.11
├── LICENSE
└── README.rst
26 directories, 111 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment