I have a disk image file containing several file systems such as HFS (Journaled) in addition to Joliet or UDF. I want to install any file system other than HFS. First, I attach the image without installing:
$ hdiutil attach -nomount path / to / image.iso
/ dev / disk3 Apple_partition_scheme
/ dev / disk3s1 Apple_partition_map
/ dev / disk3s2 Apple_HFS
Then the man page for mount seems to say that I can mount non-HFS file systems, such as:
$ mount -a -t nohfs / dev / disk3s2 / tmp
But the answer
mount: exec / System / Library / Filesystems / nohfs.fs / Contents / Resources / mount_nohfs for / private / tmp: no such file or directory
which sounds like it just doesn’t understand the documented no prefix for file system types that you don’t want to mount. Is there a way to make this work, or should I know which specific file system I want to install?
EDIT: Would anyone like to explain negative voices and close voices?
source share