3 Comments

Here is a a CLI method to create the new MacOS volume

```bash

#!/bin/zsh

ImageName=linuxbuild

ImageNameExt=${ImageName}.sparseimage

diskutil umount force /Volumes/${ImageName} && true

rm -f ${ImageNameExt} && true

hdiutil create ${ImageName} -volname ${ImageName} -type SPARSE -size 12g -fs HFSX

hdiutil mount ${ImageNameExt}

cd /Volumes/$ImageName

```

Expand full comment

Thanks, that’s most useful!

Expand full comment

Thank you Richard. This is very helpful

Expand full comment