From owner-freebsd-questions@FreeBSD.ORG Sun Jun 12 11:05:03 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 AD23B16A41C for ; Sun, 12 Jun 2005 11:05:03 +0000 (GMT) (envelope-from ltsampros@upnet.gr) Received: from mail.vivodinet.gr (mail3.vivodinet.gr [80.76.39.13]) by mx1.FreeBSD.org (Postfix) with SMTP id C501043D1F for ; Sun, 12 Jun 2005 11:05:01 +0000 (GMT) (envelope-from ltsampros@upnet.gr) Received: (qmail 23274 invoked from network); 12 Jun 2005 11:04:57 -0000 Received: from dslcustomer-222-89.vivodi.gr (HELO bifteki.home.net) (83.171.222.89) by 0 with SMTP; 12 Jun 2005 11:04:57 -0000 Received: from bifteki.home.net (localhost [127.0.0.1]) by bifteki.home.net (8.13.3/8.13.3) with ESMTP id j5CE51qW036111 for ; Sun, 12 Jun 2005 14:05:01 GMT (envelope-from gaghiel@bifteki.home.net) Received: (from gaghiel@localhost) by bifteki.home.net (8.13.3/8.13.3/Submit) id j5CE51tA036110 for freebsd-questions@freebsd.org; Sun, 12 Jun 2005 14:05:01 GMT (envelope-from gaghiel) Date: Sun, 12 Jun 2005 14:05:01 +0000 From: Tsampros Leonidas To: freebsd-questions@freebsd.org Message-ID: <20050612140501.GA36094@bifteki.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.9i Subject: [gaghiel: Re: burncd syntax for burning dvd ???] 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, 12 Jun 2005 11:05:03 -0000 ----- Forwarded message from Tsampros Leonidas ----- Date: Sun, 12 Jun 2005 14:02:31 +0000 From: Tsampros Leonidas Subject: Re: burncd syntax for burning dvd ??? To: "P.U.Kruppa" In-Reply-To: <20050612120010.J1048@www.pukruppa.net> User-Agent: Mutt/1.5.9i On Sun, Jun 12, 2005 at 12:08:21PM +0200, P.U.Kruppa wrote: > Hello! > > I created an .iso file from a dvd by > # dd if=/dev/acd0 of=dvd.iso bs=2048 > Now I would like to burn dvd.iso on a fresh dvd+rw medium. > Could someone be so nice and give me the correct command line for > this - seems I am too stupid to understand the man pages :-( . > > Thanks, I think that this one will work: burncd -e -f /dev/acd0 -s max data fixate dvdrw dvd.iso No guarantees though as i haven't tried it. Why don't you use growisofs ? You can install it through the ports at sysutils/dvd+rw-tools . To write tha same iso you would use the following command: growisofs -speed=N -dvd-compat -Z /dev/dvd=image.iso Tested and always works. .