2 Comments
Apr 2Liked by Richard

Thank you Richard. This is very helpful

Expand full comment

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