Mount an iso image

Digging around in the handbook (and other sources), I was finally able to mount an iso. In linux, it seems simpler mount -o loop myiso.iso /mnt or somesuch, is this really the simplest method:

Code:
mdconfig -a -t vnode -f myiso.iso -u 0
mount -t cd9660 /dev/md0 /mnt
 
Back
Top