From owner-freebsd-questions@FreeBSD.ORG Sun Jan 25 09:05:45 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 745821065672 for ; Sun, 25 Jan 2009 09:05:45 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id BA3DB8FC24 for ; Sun, 25 Jan 2009 09:05:44 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n0P95Ek6043770; Sun, 25 Jan 2009 10:05:14 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n0P95Cxl043767; Sun, 25 Jan 2009 10:05:12 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 25 Jan 2009 10:05:12 +0100 (CET) From: Wojciech Puchar To: Gary Kline In-Reply-To: <20090125015632.GD31215@thought.org> Message-ID: <20090125100344.V43743@wojtek.tensor.gdynia.pl> References: <20090123011043.GA86638@thought.org> <497954FE.8050206@gmail.com> <497a08f0.M7aLYVzoum+g95mw%perryh@pluto.rain.com> <20090125020349.47c3eb68.freebsd@edvax.de> <20090125015632.GD31215@thought.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: tajudd@gmail.com, perryh@pluto.rain.com, Polytropon , freebsd-questions@freebsd.org Subject: Re: how to create a DVD backup filesystem? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jan 2009 09:05:45 -0000 > cdr.iso: ISO 9660 CD-ROM filesystem data 'CDROM > 642848 -rw-r--r-- 1 kline wheel 657922048 Jan 24 15:34 cdr.iso > > what is the safest command to use to burn to 1. a CD, and 2. a > DVD? Since `file' says that cdr.iso is a filesystem, I'm if it ISO9660 filesystem image. you may check it before writing this way mdconfig -a -o readonly -t vnode -f cdr.iso mount_cd9660 /dev/md0 /mnt then after checking umount /mnt mdconfig -d -u 0 (assumed you don't use other md devices that moment, if so, device number will not be md0) > assuming that I don't need to grow or newfs anything on the disc. cdrtools for CD dvd+rw-tools for DVD