From owner-freebsd-questions Fri Apr 27 23:24:55 2001 Delivered-To: freebsd-questions@freebsd.org Received: from starbug.ugh.net.au (starbug.ugh.net.au [203.31.238.37]) by hub.freebsd.org (Postfix) with ESMTP id 3C23C37B422 for ; Fri, 27 Apr 2001 23:24:52 -0700 (PDT) (envelope-from andrew@ugh.net.au) Received: by starbug.ugh.net.au (Postfix, from userid 1000) id C3431A826; Sat, 28 Apr 2001 16:24:51 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by starbug.ugh.net.au (Postfix) with ESMTP id C11875488; Sat, 28 Apr 2001 16:24:51 +1000 (EST) Date: Sat, 28 Apr 2001 16:24:51 +1000 (EST) From: To: "Gerald T. Freymann" Cc: Subject: Re: Duplicating Audio CDs [audio block] In-Reply-To: <015701c0cf44$471f1900$0f01a8c0@phantom> Message-ID: <20010428161850.P82657-100000@starbug.ugh.net.au> X-WonK: *wibble* MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 27 Apr 2001, Gerald T. Freymann wrote: > I just got myself a HP cd-writer... IDE or SCSI? This thread is only relevant to IDE burners. > ie.. commands to use dd to make a copy of an original "music" cd If your CD has banding (a break between tracks) then you can extract individual tracks using dagrab (from ports) or dd if=/dev/acd0t1 of=track1 bs=2352 (obviously repeating for each track). To get an image of the entire cd use dd if=/dev/acd0 of=cd.image bs=2352 > then commands to write that back to a blank cd.. Individual tracks (with banding): burncd -f /dev/cdrom -s 8 audio track* fixate (assuming the burner is /devcdrom, its 8 speed and track* matches your tracks in the correct order). If you have one big disk image then: burncd -f /dev/cdrom -s 8 audio cd.image fixate The problem with that is you get one big audio track - OK as long as you only play sequentially anyway. Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message