The only difference to Apple is that you need to make the ISO file into special DMG file and upload that. Now we make only a small difference to this procedure to get it working with Apple computers, namely converting the ISO into special format usually labelled with DMG or just IMG. This so far is very close to working with distros such as Ubuntu here. $ sudo diskutil umount /Volumes/UNTITLED\ 1/ Now you know the address to be something like /Volumes/disk1s1 and for the mount-point like /Volumes/Untitled 1 but Apple requires some syntactic sugar in $ sudo umount /Volumes/UNTITLED\ 1/ umount(/Volumes/UNTITLED 1): Resource busy - try 'diskutil unmount' but it won't stop us! So everything as one-liners below, enjoy! $ sudo watch -interval=1 'dmesg|tail'
You can find the Debian-style-/dev/sdb location after $ sudo port install watch and then getting the address from the kernel ring buffer with $ sudo watch -interval=1 'dmesg|tail' so