From owner-freebsd-questions@FreeBSD.ORG Sat Dec 29 22:41:44 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 5D35B16A46B for ; Sat, 29 Dec 2007 22:41:44 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3367013C45A for ; Sat, 29 Dec 2007 22:41:43 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so6850488waf.3 for ; Sat, 29 Dec 2007 14:41:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date:user-agent:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; bh=KX7wowNkLJ9u5ly1psIgHDc8LhJwGv3ep+hPTvVsK3o=; b=KfLUR+ccB/Xwr034rlNNMf/RUgb0I8XD+ZyBfY0gSnojhfIjKywHUU6D9bUePCrhxa67ZpSQQEWvOMOKFbMX40AX2Z3vRmGo1LK1CkC18iI4rLzkdi+nwrldxDiDR6gN+RSIZBJ+KKK2EouNb2DfSLnQZnIsnJlaygNhsP7zX2U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=LNtf9/HVD1ORUVEHng+eLEwxbyPno7fCEoGQHKhgRoT3HqLkrkoSp63I9DorTBpVW8zywtk0m+G4WOzMEpDwxC0kyl4wsxfQcZh0f/8F/A3fOsF7KHsxhmZq1n8YZxthWX5ylEONUBSZEEfY+JKH7nEMxTHMX/IbjkJllcUClWM= Received: by 10.114.52.1 with SMTP id z1mr9416340waz.123.1198968103674; Sat, 29 Dec 2007 14:41:43 -0800 (PST) Received: from sniper ( [71.221.168.29]) by mx.google.com with ESMTPS id m31sm18232352wag.28.2007.12.29.14.41.43 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 29 Dec 2007 14:41:43 -0800 (PST) From: Andrew Falanga To: FreeBSD Questions Date: Sat, 29 Dec 2007 15:41:34 -0700 User-Agent: KMail/1.9.6 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200712291541.34266.af300wsm@gmail.com> Subject: 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 22:41:44 -0000 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 Now, what is causing this? The command I'm using is right off of the handbook for creating DVD video: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-dvds.html And the size of this file is: -rw-r--r-- 1 root wheel 4317872128 Nov 21 16:30 whereisGod1.iso That's slightly smaller than the 4.7 gb that the DVD+R says it will hold. Please keep in mind that this iso file I've made is from doing: cp /dev/acd0 /usr/local/dvds/whereisGod1.iso Andy