From owner-freebsd-questions@FreeBSD.ORG Tue Jan 6 19:40:35 2004 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 6A5FE16A4D0 for ; Tue, 6 Jan 2004 19:40:35 -0800 (PST) Received: from mail1.acecape.com (mail1.acecape.com [66.114.74.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id D964243D4C for ; Tue, 6 Jan 2004 19:40:27 -0800 (PST) (envelope-from francisco@natserv.net) Received: from p65-147.acedsl.com (p65-147.acedsl.com [66.114.65.147]) by mail1.acecape.com (8.12.10/8.12.10) with ESMTP id i073eLTI020273; Tue, 6 Jan 2004 22:40:22 -0500 Date: Tue, 6 Jan 2004 22:42:35 +0000 (GMT) From: Francisco X-X-Sender: fran@zoraida.natserv.net To: "W. Sierke" In-Reply-To: <02b401c3d2d7$81439f40$8464a8c0@ovirt.dyndns.ws> Message-ID: <20040106223548.Q16741@zoraida.natserv.net> References: <02b401c3d2d7$81439f40$8464a8c0@ovirt.dyndns.ws> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-questions@freebsd.org Subject: Re: How to create .iso file image of cdrom (atapi)? 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: Wed, 07 Jan 2004 03:40:35 -0000 On Mon, 5 Jan 2004, W. Sierke wrote: > Is there a straightforward way of creating a file image (.iso) of a data > cdrom mounted in an atapi cd-rom drive? I use a port called mkisofs. mkisofs -R -l -J -o . So you would mount the CD and then CD into it. To later burn to another CD I use burncd -f /dev/acd0c -s 10 data $1 fixate Where 10 is the speed of my burner, but you should set it to the max speed of yours.. which if your CD burner is recent is probably faster than 10. :-) Hope that helps. As far as I knowh though this approach will not work to copy a bootable CD. The ISO image will be created and the content will be there, but the new CD will not be bootable.