From owner-freebsd-questions@FreeBSD.ORG Wed Jan 21 16:51:46 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 CD11F16A4CE for ; Wed, 21 Jan 2004 16:51:46 -0800 (PST) Received: from madras.dyndns.org (dsl-137.241.240.220.dsl.comindico.com.au [220.240.241.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 340D343D45 for ; Wed, 21 Jan 2004 16:51:34 -0800 (PST) (envelope-from ggop@madras.dyndns.org) Received: from madras.dyndns.org (localhost [127.0.0.1]) by madras.dyndns.org (8.12.10/8.12.10) with ESMTP id i0M0npPd004122; Thu, 22 Jan 2004 11:49:51 +1100 (EST) (envelope-from ggop@madras.dyndns.org) Received: (from ggop@localhost) by madras.dyndns.org (8.12.10/8.12.10/Submit) id i0M0nlja004117; Thu, 22 Jan 2004 11:49:47 +1100 (EST) (envelope-from ggop) Date: Thu, 22 Jan 2004 11:49:46 +1100 From: Gautam Gopalakrishnan To: Roberto Pereyra Message-ID: <20040122004946.GA3851@madras.dyndns.org> References: <20040121153311.GA6948@gualeguaychu.gov.ar> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040121153311.GA6948@gualeguaychu.gov.ar> User-Agent: Mutt/1.4.1i cc: freebsd-questions@freebsd.org Subject: Re: record single files in IDE CDRW 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: Thu, 22 Jan 2004 00:51:46 -0000 On Wed, Jan 21, 2004 at 12:33:11PM -0300, Roberto Pereyra wrote: > Hi all ! > How can I burn single files in a cdrom (RW-IDE) ? > Burncd allow burn iso files only ? > I want to burn files many times with the same cdrom (open session). I can't get burncd to work properly, but cdrecord will. Steps are (all as root): - Install sysutils/cdrtools and sysutils/mkisofs - Get the device name: # cdrecord -scanbus - First time you want to burn something: # mkisofs a.txt | cdrecord dev=xxx -multi - - Next time you want to append: # cdrecord -msinfo (this will give a number like 0,19304 or something) # mkisofs -M xxx -C 0,19304 b.txt | cdrecord dev=xxx -multi - If you use files with long names (more than 8.3), try the "-J -R" flags to mkisofs Seems like a lot of work... You could try k3b (with kde) or bashburn http://bashburn.sf.net/ for console use hth Gautam