From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <9aced27197c50102c45118c88904e14b@plan9.bell-labs.com> To: 9fans@cse.psu.edu Subject: RE: [9fans] one more stupid question From: "Russ Cox" MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Sun, 15 Sep 2002 18:01:51 -0400 Topicbox-Message-UUID: eb3a395a-eaca-11e9-9e20-41e7f4b1d025 So you've got a CD containing a single file that is python.iso? I'm assuming your CD reader is /dev/sdD0/data, the IDE secondary master. sdC1 is primary slave and sdD1 is secondary slave. Run this: disk/kfscmd allow 9660srv mount /srv/9660 /n/a /dev/sdD0/data 9660srv xxx mount /srv/xxx /n/dist /n/a/python.iso /n/dist/python.setup replica/pull /n/dist/python You need the two 9660srvs because you've got a CD image as a file on a CD. If the CD contains these files instead: d-rwxrwxr-x M 2793032 sys sys 0 Sep 1 05:24 386 --r--r--r-- M 2793032 sys sys 117 May 6 17:29 README --r-xr-xr-x M 2793032 sys sys 374 May 6 17:29 python --rw-rw-r-- M 2793032 sys sys 206221 Sep 10 02:43 python.db --rw-rw-r-- M 2793032 sys sys 264479 Sep 10 02:31 python.log --rwxrwxr-x M 2793032 sys sys 90 May 6 17:29 python.setup d-rwxrwxr-x M 2793032 sys sys 0 Mar 29 17:02 sys you can skip the first set of 9660srvs, doing this instead: disk/kfscmd allow 9660srv mount /srv/9660 /n/dist /dev/sdD0/data /n/dist/python.setup replica/pull /n/dist/python Russ