Ask a Question related to FreeBSD, Design and Development.
-
T.F. Cheng #1
extract iso image
hi, I am not sure if I am doing the right thing. I
want to extract an downloaded isoimage by first
mounting it. I tried: mount -t iso9660 -o loop
image.iso /mnt but turns out I don't have
mount_iso9660 under /sbin, only mount_cd9660. Is there
any other way to do this? I am running
freebsd5.3/i386. Thanks!
=====
Best Regards,
Tsu-Fan Cheng
__________________________________________________ _______
Do You Yahoo!?
µn°O§K¶Oªº @yahoo.com ¤¤¤å¹q¤l¶l¥ó @ [url]http://chinese.mail.yahoo.com[/url]
Get your free @yahoo.com address at [url]http://chinese.mail.yahoo.com[/url]
T.F. Cheng Guest
-
Extract Image from ByteArray
Hi, If i have a byteArray of an image, how do i make a displayable Image I can load it using a Loader.loadBytes but then i cant display that... -
Extract Image to Tiff
This question is concerning the Adobe Acrobat software for windows. I am trying to extract a pdf to a tiff. The pdf is only one page, however, when... -
Extract the first page of a PDF as an image?
I'm trying to find some software (free, shareware, or commercial) that extract the first page of a PDF (whether it's an image or not) and render it... -
Extract Image
Is there an application that will extract an embedded image for OS X. There used to be one in OS 9. -
How to extract preview image from jpegs
Does anyone know how to extract the embedded preview image from a .jpg file? I would like to import the extracted images into a castLib, instead of... -
Michael C. Shultz #2
Re: extract iso image
On Tuesday 22 February 2005 05:14 pm, T.F. Cheng wrote:
Look in the handbook under optical drives.> hi, I am not sure if I am doing the right thing. I
> want to extract an downloaded isoimage by first
> mounting it. I tried: mount -t iso9660 -o loop
> image.iso /mnt but turns out I don't have
> mount_iso9660 under /sbin, only mount_cd9660. Is there
> any other way to do this? I am running
> freebsd5.3/i386. Thanks!
>
>
> =====
> Best Regards,
>
> Tsu-Fan Cheng
>
[url]http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-cds.html[/url]
Michael C. Shultz Guest
-
Mike Hauber #3
Re: extract iso image
On Tuesday 22 February 2005 08:14 pm, T.F. Cheng wrote:
I could be doing things the hard way, but I thought you had to> hi, I am not sure if I am doing the right thing. I
> want to extract an downloaded isoimage by first
> mounting it. I tried: mount -t iso9660 -o loop
> image.iso /mnt but turns out I don't have
> mount_iso9660 under /sbin, only mount_cd9660. Is there
> any other way to do this? I am running
> freebsd5.3/i386. Thanks!
>
>
> =====
> Best Regards,
>
> Tsu-Fan Cheng
>
first configure the md? For instance, I pulled the following
commands from history (just recently upgraded my firewall):
mdconfig -a -t vnode -f /dat1/ISO/obsd_36.iso -u 0
mount_cd9660 /dev/md0 /mnt
HTH,
Mike
Mike Hauber Guest
-
David Kelly #4
Re: extract iso image
On Feb 22, 2005, at 7:14 PM, T.F. Cheng wrote:
Is my best guess you have been reading Linux docs to have tried a> hi, I am not sure if I am doing the right thing. I
> want to extract an downloaded isoimage by first
> mounting it. I tried: mount -t iso9660 -o loop
> image.iso /mnt but turns out I don't have
> mount_iso9660 under /sbin, only mount_cd9660. Is there
> any other way to do this? I am running
> freebsd5.3/i386. Thanks!
"loop" option to mount in FreeBSD. Isn't done that way here.
What you have to do is create a memory disk which is backed by a file.
Maybe someone else knows how to do it as non-root:
% su
Password:
# mdconfig -a -t vnode -o readonly -f dvd_image.iso
md0
# mount -t cd9660 /dev/md0 /mnt
# ls -CF /mnt
audio_ts/ jacket_p/ video_ts/
# umount /mnt
# mdconfig -d -u md0
# mdconfig -l
#
What happens is that mdconfig creates the md0 device which contains the
contents of the specified file. Once the file is turned into a device
it can be handled same as any other device.
Be sure to deallocate the device after you are finished as Unix doesn't
release a file's space allocation until the last process closes it.
--
David Kelly N4HHE, [email]dkelly@HiWAAY.net[/email]
================================================== ======================
Whom computers would destroy, they must first drive mad.
David Kelly Guest
-
Loren M. Lang #5
Re: extract iso image
On Wed, Feb 23, 2005 at 09:14:25AM +0800, T.F. Cheng wrote:
Linux calls it iso9660, FreeBSD calls is cd9660, same thing.> hi, I am not sure if I am doing the right thing. I
> want to extract an downloaded isoimage by first
> mounting it. I tried: mount -t iso9660 -o loop
> image.iso /mnt but turns out I don't have
> mount_iso9660 under /sbin, only mount_cd9660. Is there
> any other way to do this? I am running
> freebsd5.3/i386. Thanks!
The freebsd command that does the same thing is as follows:
mount -t cd9660 /dev/`mdconfig -a -t image.iso` /mnt
-->
>
> =====
> Best Regards,
>
> Tsu-Fan Cheng
>
> __________________________________________________ _______
> Do You Yahoo!?
> ?n?O?K?O?? @yahoo.com ?????q?l?l?? @ [url]http://chinese.mail.yahoo.com[/url]
> Get your free @yahoo.com address at [url]http://chinese.mail.yahoo.com[/url]
> _______________________________________________
> [email]freebsd-questions@freebsd.org[/email] mailing list
> [url]http://lists.freebsd.org/mailman/listinfo/freebsd-questions[/url]
> To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"
I sense much NT in you.
NT leads to Bluescreen.
Bluescreen leads to downtime.
Downtime leads to suffering.
NT is the path to the darkside.
Powerful Unix is.
Public Key: [url]ftp://ftp.tallye.com/pub/lorenl_pubkey.asc[/url]
Fingerprint: B3B9 D669 69C9 09EC 1BCD 835A FAF3 7A46 E4A3 280C
Loren M. Lang Guest



Reply With Quote

