Extracting an img file

Ask a Question related to FreeBSD, Design and Development.

  1. #1

    Default Extracting an img file

    How do i extract the contents of an img file so i can view // empty the
    contents out? without burning due to it being a 3.1gig img file and i got no
    DVD Burner.
    --
    Yours Sincerely
    Shinjii
    [url]http://www.shinji.nq.nu[/url]
    Warren Guest

  2. Similar Questions and Discussions

    1. Extracting Image from PDF file
      I have a requirement to extract images from PDF file using .NET applications. Through Acrobat API, I was able to call up a menu item (Export all...
    2. Installation problem extracting file
      I've downloaded the trial and developer versions, saved the file to my disk. When attempting to run the file, I get an error message saying "please...
    3. Extracting the info from a file
      Dear All, I am receiving information from a third party (I have no control over the format). When I receive the infomation I have to run ToBinary...
    4. Help with extracting text file
      Hi everyone, I have a file with data similar to this ........... Exxxxx|FExxxxx|NQxxxxxx|OUxxxxxx|GExxxxxx|OVxxxxxxx|IQxxxxxxxx|ORxxxx...
    5. extracting an entire node from XML file
      i have a file which i have to write in C#. i want to extract an entire node by itself at once ( wherever it occurs in the file .. as ) <?xml...
  3. #2

    Default Re: Extracting an img file

    On Sat, Feb 26, 2005 at 04:32:03PM +1000, Warren wrote:
    > How do i extract the contents of an img file so i can view // empty
    > the contents out? without burning due to it being a 3.1gig img file
    > and i got no DVD Burner.
    You mean an ISO9660 image? Use an md(4) device. See §16.12.2 of the handbook.

    First create a file-backed md device:

    # mdconfig -a -t vnode -f diskimage -u 0

    Then you mount it somewhere:

    # mount -t cd9660 /dev/md0 /mnt

    When you are done with it, unmount the filesystem and then detach the md
    device:

    # umount /mnt
    # mdconfig -d -u 0

    --
    R.F. Smith /"\ ASCII Ribbon Campaign
    r s m i t h @ x s 4 a l l . n l \ / No HTML/RTF in e-mail
    [url]http://www.xs4all.nl/~rsmith/[/url] X No Word docs in e-mail
    public key: [url]http://www.keyserver.net[/url] / \ Respect for open standards

    -----BEGIN PGP SIGNATURE-----
    Version: GnuPG v1.4.0 (FreeBSD)

    iD8DBQFCIDusEnfvsMMhpyURAkf3AKCddSDwkqJ3sk6YvjeklA WGH+0fCACgo+Xj
    pOI7ZpktujIfkGubAlDC2ow=
    =UBwk
    -----END PGP SIGNATURE-----

    Roland Smith Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139