From owner-freebsd-questions@FreeBSD.ORG Sat Feb 26 09:04:45 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05C2B16A4CE for ; Sat, 26 Feb 2005 09:04:45 +0000 (GMT) Received: from smtp-vbr3.xs4all.nl (smtp-vbr3.xs4all.nl [194.109.24.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AFC343D54 for ; Sat, 26 Feb 2005 09:04:44 +0000 (GMT) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr3.xs4all.nl (8.12.11/8.12.11) with ESMTP id j1Q94gRP014347; Sat, 26 Feb 2005 10:04:42 +0100 (CET) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id B04EC63D0; Sat, 26 Feb 2005 10:04:44 +0100 (CET) Date: Sat, 26 Feb 2005 10:04:44 +0100 From: Roland Smith To: Warren Message-ID: <20050226090444.GA88928@slackbox.xs4all.nl> Mail-Followup-To: Warren , freebsd-questions@freebsd.org References: <200502261632.03478.shinjii@virusinfo.rdksupportinc.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GvXjxJ+pjyke8COw" Content-Disposition: inline In-Reply-To: <200502261632.03478.shinjii@virusinfo.rdksupportinc.com> User-Agent: Mutt/1.4.2.1i X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! Organization: Me, organized? X-Virus-Scanned: by XS4ALL Virus Scanner cc: freebsd-questions@freebsd.org Subject: Re: Extracting an img file X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Feb 2005 09:04:45 -0000 --GvXjxJ+pjyke8COw Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable 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 =A716.12.2 of the handb= ook. 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 --=20 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 http://www.xs4all.nl/~rsmith/ X No Word docs in e-mail public key: http://www.keyserver.net / \ Respect for open standards --GvXjxJ+pjyke8COw Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCIDusEnfvsMMhpyURAkf3AKCddSDwkqJ3sk6YvjeklAWGH+0fCACgo+Xj pOI7ZpktujIfkGubAlDC2ow= =UBwk -----END PGP SIGNATURE----- --GvXjxJ+pjyke8COw--