Обсуждение статьи тематического каталога: как смонтировать ISO image (cdrom iso_image mount freebsd )Ссылка на текст статьи: http://www.opennet.me/base/sys/mountcd.txt.html
a kak naschet russkih imen na iso9660?
a kak naschet russkih imen na iso9660?
man mount_cd9660
Во FreeBSD 6.2 надо делать так:# монтирование
mdconfig -a -t vnode -f filename.iso -n 0
mount_cd9660 /dev/md0 folder# размонтирование
umount folder
mdconfig -d -u 0
Большое спасибо
To create an md(4) device out of an ISO 9660 CD image file (-a and -t
vnode are implied), using the first available md(4) device, and then
mount the new memory disk:mount -t cd9660 /dev/`mdconfig -f cdimage.iso` /mnt