|
Mount a file (iso) under FreeBSD |
|
|
Monday, 05 May 2008 |
|
How to Mount a file (iso) under FreeBSD 5.x and higher versions ---------------------------------------------------------------------------------------- You can mount an iso file or a file that contain a partition recovered with dd using:
mdconfig -a -f file.iso -u md0 # -t vnode mount -t cd9660 /dev/md0 /mnt/recover
After you've recovered/copied data from that file, you will release the memory device with:
umount /mnt/recover mdconfig -d -u md0 If the image is .udf format mount the image using: mount -t udf /dev/md0 /mnt/recover
|
|
Last Updated ( Friday, 14 October 2011 )
|