Mount .iso File on FreeBSD

Create folder if it doesn’t exist:

# mkdir /mnt/cdrom

Create memory disk device:

# mdconfig -a -t vnode -f file.iso -u 0

There will be /dev/md0 device.
Mount device md0:

# mount -t cd9660 /dev/md0 /mnt/cdrom
Finish.
To unmount:

# umount /mnt/cdrom
# mdconfig -d -u 0

Filed Under: BSDGeneralOpen SourceTutorial

RSSComments (0)

Trackback URL

Leave a Reply




If you want a picture to show with your comment, go get a Gravatar.