HOW TO MAKE AUDIOLINUX USB STICK FROM MAC

1) Go with Finder to the same location where you have downloaded the image and open a terminal

2) Now we check that the image is not corrupted with
shasum -a 256 audiolinux_360.img.gz

3) Let's see the location of your drives with
diskutil list

4) If your drive is /dev/disk2 (please check carefully, the disk will be erased!) we must unmount it with
diskutil unmountDisk /dev/disk2

5) Now you can copy the image with
gunzip -c audiolinux_360.img.gz | sudo dd of=/dev/disk2 bs=1M status=progress
If the image is automatically extracted at download, you should use this:
dd if=audiolinux_mini_360.img of=/dev/disk2 bs=1M
status=progress

This can take some time on MAC...