From owner-freebsd-questions@FreeBSD.ORG Tue Aug 2 05:08:19 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 8DBF416A41F for ; Tue, 2 Aug 2005 05:08:19 +0000 (GMT) (envelope-from cdelsey@qwest.net) Received: from mpls-qmqp-05.inet.qwest.net (mpls-qmqp-05.inet.qwest.net [63.231.195.116]) by mx1.FreeBSD.org (Postfix) with SMTP id E4E9B43D46 for ; Tue, 2 Aug 2005 05:08:18 +0000 (GMT) (envelope-from cdelsey@qwest.net) Received: (qmail 44479 invoked by uid 0); 2 Aug 2005 05:03:31 -0000 Received: from unknown (63.231.195.15) by mpls-qmqp-05.inet.qwest.net with QMQP; 2 Aug 2005 05:03:31 -0000 Received: from vdsl-130-13-181-49.phnx.qwest.net (HELO ?192.168.2.2?) (130.13.181.49) by mpls-pop-15.inet.qwest.net with SMTP; 2 Aug 2005 05:08:17 -0000 Received: by localhost.local (Postfix, from userid 1001) id C88EE4561; Mon, 1 Aug 2005 22:08:18 -0700 (MST) Date: Mon, 1 Aug 2005 22:08:18 -0700 Message-ID: <20050802050818.GA69657@localhost.local> From: "Carl Delsey" To: freebsd-questions@freebsd.org Mail-Followup-To: freebsd-questions@freebsd.org References: <20050801203145.GA830@twelvegates.homeip.net> <20050802002003.GX75379@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050802002003.GX75379@wantadilla.lemis.com> User-Agent: Mutt/1.4.2.1i Subject: Re: growisofs: no mkisofs options are permitted with =, aborting 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: Tue, 02 Aug 2005 05:08:19 -0000 On Tue, Aug 02, 2005 at 09:50:03AM +0930, Greg 'groggy' Lehey wrote: > On Monday, 1 August 2005 at 22:31:45 +0200, Hanspeter Roth wrote: > > > > Hello, > > > > I'm trying to burn an iso image onto a DVD+RW. > > I'm trying: > > > > growisofs -Z /dev/cd0=image.iso > > The version of growisofs that I use doesn't have a -Z option. From a > system that does: > > -Z /dev/dvd > Burn an initial session to the selected device. A special form > of this option is recognized to support burning of pre-mastered > images. See EXAMPLES section for further details. > > Is this your intention? If so, it seems that you're not sticking to > the syntax. It's valid syntax ... just not documented in the man page. You have to go out to the website to find out about it. > > This yields: > > > > growisofs: no mkisofs options are permitted with =, aborting... Looking through the code, this error message seems to mean that growisofs found a parameter that it doesn't recognize and assumes you mean to pass it to mkisofs. I'd double check the spelling of all the options. Maybe retype the command to make sure there aren't any invisible control characters that are somehow getting interpreted as options. If none of that works, try adding --quiet to the command line. My quick look through the code suggests this might work (Though my confidence of that is low). If it does work, I'd really like to hear it though. Finally, if none of those things work, you might try: growisofs -Z /dev/cd0=/dev/fd/0 < image.iso > > `dmesg | grep cd0` is: > > > > acd0: CDRW at ata1-master PIO4 > > cd0 at ata1 bus 0 target 0 lun 0 > > cd0: Removable CD-ROM SCSI-0 device > > cd0: 16.000MB/s transfers > > cd0: Attempt to query device size failed: NOT READY, Medium not present - tray closed > > This doesn't tell me whether you have a /dev/cd0 or not. That depends > on the release of FreeBSD. Use 'ls -l /dev/cd0' and check that it's a > character device. You should see: > > crw-r----- 1 root operator 4, 28 Jun 25 21:11 /dev/cd0 > > Older systems have: > > brw-r----- 1 root operator 6, 0 Aug 26 2000 /dev/cd0a > brw-r----- 1 root operator 6, 2 Aug 26 2000 /dev/cd0c > > Greg > -- > When replying to this message, please copy the original recipients. > If you don't, I may ignore the reply or reply to the original recipients. > For more information, see http://www.lemis.com/questions.html > See complete headers for address and phone numbers.