Hdiutil files case sensitivity changing in ISO

210 Views Asked by At

Running this command to create an iso on macOS:

hdiutil makehybrid -o ~/Desktop/test.iso ~/Documents/files/ -iso

When mounting the iso all files in the directory are in upper case.

How can I stop case-sensitivity from changing with this command?

1

There are 1 best solutions below

0
On BEST ANSWER

As suggested by Mark Setchell: the addition of -joliet:

hdiutil makehybrid -o ~/Desktop/test.iso ~/Documents/files/ -joliet -iso

Maintains case sensitivity when creating the iso.