From owner-freebsd-questions@FreeBSD.ORG Sat Dec 29 23:12:23 2007 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 9CA0416A419 for ; Sat, 29 Dec 2007 23:12:23 +0000 (UTC) (envelope-from phatbuckett@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.181]) by mx1.freebsd.org (Postfix) with ESMTP id 6F35913C500 for ; Sat, 29 Dec 2007 23:12:23 +0000 (UTC) (envelope-from phatbuckett@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so6867155waf.3 for ; Sat, 29 Dec 2007 15:12:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=hG+BtUKf7D0z4haWVeO+gyU2kHIGF4PJ1JGvgMbrqGo=; b=Z9yK6Tsbh5gw/KSvvC0Q2RMq+KoJqBgBqb+gEW293nwEkoOgUekJefUzgudCVd6t6yFfB+16VlgOiaou7NT8Z+ikzG7jWyBR1opqPxxxGXpWogmZ2lF3n9bWbcDWVj98PZ7E8uVpxNVWUHtzvAWPZKA152tTzUpYSnUVBT77RVI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Cy6XxpuCv6sBHz5BZsvttEe3chaPlbkIVcoWuptxBmfHmBPVi4zGESCcwMgqUxAFBEzkOXbSuy1IWfa1rZHwLUngdrCR/kQkf6yU0BoF1GadY3Ip3MoxIYtbpNOKLA+9FoERTCS985scVs/rWa7QRd8cbpk4QQvgaLNWxMfcxwA= Received: by 10.114.174.2 with SMTP id w2mr10122812wae.17.1198969942702; Sat, 29 Dec 2007 15:12:22 -0800 (PST) Received: by 10.114.47.12 with HTTP; Sat, 29 Dec 2007 15:12:22 -0800 (PST) Message-ID: <839aec700712291512jc0f7d4cs1b18e556fa9d32c3@mail.gmail.com> Date: Sat, 29 Dec 2007 16:12:22 -0700 From: "Darren Spruell" To: "Andrew Falanga" In-Reply-To: <200712291541.34266.af300wsm@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200712291541.34266.af300wsm@gmail.com> Cc: FreeBSD Questions Subject: Re: Still having problems burning DVDs 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: Sat, 29 Dec 2007 23:12:23 -0000 On Dec 29, 2007 3:41 PM, Andrew Falanga wrote: > Ok, > > Thanks to the help of earlier posts (a couple of weeks ago), using "kldload > atapicam" now allows for the scsi ioctls on my IDE CD/DVD burner. > > However, when I do the following: > > growisofs -Z /dev/cd0 -dvd-video /usr/local/dvds/whereisGod1.iso > > I get this output: > Executing 'mkisofs -dvd-video /usr/local/dvds/whereisGod1.iso | builtin_dd > of=/dev/pass0 obs=32k seek=0' > mkisofs: Value too large to be stored in data type. > File /usr/local/dvds/whereisGod1.iso is too large - ignoring > mkisofs: Unable to make a DVD-Video image. > :-( write failed: Input/output error You should use the alternate syntax which takes a pre-mastered DVD image: growisofs -dvd-compat -Z /dev/cd0=/usr/local/dvds/whereisGod1.iso Notice how above it's trying to run mkisofs to create the image. You've supposedly already got the image, so no need to master. See '18.7.3 Burning Data DVDs'. DS