From owner-freebsd-questions@FreeBSD.ORG Wed Nov 10 20:43:34 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 C8D6216A4E3 for ; Wed, 10 Nov 2004 20:43:34 +0000 (GMT) Received: from smtpauth05.mail.atl.earthlink.net (smtpauth05.mail.atl.earthlink.net [209.86.89.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F5F043D3F for ; Wed, 10 Nov 2004 20:43:34 +0000 (GMT) (envelope-from algould@datawok.com) Received: from [206.255.31.21] (helo=[192.168.63.10]) by smtpauth05.mail.atl.earthlink.net with asmtp (TLSv1:RC4-MD5:128) (Exim 4.34) id 1CRzJW-0004eD-4f; Wed, 10 Nov 2004 15:43:34 -0500 From: "Andrew L. Gould" To: freebsd-questions@freebsd.org Date: Wed, 10 Nov 2004 14:43:41 -0600 User-Agent: KMail/1.6.2 References: <200411102124.02129.v.demartino2@virgilio.it> In-Reply-To: <200411102124.02129.v.demartino2@virgilio.it> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200411101443.41476.algould@datawok.com> X-ELNK-Trace: ee791d459e3d6817d780f4a490ca69563f9fea00a6dd62bc08c1f17692f529a8f362473e44ad47a1350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 206.255.31.21 cc: Vittorio Subject: Re: cdrtools & scsi cdrom 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, 10 Nov 2004 20:43:34 -0000 On Wednesday 10 November 2004 03:24 pm, Vittorio wrote: > Under freeBSD 5.2.1 I compiled cdrtools from /usr/ports/cdrtools. > > Now, even though I'm expert under linux in burning CDs & setting > the ATAPI RW-cdrom as a SCSI one via the module ide-scsi, I can't > figure out how to do the same under freebsd. > > Could you please help? > > By the way where, under what directory, I can find the CD-Writing > HOWTO in freebsd (and, of course the other Howtos)? > > > Ciao > Vittorio The easiest way to burn a CD using an IDE CD writer in FreeBSD is with burncd, which is installed by default. No SCSI emulation is needed; but you need to install cdrtools from the ports to get mkisofs (which you have already done). If you have a SCSI CD burner, you can use cdrecord -- no SCSI emulation is needed. If you want to use cdrecord with an IDE CD writer (or plan to install an IDE DVD burner), you'll need to recompile your kernel with the following devices: device atapicam device ata device scbus device cd device pass (I think all but atapicam are configured in the default kernel.) References: man burncd man cdrecord man mkisofs http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-cds.html Best of luck, Andrew Gould