DISQUS

Tech-Recipes: Mounting ISO images under freebsd | FreeBSD | Tech-Recipes

  • Michilimackinac · 3 years ago
    In FreeBSD 5.x things have changed, images are mounted as memory disks:

    Configure memory disk:
    <font color="green">
    $ mdconfig -a -t vnode -f image.iso
    </font>
    Mount the memory disk:
    <font color="green">
    $ mount -r -t cd9660 /dev/md0 /mnt
    </font>
    Clear the memory disk:
    <font color="green">
    $ mdconfig -d -u md0
    </font>