From owner-freebsd-questions@FreeBSD.ORG Mon May 19 18:14:44 2003 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 5666E37B401 for ; Mon, 19 May 2003 18:14:44 -0700 (PDT) Received: from Gina.esfm.ipn.mx (esfm.ipn.mx [148.204.102.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1484B43FB1 for ; Mon, 19 May 2003 18:14:43 -0700 (PDT) (envelope-from mrspock@esfm.ipn.mx) Received: from Gina.esfm.ipn.mx (localhost [127.0.0.1]) by Gina.esfm.ipn.mx (8.12.6p2/8.12.6) with ESMTP id h4K1E9TT095321; Mon, 19 May 2003 20:14:10 -0500 (CDT) (envelope-from mrspock@esfm.ipn.mx) Received: from localhost (mrspock@localhost)h4K1E9l5095318; Mon, 19 May 2003 20:14:09 -0500 (CDT) X-Authentication-Warning: Gina.esfm.ipn.mx: mrspock owned process doing -bs Date: Mon, 19 May 2003 20:14:09 -0500 (CDT) From: Eduardo Viruena Silva To: David Kelly In-Reply-To: <200305191951.40320.dkelly@HiWAAY.net> Message-ID: <20030519200918.U95244@Gina.esfm.ipn.mx> References: <200305191951.40320.dkelly@HiWAAY.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: FreeBSD-Questions@freebsd.org Subject: Re: Creating a bin or ISO image of a CD?? 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: Tue, 20 May 2003 01:14:44 -0000 On Mon, 19 May 2003, David Kelly wrote: > On Monday 19 May 2003 07:14 pm, Steven Lake wrote: > > How do I create a bin or ISO image of a CD using FBD? I have > > already figured out how to use burncd to burn iso's and mkisofs to > > make the iso's, but I'm unsure how to in essence "rip and burn" cd's > > and bin files. Does anyone know? Thanks. > > % dd if=/dev/acd0c bs=2048 of=my_cd.iso > > Doesn't quite work that simply for audio CD's, or multisession. > > Some CDROM drives read the CD one block short. Makes it difficult to use > raw tools to verify after write. > try: dd if=/dev/acd0c of=my_image bs=2352 what version of FreeBSD are you using? if you are using versions 4.x you can make: cd /dev ./MAKEDEV acd0t100 cd to make device files for your tracks, and then: dd if=/dev/acd0t1 of=track1.trk bs=2352 to extract the first track of your cd. I don't know how to make it in FreeBSD-5, I rather modified my kernel, adding: device atapicam device scsibus device da and that let me use xcdroast with my atapi cd drive. Eduardo