From owner-freebsd-doc@FreeBSD.ORG Tue Jan 13 07:11:50 2004 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7A2216A4D1 for ; Tue, 13 Jan 2004 07:11:50 -0800 (PST) Received: from sj-iport-2.cisco.com (sj-iport-2-in.cisco.com [171.71.176.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FFB243DA5 for ; Tue, 13 Jan 2004 07:10:57 -0800 (PST) (envelope-from kkuehl@cisco.com) Received: from sj-core-1.cisco.com (171.71.177.237) by sj-iport-2.cisco.com with ESMTP; 13 Jan 2004 07:12:50 +0000 Received: from fargo.cisco.com (fargo.cisco.com [171.70.170.202]) by sj-core-1.cisco.com (8.12.9/8.12.6) with ESMTP id i0DFAsGN012660 for ; Tue, 13 Jan 2004 07:10:54 -0800 (PST) Received: from kkuehlw2k (stealth-10-32-243-58.cisco.com [10.32.243.58]) by fargo.cisco.com (8.8.6 (PHNE_17190)/CISCO.SERVER.1.2) with SMTP id HAA04244 for ; Tue, 13 Jan 2004 07:10:54 -0800 (PST) From: "Kirby Kuehl" To: Date: Tue, 13 Jan 2004 07:10:53 -0800 Organization: Cisco Systems, Inc. Message-ID: <000101c3d9e7$7074c740$3af3200a@amer.cisco.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.4510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Importance: Normal Subject: Question about CDRECORD documentation X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: kkuehl@cisco.com List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jan 2004 15:11:51 -0000 URL: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-cds.ht= ml# CDRECORD Shouldn=92t the dev for the below example be 0,4,0 ??? -Kirby The tricky part of using cdrecord is finding the dev to use. To find the proper setting, use the -scanbus flag of cdrecord, which might produce results like this: # cdrecord -scanbus Cdrecord 1.9 (i386-unknown-freebsd4.2) Copyright (C) 1995-2000 J=F6rg Schilling Using libscg version 'schily-0.1' scsibus0: 0,0,0 0) 'SEAGATE ' 'ST39236LW ' '0004' Disk 0,1,0 1) 'SEAGATE ' 'ST39173W ' '5958' Disk 0,2,0 2) * 0,3,0 3) 'iomega ' 'jaz 1GB ' 'J.86' Removable Disk 0,4,0 4) 'NEC ' 'CD-ROM DRIVE:466' '1.26' Removable = CD-ROM 0,5,0 5) * 0,6,0 6) * 0,7,0 7) * scsibus1: 1,0,0 100) * 1,1,0 101) * 1,2,0 102) * 1,3,0 103) * 1,4,0 104) * 1,5,0 105) 'YAMAHA ' 'CRW4260 ' '1.0q' Removable = CD-ROM 1,6,0 106) 'ARTEC ' 'AM12S ' '1.06' Scanner 1,7,0 107) * This lists the appropriate dev value for the devices on the list. Locate your CD burner, and use the three numbers separated by commas as the = value for dev. In this case, the CRW device is 1,5,0, so the appropriate input would be dev=3D1,5,0. There are easier ways to specify this value; see cdrecord(1) for details. That is also the place to look for information = on writing audio tracks, controlling the speed, and other things.