9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* Re: [9fans] one more stupid question
@ 2002-09-15 14:56 Russ Cox
  2002-09-15 21:12 ` Adrian
  0 siblings, 1 reply; 6+ messages in thread
From: Russ Cox @ 2002-09-15 14:56 UTC (permalink / raw)
  To: 9fans

run 9660srv to create /srv/9660.  you also may need
to give mount a full path name for python.iso, since the path gets
interpreted relative to the current directory for
9660srv, not your own.

russ


^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [9fans] one more stupid question
  2002-09-15 14:56 [9fans] one more stupid question Russ Cox
@ 2002-09-15 21:12 ` Adrian
  0 siblings, 0 replies; 6+ messages in thread
From: Adrian @ 2002-09-15 21:12 UTC (permalink / raw)
  To: 9fans

Ok I type
disk/kfscmd

9660srv

	mount /srv/9660 /n/dist /path/to/python.iso (it is at the root of the cd so
do I do /n/dist/python.iso ?)
	/n/dist/python.setup
	replica/pull /n/dist/python
I keeps telling me /n/dist doesn`t exist.
try it from / where I can see the /n/dist directory no luck.
Adrian
PS.( I swear I reading as much as I can find)

-----Original Message-----
From: 9fans-admin@cse.psu.edu [mailto:9fans-admin@cse.psu.edu]On Behalf
Of Russ Cox
Sent: Sunday, September 15, 2002 10:57 AM
To: 9fans@cse.psu.edu
Subject: Re: [9fans] one more stupid question


run 9660srv to create /srv/9660.  you also may need
to give mount a full path name for python.iso, since the path gets
interpreted relative to the current directory for
9660srv, not your own.

russ



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [9fans] one more stupid question
  2002-09-15 22:28 ` Adrian
@ 2002-09-15 22:29   ` Dan Cross
  0 siblings, 0 replies; 6+ messages in thread
From: Dan Cross @ 2002-09-15 22:29 UTC (permalink / raw)
  To: 9fans

You can probably login as whomever you like, as long as you do a
`disk/kfscmd allow' first.  Sounds like a permissioning problem.

	- Dan C.



^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [9fans] one more stupid question
  2002-09-15 22:01 Russ Cox
@ 2002-09-15 22:28 ` Adrian
  2002-09-15 22:29   ` Dan Cross
  0 siblings, 1 reply; 6+ messages in thread
From: Adrian @ 2002-09-15 22:28 UTC (permalink / raw)
  To: 9fans

Okay tried it both ways. With the python.iso as a file and expanded on a
single cd. I can mount it, but when I go to run /n/dist/python.setup
I get the error /n/kfs/dist/replica/client/python.db: rc (python.setup)
can`t open:
'/n/kfs/dist' does not exists.
Should I be glenda doing this ? and should I do it from my home directory or
the root /

Thank you
Adrian


-----Original Message-----
From: 9fans-admin@cse.psu.edu [mailto:9fans-admin@cse.psu.edu]On Behalf
Of Russ Cox
Sent: Sunday, September 15, 2002 6:02 PM
To: 9fans@cse.psu.edu
Subject: RE: [9fans] one more stupid question


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



^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [9fans] one more stupid question
@ 2002-09-15 22:01 Russ Cox
  2002-09-15 22:28 ` Adrian
  0 siblings, 1 reply; 6+ messages in thread
From: Russ Cox @ 2002-09-15 22:01 UTC (permalink / raw)
  To: 9fans

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



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [9fans] one more stupid question
@ 2002-09-15 14:53 Adrian
  0 siblings, 0 replies; 6+ messages in thread
From: Adrian @ 2002-09-15 14:53 UTC (permalink / raw)
  To: 9fans

How do you mount a cd ?
I downloaded the python.iso.bz and expanded it and wanted to install
it.
The directions in the distribution don`t seem to work
with mount /srv/9660 /n/dist python.iso
I get an ca`nt open srv/9660 file does not exist.
I appreciate the assistance with the network config, everything
is working just fine now.
I`m try to setup mail, found something on the Wiki
going to see how it works.
 I`m just trying a stand alone system first.

Adrian



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2002-09-15 22:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-09-15 14:56 [9fans] one more stupid question Russ Cox
2002-09-15 21:12 ` Adrian
  -- strict thread matches above, loose matches on Subject: below --
2002-09-15 22:01 Russ Cox
2002-09-15 22:28 ` Adrian
2002-09-15 22:29   ` Dan Cross
2002-09-15 14:53 Adrian

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).