mounting a uif dvd image

2007-10-20 Thread Aryeh M. Friedman
I have a uif dvd image that I want to mount how do I do this (or convert
to ISO).
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: mounting a uif dvd image

2007-10-20 Thread Bruce Cran

Aryeh M. Friedman wrote:

I have a uif dvd image that I want to mount how do I do this (or convert
to ISO).


You can do this by using mdconfig and mount_udf (which is called by 
'mount').  First, create a md device:


mdconfig -a -t vnode -f /path/to/dvd_image

This will create a /dev/mdX device, which you can then mount with:

mount -t udf /dev/mdX /path/to/mount/dir

--
Bruce Cran
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: mounting a uif dvd image

2007-10-20 Thread Bruce Cran

Bruce Cran wrote:

Aryeh M. Friedman wrote:

I have a uif dvd image that I want to mount how do I do this (or convert
to ISO).


You can do this by using mdconfig and mount_udf (which is called by 
'mount').  First, create a md device:


mdconfig -a -t vnode -f /path/to/dvd_image

This will create a /dev/mdX device, which you can then mount with:

mount -t udf /dev/mdX /path/to/mount/dir



Sorry just realised it's UIF format, not UDF.  I don't know how you'd 
convert it to something you can use in FreeBSD, like UDF.


--
Bruce Cran
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]