From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: To: 9fans@cse.psu.edu Subject: Re: [9fans] Can't make CD without temporary file From: "Russ Cox" MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Fri, 14 Jun 2002 13:30:47 -0400 Topicbox-Message-UUID: add8eb74-eaca-11e9-9e20-41e7f4b1d025 > The problem is that I don't want to have to create the temporary > image file cdimage. Sorry, you have to create the temporary file. The man page came before the mk9660 rewrite. Mk9660 is two passes now, and depends on having a seekable file. This means you can't just write a CD on standard output, but it also simplified everything about mk9660 enough to do, for example, Rock Ridge support. > The example in CDFS(4) states that you can create write to a CD > without the intermediate file with: > > disk/mk9660 -9cj -n notice cdproto >cd/wd/foo > > but that doesn't work because mk9660 expects a file argument and > doesn't send its output to stdout so > won't work. Fixed the man page. Whoops. Russ