[9fans] Plan 9 technical docs and man pages - licensed or public domain?

2012-07-24 Thread Andy Elvey

Hi everyone - I'm a first-timer here -

  I'm thinking of doing a public domain implementation (in C) of 9P. 
I've seen the large listing (on the cat-v site) of existing 9P 
implementations which are under various licenses, and so in thinking 
about where those people obtained the required information from, the 
following questions came to mind -


a) The information *must* have been obtained from the Plan 9 technical 
docs (specification papers) or the Plan 9 man pages. Can the information 
in either of these be regarded as being public domain?  (It would seem 
to be, given the number of different licenses of the various 
implementations. They could surely not have taken LPL-licensed code and 
then converted it to GPL, BSD, MIT..?


It would seem that the proliferation of licenses could only be done if 
the original source of the information was public domain. )


b) If the answer to (a) is yes - does that include the source-code 
shown in those papers (and the man pages)?


I've seen the public domain implementation of 9P in Python (by Tim 
Newsham), so I assume he got the required information from the places 
I've mentioned.


Thanks for your time - looking forward to your replies.
- Andy



Re: [9fans] Plan 9 technical docs and man pages - licensed or public domain?

2012-07-24 Thread hiro
nobody here's a lawyer.



Re: [9fans] Plan 9 technical docs and man pages - licensed or public domain?

2012-07-24 Thread andrey mirtchovski
I'm not a lawyer but I play one in comedy clubs. The first
implementation of 9p came about long before Plan 9 had a free (as in
rms) license. Nobody got sued, nobody died, although a few bystanders
were maimed.

My advice as your lawyer [in comedy] would be to go nuts and do
whatever you want. The documentation[1] is a good place to start if
you don't want to look at any source (no license required to see
that!), and if you want to cover all corner cases, a running Plan 9
kernel is a good client/server to test against.


1: http://plan9.bell-labs.com/sys/man/5/INDEX.html



Re: [9fans] Plan 9 technical docs and man pages - licensed or public domain?

2012-07-24 Thread andrey mirtchovski
 (no license required to see
 that!)

there is, however, a copyright link at the bottom of each man page. as
your lawyer [in comedy] i advise you to click it.



Re: [9fans] Plan 9 technical docs and man pages - licensed or public domain?

2012-07-24 Thread Andy Elvey

Hi Andrey - thanks for your reply!

On 25/07/12 14:47, andrey mirtchovski wrote:

I'm not a lawyer but I play one in comedy clubs. The first
implementation of 9p came about long before Plan 9 had a free (as in
rms) license. Nobody got sued, nobody died, although a few bystanders
were maimed.

Interesting. It's good to find out a bit of the history behind 9p.


My advice as your lawyer [in comedy] would be to go nuts and do
whatever you want. The documentation[1] is a good place to start if
you don't want to look at any source (no license required to see
that!), and if you want to cover all corner cases, a running Plan 9
kernel is a good client/server to test against.


1: http://plan9.bell-labs.com/sys/man/5/INDEX.html

Thanks for that!  I'll check that page out too.
Btw - I clicked on the copyright link at the bottom, but the link is 
dead - nothing but a 404 page error.


In looking at Tim Newsham's P9.py, he has a comment in the code - 9P 
protocol implementation as documented in plan9 intro(5) and fcall.h.
( I would likely be even more cautious and avoid looking at any header 
files if possible. )

Thanks again, Andrey - you've been very helpful!
- Andy


Re: [9fans] Plan 9 technical docs and man pages - licensed or public domain?

2012-07-24 Thread erik quanstrom
 In looking at Tim Newsham's P9.py, he has a comment in the code - 9P 
 protocol implementation as documented in plan9 intro(5) and fcall.h.
 ( I would likely be even more cautious and avoid looking at any header 
 files if possible. )
 Thanks again, Andrey - you've been very helpful!

section 5 of the manual should be a complete description of the protocol.
the comment might be slightly misleading.

that not withstanding, ianal, but my understanding is that header files, are
considered similar to facts under copyright law, and therefore not 
copyrightable.

- erik



Re: [9fans] Plan 9 technical docs and man pages - licensed or public domain?

2012-07-24 Thread John Floren
On Tue, Jul 24, 2012 at 8:31 PM, Andy Elvey andy.el...@paradise.net.nz wrote:
 Hi Andrey - thanks for your reply!

 On 25/07/12 14:47, andrey mirtchovski wrote:

 I'm not a lawyer but I play one in comedy clubs. The first
 implementation of 9p came about long before Plan 9 had a free (as in
 rms) license. Nobody got sued, nobody died, although a few bystanders
 were maimed.

 Interesting. It's good to find out a bit of the history behind 9p.

 My advice as your lawyer [in comedy] would be to go nuts and do
 whatever you want. The documentation[1] is a good place to start if
 you don't want to look at any source (no license required to see
 that!), and if you want to cover all corner cases, a running Plan 9
 kernel is a good client/server to test against.

 
 1: http://plan9.bell-labs.com/sys/man/5/INDEX.html

 Thanks for that!  I'll check that page out too.
 Btw - I clicked on the copyright link at the bottom, but the link is dead
 - nothing but a 404 page error.

 In looking at Tim Newsham's P9.py, he has a comment in the code - 9P
 protocol implementation as documented in plan9 intro(5) and fcall.h.
 ( I would likely be even more cautious and avoid looking at any header files
 if possible. )
 Thanks again, Andrey - you've been very helpful!
 - Andy

Just write the code, nobody cares. The manual pages define an
interface, and you're going to implement it. The manual pages are
copyrighted, sure, because they're written works and are automatically
protected by copyright.

Besides the recent Google vs. Oracle fiasco, I can't think of a time
an open-source project had legal problems by writing new code to
implement an API. And, based on a brief reading of
http://www.groklaw.net/pdf3/OraGoogle-1202.pdf, it looks as though a
US judge has ruled that an API is not subject to copyright; if you
implement the 9P API, you should be fine. Also, since you're doing a
free reimplementation of code which is currently available free to
everyone by the creators (Lucent), I have a hard time figuring out
exactly what basis they'd have for a lawsuit.


john



Re: [9fans] Plan 9 technical docs and man pages - licensed or public domain?

2012-07-24 Thread andrey mirtchovski
 Btw - I clicked on the copyright link at the bottom, but the link is dead
 - nothing but a 404 page error.

that's the joke :) plan9 has been considered a dead operating system
for a long time.

from my (admittedly little) experience with 9p implementations, the
ones done outside of plan9 code influence were done based on the man
pages and then tested against the plan9 kernel driver. the
implementations that came after Lucent Public Licence 1.0.2 (the
OSS-approved one) all share a few similarities, mostly in structs. I
think they all gleaned from Russ Cox's plan9port C code which may
have been used as a reference. the 9p code in the linux kernel, i
believe, doesn't share similarities in its data structs with plan9
(compare p9_fcall with fcall).

I think Tim's py9p came after the OSS approval of the Lucent licence.
I can tell you that Tim's original implementation used an
unmarshalling routine that was definitely not derived from read9pmsg.
it was (is) very python-y.



Re: [9fans] Plan 9 technical docs and man pages - licensed or public domain?

2012-07-24 Thread erik quanstrom
 that's the joke :) plan9 has been considered a dead operating system
 for a long time.

h.  don't tell my employer.

- erik



Re: [9fans] Plan 9 technical docs and man pages - licensed or public domain?

2012-07-24 Thread Skip Tavakkolian
For a dead OS, Plan 9 sure gets around ;)

Plan 9, a nurse-log of modern computing.

-Skip

On Jul 24, 2012, at 9:10 PM, erik quanstrom quans...@quanstro.net wrote:

 that's the joke :) plan9 has been considered a dead operating system
 for a long time.
 
 h.  don't tell my employer.
 
 - erik
 



[9fans] higher-end compute server recommendations?

2012-07-24 Thread John Floren
We've got some budget left for hardware, so I'm looking for a server
suitable for running Plan 9, preferably as good as I can get for about
$3000-5000. Buying non-Thinkpad Plan 9 hardware is kind of a
crapshoot, and this isn't just some $100 Atom system, so if any of you
are running something along these lines, please let me know. I'd most
like to see lots of cores and lots of RAM, I don't even want storage
(we've got other methods for storage).

Thanks,


John



Re: [9fans] higher-end compute server recommendations?

2012-07-24 Thread erik quanstrom
On Wed Jul 25 00:45:01 EDT 2012, j...@jfloren.net wrote:
 We've got some budget left for hardware, so I'm looking for a server
 suitable for running Plan 9, preferably as good as I can get for about
 $3000-5000. Buying non-Thinkpad Plan 9 hardware is kind of a
 crapshoot, and this isn't just some $100 Atom system, so if any of you
 are running something along these lines, please let me know. I'd most
 like to see lots of cores and lots of RAM, I don't even want storage
 (we've got other methods for storage).

hey, john, i've had incredible luck with intel servers from supermicro
for general beat-about servers.

just as a quick suggestion, i'd look at this server here.  

http://www.supermicro.com/products/system/1U/6017/SYS-6017R-WRF.cfm

with 8-core socket-r cpus, you can have 32 cores and 128gb of memory
without stretching the budget too much.  the intel i350 nics work fine,
but for something that hot, i'd get a myircom or intel 10gbe adapter.

this was just whatever came up in 5 minutes.  you might want to look
at this page here for more options

http://www.supermicro.com/products/nfo/Xeon_X9_E5.cfm?pg=SS

acmemicro.com (fitting, no?) should have the full range of stuff.

- erik



Re: [9fans] Plan 9 technical docs and man pages - licensed or public domain?

2012-07-24 Thread Jens Staal
2012/7/25 Skip Tavakkolian skip.tavakkol...@gmail.com:
 For a dead OS, Plan 9 sure gets around ;)

 Plan 9, a nurse-log of modern computing.

 -Skip

 On Jul 24, 2012, at 9:10 PM, erik quanstrom quans...@quanstro.net wrote:

 that's the joke :) plan9 has been considered a dead operating system
 for a long time.

 h.  don't tell my employer.

 - erik



It must be Eros stimulating its  pituitary and pineal glands. ;)

(http://en.wikipedia.org/wiki/Plan_9_from_Outer_Space)



Re: [9fans] higher-end compute server recommendations?

2012-07-24 Thread John Floren
On Tue, Jul 24, 2012 at 9:58 PM, erik quanstrom quans...@quanstro.net wrote:
 On Wed Jul 25 00:45:01 EDT 2012, j...@jfloren.net wrote:
 We've got some budget left for hardware, so I'm looking for a server
 suitable for running Plan 9, preferably as good as I can get for about
 $3000-5000. Buying non-Thinkpad Plan 9 hardware is kind of a
 crapshoot, and this isn't just some $100 Atom system, so if any of you
 are running something along these lines, please let me know. I'd most
 like to see lots of cores and lots of RAM, I don't even want storage
 (we've got other methods for storage).

 hey, john, i've had incredible luck with intel servers from supermicro
 for general beat-about servers.

 just as a quick suggestion, i'd look at this server here.

 http://www.supermicro.com/products/system/1U/6017/SYS-6017R-WRF.cfm

 with 8-core socket-r cpus, you can have 32 cores and 128gb of memory
 without stretching the budget too much.  the intel i350 nics work fine,
 but for something that hot, i'd get a myircom or intel 10gbe adapter.

 this was just whatever came up in 5 minutes.  you might want to look
 at this page here for more options

 http://www.supermicro.com/products/nfo/Xeon_X9_E5.cfm?pg=SS

 acmemicro.com (fitting, no?) should have the full range of stuff.

 - erik

Thanks for the tip; I just looked at acmemicro and spec'd out a
decent-looking 16-core system with 64 GB of RAM for about $4800, so
I'll probably end up doing something like that.



john



Re: [9fans] higher-end compute server recommendations?

2012-07-24 Thread Bruce Ellis
Watch out for the bunnies!

On 25 July 2012 15:09, John Floren j...@jfloren.net wrote:
 On Tue, Jul 24, 2012 at 9:58 PM, erik quanstrom quans...@quanstro.net wrote:
 On Wed Jul 25 00:45:01 EDT 2012, j...@jfloren.net wrote:
 We've got some budget left for hardware, so I'm looking for a server
 suitable for running Plan 9, preferably as good as I can get for about
 $3000-5000. Buying non-Thinkpad Plan 9 hardware is kind of a
 crapshoot, and this isn't just some $100 Atom system, so if any of you
 are running something along these lines, please let me know. I'd most
 like to see lots of cores and lots of RAM, I don't even want storage
 (we've got other methods for storage).

 hey, john, i've had incredible luck with intel servers from supermicro
 for general beat-about servers.

 just as a quick suggestion, i'd look at this server here.

 http://www.supermicro.com/products/system/1U/6017/SYS-6017R-WRF.cfm

 with 8-core socket-r cpus, you can have 32 cores and 128gb of memory
 without stretching the budget too much.  the intel i350 nics work fine,
 but for something that hot, i'd get a myircom or intel 10gbe adapter.

 this was just whatever came up in 5 minutes.  you might want to look
 at this page here for more options

 http://www.supermicro.com/products/nfo/Xeon_X9_E5.cfm?pg=SS

 acmemicro.com (fitting, no?) should have the full range of stuff.

 - erik

 Thanks for the tip; I just looked at acmemicro and spec'd out a
 decent-looking 16-core system with 64 GB of RAM for about $4800, so
 I'll probably end up doing something like that.



 john