9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* Re: [9fans] Kabini or Raspberry Pi?
@ 2014-07-01  7:58 Richard Miller
  2014-07-01 12:52 ` hiro
  0 siblings, 1 reply; 22+ messages in thread
From: Richard Miller @ 2014-07-01  7:58 UTC (permalink / raw)
  To: 9fans

> if anyone has any information on Plan 9 and Xen, that would be most welcome too.

http://www.plan9.bell-labs.com/wiki/plan9/installing_in_Xen_3.0

This is a paravirtualised kernel which runs on xen; I've used it on an
AWS server with reasonable success.

With modern intel hardware, it's also possible to run normal native plan 9
on Xen.

> for my Plan9 CPU/Auth/File server.   Another candidate
> is raspberry pi.

The pi makes an excellent terminal but I wouldn't use one as a file server.
The only way to attach a local disk is via usb, and the usb interface is
not the strongest point of the Broadcom SoC.  It will be slow and probably
unreliable.




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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-01  7:58 [9fans] Kabini or Raspberry Pi? Richard Miller
@ 2014-07-01 12:52 ` hiro
  2014-07-01 12:54   ` hiro
  0 siblings, 1 reply; 22+ messages in thread
From: hiro @ 2014-07-01 12:52 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Been running 9front on kvm lately, and it has even better uptime than
my linux vservers.
What's the advantage for you guys to use XEN as apposed to kvm/qemu?



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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-01 12:52 ` hiro
@ 2014-07-01 12:54   ` hiro
  0 siblings, 0 replies; 22+ messages in thread
From: hiro @ 2014-07-01 12:54 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

I agree with miller about rpi USB and thus ethernet being kind limited
in usefulness.
The kirkwood though is a good basis for non-terminals. Even USB disks
aren't *that* slow in my experience (>10M/s).



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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-04  7:56     ` kokamoto
@ 2014-07-04  8:20       ` fgergo
  0 siblings, 0 replies; 22+ messages in thread
From: fgergo @ 2014-07-04  8:20 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Hi Kenji,

 a comparison page: http://downloads.element14.com/raspberryPi1.html
Both "model A" and "model B" work. You most probably want to have "model B".

For details: http://comments.gmane.org/gmane.os.plan9.general/70308

best,
Gergő


On Fri, Jul 4, 2014 at 9:56 AM,  <kokamoto@hera.eonet.ne.jp> wrote:
>> I have no pi hardware now,
>
> I found the pi hardware is very cheap, 4500円 in Japan.
> I also found 4 kinds of arm based hardware in the sources.
> Which is the hardware we can buy now?
>
> Kenji
>
>



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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-03  8:16   ` kokamoto
  2014-07-03 19:31     ` erik quanstrom
@ 2014-07-04  7:56     ` kokamoto
  2014-07-04  8:20       ` fgergo
  1 sibling, 1 reply; 22+ messages in thread
From: kokamoto @ 2014-07-04  7:56 UTC (permalink / raw)
  To: 9fans

> I have no pi hardware now, 

I found the pi hardware is very cheap, 4500円 in Japan.
I also found 4 kinds of arm based hardware in the sources.
Which is the hardware we can buy now?

Kenji




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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-03  6:17   ` erik quanstrom
@ 2014-07-04  2:10     ` kokamoto
  0 siblings, 0 replies; 22+ messages in thread
From: kokamoto @ 2014-07-04  2:10 UTC (permalink / raw)
  To: 9fans

>> What did work was using 5c from /n/9atom (
>> http://comments.gmane.org/gmane.os.plan9.general/68992)!
> 
> hey, i like that solution.

I suppose you are kidding.
It's really dangerous to mix both distributions,
if you don't know what you are doing.☺

Kenji




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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-03  8:16   ` kokamoto
@ 2014-07-03 19:31     ` erik quanstrom
  2014-07-04  7:56     ` kokamoto
  1 sibling, 0 replies; 22+ messages in thread
From: erik quanstrom @ 2014-07-03 19:31 UTC (permalink / raw)
  To: 9fans

> I recompiled 5c, which purged the problem, thanks.
> One thing, recent pc/trap.c has validalign() function, which
> is expected in port/syscallfmt.c.   The trap.c in bcm has not.
> Then, I put void function on the filewhich proceeded compilation
> safely.

validalign should be in ../omap/arch.c, since bcm/arch.c is just
	#include "../omap/arch.c"
i see why this was done, but i've also tripped on this.  it seems
like there should be an easy way to avoid this issue, but i don't
currently know what it is.

- erik



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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-03  6:16 ` erik quanstrom
@ 2014-07-03  8:16   ` kokamoto
  2014-07-03 19:31     ` erik quanstrom
  2014-07-04  7:56     ` kokamoto
  0 siblings, 2 replies; 22+ messages in thread
From: kokamoto @ 2014-07-03  8:16 UTC (permalink / raw)
  To: 9fans

> have you recompiled the arm libraries and compiler/linker?
> there can be some chicken-and-egg problems with this but they
> are largely mitigated by the c compiler's do-it-yourself attitude.

I recompiled 5c, which purged the problem, thanks.
One thing, recent pc/trap.c has validalign() function, which
is expected in port/syscallfmt.c.   The trap.c in bcm has not.
Then, I put void function on the filewhich proceeded compilation
safely.

I have no pi hardware now, and ha no problem so far.
An solid solution would be wellcome.

Kenji




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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-03  6:15 ` Anant Narayanan
@ 2014-07-03  6:17   ` erik quanstrom
  2014-07-04  2:10     ` kokamoto
  0 siblings, 1 reply; 22+ messages in thread
From: erik quanstrom @ 2014-07-03  6:17 UTC (permalink / raw)
  To: 9fans

> What did work was using 5c from /n/9atom (
> http://comments.gmane.org/gmane.os.plan9.general/68992)!

hey, i like that solution.

- erik



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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-01 19:37 kokamoto
  2014-07-03  6:15 ` Anant Narayanan
@ 2014-07-03  6:16 ` erik quanstrom
  2014-07-03  8:16   ` kokamoto
  1 sibling, 1 reply; 22+ messages in thread
From: erik quanstrom @ 2014-07-03  6:16 UTC (permalink / raw)
  To: 9fans

> When to compile runebase.c in the port of libc, I got
> runebase.c: 1255 illegal rune in string, where
> the line is:
> 	0xfa6c,	0x242ee,	/* 𤋮 𤋮 */.
> 
> Of course ther are many similar error lines, where
> all the line have 5 digit value such as '0x242ee'.
> Is there any limitations arm rune definition?

have you recompiled the arm libraries and compiler/linker?
there can be some chicken-and-egg problems with this but they
are largely mitigated by the c compiler's do-it-yourself attitude.

- erik



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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-01 19:37 kokamoto
@ 2014-07-03  6:15 ` Anant Narayanan
  2014-07-03  6:17   ` erik quanstrom
  2014-07-03  6:16 ` erik quanstrom
  1 sibling, 1 reply; 22+ messages in thread
From: Anant Narayanan @ 2014-07-03  6:15 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 1108 bytes --]

I found an old thread with a series of steps that called for building the
compilers without runebase first then bringing runebase back into libc
after (https://groups.google.com/forum/#!topic/comp.os.plan9/rjFtp4F82U0) -
the steps didn't work for me though.

What did work was using 5c from /n/9atom (
http://comments.gmane.org/gmane.os.plan9.general/68992)!

-Anant


On Tue, Jul 1, 2014 at 12:37 PM, <kokamoto@hera.eonet.ne.jp> wrote:

> Thanks all.
> I made order the A68N-5000 board yesterday.
> I may have many difficulties to run Plan 9, (UEFI etc),
> in such case I'll run windows on it.☺
>
> By the way, I got attention to arm architecture now.
> I tried to compile raspberry pi on my plan9 machine, and
> got problem.
>
> When to compile runebase.c in the port of libc, I got
> runebase.c: 1255 illegal rune in string, where
> the line is:
>         0xfa6c, 0x242ee,        /* 𤋮 𤋮 */.
>
> Of course ther are many similar error lines, where
> all the line have 5 digit value such as '0x242ee'.
> Is there any limitations arm rune definition?
>
> Kenji
>
>
>

[-- Attachment #2: Type: text/html, Size: 1655 bytes --]

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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-01 21:39     ` Charles Forsyth
  2014-07-01 21:46       ` sl
@ 2014-07-01 22:03       ` Skip Tavakkolian
  1 sibling, 0 replies; 22+ messages in thread
From: Skip Tavakkolian @ 2014-07-01 22:03 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 556 bytes --]

Thanks.

> On Jul 1, 2014, at 2:39 PM, Charles Forsyth <charles.forsyth@gmail.com> wrote:
> 
> h% ls -l /n/sources/contrib/forsyth/Plan9*
> --rw-rw-r-- M 3231 forsyth sys 86727 Jul  1 22:35 /n/sources/contrib/forsyth/Plan9ServeronEC2.pdf
> 
> hget http://www.terzarima.net/dist/Plan9ServeronEC2.pdf | page -w
> 
> 
>> On 1 July 2014 21:07, <sl@9front.org> wrote:
>> > https://docs.google.com/document/d/1Drn3lm0g7C2zdzOj5x9hvhgVln13JoSx-zs_z1KEztI
>> 
>> Do you have a version of this document that is accessible from Plan 9?
>> 
>> sl
> 

[-- Attachment #2: Type: text/html, Size: 1311 bytes --]

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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-01 21:39     ` Charles Forsyth
@ 2014-07-01 21:46       ` sl
  2014-07-01 22:03       ` Skip Tavakkolian
  1 sibling, 0 replies; 22+ messages in thread
From: sl @ 2014-07-01 21:46 UTC (permalink / raw)
  To: 9fans

> /n/sources/contrib/forsyth/Plan9ServeronEC2.pdf

Thanks!

sl



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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-01 20:07   ` sl
  2014-07-01 20:26     ` Skip Tavakkolian
@ 2014-07-01 21:39     ` Charles Forsyth
  2014-07-01 21:46       ` sl
  2014-07-01 22:03       ` Skip Tavakkolian
  1 sibling, 2 replies; 22+ messages in thread
From: Charles Forsyth @ 2014-07-01 21:39 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 445 bytes --]

h% ls -l /n/sources/contrib/forsyth/Plan9*
--rw-rw-r-- M 3231 forsyth sys 86727 Jul  1 22:35
/n/sources/contrib/forsyth/Plan9ServeronEC2.pdf

hget http://www.terzarima.net/dist/Plan9ServeronEC2.pdf | page -w


On 1 July 2014 21:07, <sl@9front.org> wrote:

> >
> https://docs.google.com/document/d/1Drn3lm0g7C2zdzOj5x9hvhgVln13JoSx-zs_z1KEztI
>
> Do you have a version of this document that is accessible from Plan 9?
>
> sl
>
>

[-- Attachment #2: Type: text/html, Size: 966 bytes --]

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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-01 20:07   ` sl
@ 2014-07-01 20:26     ` Skip Tavakkolian
  2014-07-01 21:39     ` Charles Forsyth
  1 sibling, 0 replies; 22+ messages in thread
From: Skip Tavakkolian @ 2014-07-01 20:26 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

as soon as the US-Belgium match is over :)

On Jul 1, 2014, at 1:07 PM, sl@9front.org wrote:

>> https://docs.google.com/document/d/1Drn3lm0g7C2zdzOj5x9hvhgVln13JoSx-zs_z1KEztI
> 
> Do you have a version of this document that is accessible from Plan 9?
> 
> sl
> 



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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-01 19:52 ` Skip Tavakkolian
@ 2014-07-01 20:07   ` sl
  2014-07-01 20:26     ` Skip Tavakkolian
  2014-07-01 21:39     ` Charles Forsyth
  0 siblings, 2 replies; 22+ messages in thread
From: sl @ 2014-07-01 20:07 UTC (permalink / raw)
  To: 9fans

> https://docs.google.com/document/d/1Drn3lm0g7C2zdzOj5x9hvhgVln13JoSx-zs_z1KEztI

Do you have a version of this document that is accessible from Plan 9?

sl



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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-01 19:37 Richard Miller
@ 2014-07-01 19:52 ` Skip Tavakkolian
  2014-07-01 20:07   ` sl
  0 siblings, 1 reply; 22+ messages in thread
From: Skip Tavakkolian @ 2014-07-01 19:52 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 646 bytes --]

i have put some instructions together -- from Richard's 9fans posts and
email correspondences -- on how to install your own kernel once you've made
an instance using the AMI that Richard posted.   keep in mind that this
assumes you have a Plan 9 dev environment and you're generating the kernel
in that environment.

https://docs.google.com/document/d/1Drn3lm0g7C2zdzOj5x9hvhgVln13JoSx-zs_z1KEztI

-Skip



On Tue, Jul 1, 2014 at 12:37 PM, Richard Miller <9fans@hamnavoe.com> wrote:

> > What's the advantage for you guys to use XEN as apposed to kvm/qemu?
>
> http://thecloudmarket.com/image/ami-cfa332ff--plan9-fossil
>
>
>

[-- Attachment #2: Type: text/html, Size: 1211 bytes --]

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

* [9fans]  Kabini or Raspberry Pi?
@ 2014-07-01 19:37 Richard Miller
  2014-07-01 19:52 ` Skip Tavakkolian
  0 siblings, 1 reply; 22+ messages in thread
From: Richard Miller @ 2014-07-01 19:37 UTC (permalink / raw)
  To: 9fans

> What's the advantage for you guys to use XEN as apposed to kvm/qemu?

http://thecloudmarket.com/image/ami-cfa332ff--plan9-fossil




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

* [9fans]   Kabini or Raspberry Pi?
@ 2014-07-01 19:37 kokamoto
  2014-07-03  6:15 ` Anant Narayanan
  2014-07-03  6:16 ` erik quanstrom
  0 siblings, 2 replies; 22+ messages in thread
From: kokamoto @ 2014-07-01 19:37 UTC (permalink / raw)
  To: 9fans, 9fans

Thanks all.
I made order the A68N-5000 board yesterday.
I may have many difficulties to run Plan 9, (UEFI etc),
in such case I'll run windows on it.☺

By the way, I got attention to arm architecture now.
I tried to compile raspberry pi on my plan9 machine, and
got problem.

When to compile runebase.c in the port of libc, I got
runebase.c: 1255 illegal rune in string, where
the line is:
	0xfa6c,	0x242ee,	/* 𤋮 𤋮 */.

Of course ther are many similar error lines, where
all the line have 5 digit value such as '0x242ee'.
Is there any limitations arm rune definition?

Kenji




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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-01  0:39 ` Shane Morris
@ 2014-07-01  0:40   ` Shane Morris
  0 siblings, 0 replies; 22+ messages in thread
From: Shane Morris @ 2014-07-01  0:40 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 1935 bytes --]

Oh, and the RaspberryPi Mini ITX case - well, motherboard, see here:

http://www.geekroo.com/products/795

Enjoy!


On Tue, Jul 1, 2014 at 10:39 AM, Shane Morris <edgecomberts@gmail.com>
wrote:

> Hi Kenji,
>
> I can't vouch for the driver support of such a motherboard, thats best
> left to others. I must say, that is a nice looking motherboard, and I for
> one would be most curious if you were to get it working.
>
> Another alternative, that I am looking into with NUCs is perhaps a Xen
> server, again, better left to others to tell you the support, but at the
> risk of hijacking the thread (please fork it if you have info on Xen) if
> anyone has any information on Plan 9 and Xen, that would be most welcome
> too.
>
> Good luck with the venture and your retirement, and interesting news to
> hear the atomic power facilities are curtailing in your part of the world.
> We should talk about this in future, privately.
>
> Many thanks!
>
> Shane.
>
>
> On Tue, Jul 1, 2014 at 10:28 AM, <kokamoto@hera.eonet.ne.jp> wrote:
>
>> After I retired job (strictory semi-retired) I'm now running Plan9
>> only in my house.   Now, I'm hesitating to setup a C2D machine
>> as CPU/Auth/File server machine.    It eats high level of power.
>> Here in Japan, all the atomic power facilities is stopping.
>> In personal house, high performance is not so neccessary,
>> because most of the work will be done in terminals these days.
>> However, drawterm looks like very attractive for such purpose.
>> Then, CPU server is neccessary which is running all the day.
>>
>> I found AMD Kabini based onboard energy save motherboard
>> called A68N-5000(Biostar), which looks like very attractive
>> for my Plan9 CPU/Auth/File server.   Another candidate
>> is raspberry pi.   However, I wonder it has such as mini-ITX
>> case and power?
>>
>> How do you think about this?
>>
>> Kenji
>>
>>
>>
>

[-- Attachment #2: Type: text/html, Size: 2850 bytes --]

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

* Re: [9fans] Kabini or Raspberry Pi?
  2014-07-01  0:28 kokamoto
@ 2014-07-01  0:39 ` Shane Morris
  2014-07-01  0:40   ` Shane Morris
  0 siblings, 1 reply; 22+ messages in thread
From: Shane Morris @ 2014-07-01  0:39 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 1668 bytes --]

Hi Kenji,

I can't vouch for the driver support of such a motherboard, thats best left
to others. I must say, that is a nice looking motherboard, and I for one
would be most curious if you were to get it working.

Another alternative, that I am looking into with NUCs is perhaps a Xen
server, again, better left to others to tell you the support, but at the
risk of hijacking the thread (please fork it if you have info on Xen) if
anyone has any information on Plan 9 and Xen, that would be most welcome
too.

Good luck with the venture and your retirement, and interesting news to
hear the atomic power facilities are curtailing in your part of the world.
We should talk about this in future, privately.

Many thanks!

Shane.


On Tue, Jul 1, 2014 at 10:28 AM, <kokamoto@hera.eonet.ne.jp> wrote:

> After I retired job (strictory semi-retired) I'm now running Plan9
> only in my house.   Now, I'm hesitating to setup a C2D machine
> as CPU/Auth/File server machine.    It eats high level of power.
> Here in Japan, all the atomic power facilities is stopping.
> In personal house, high performance is not so neccessary,
> because most of the work will be done in terminals these days.
> However, drawterm looks like very attractive for such purpose.
> Then, CPU server is neccessary which is running all the day.
>
> I found AMD Kabini based onboard energy save motherboard
> called A68N-5000(Biostar), which looks like very attractive
> for my Plan9 CPU/Auth/File server.   Another candidate
> is raspberry pi.   However, I wonder it has such as mini-ITX
> case and power?
>
> How do you think about this?
>
> Kenji
>
>
>

[-- Attachment #2: Type: text/html, Size: 2136 bytes --]

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

* [9fans] Kabini or Raspberry Pi?
@ 2014-07-01  0:28 kokamoto
  2014-07-01  0:39 ` Shane Morris
  0 siblings, 1 reply; 22+ messages in thread
From: kokamoto @ 2014-07-01  0:28 UTC (permalink / raw)
  To: 9fans

After I retired job (strictory semi-retired) I'm now running Plan9
only in my house.   Now, I'm hesitating to setup a C2D machine
as CPU/Auth/File server machine.    It eats high level of power.
Here in Japan, all the atomic power facilities is stopping.
In personal house, high performance is not so neccessary,
because most of the work will be done in terminals these days.
However, drawterm looks like very attractive for such purpose.
Then, CPU server is neccessary which is running all the day.

I found AMD Kabini based onboard energy save motherboard
called A68N-5000(Biostar), which looks like very attractive
for my Plan9 CPU/Auth/File server.   Another candidate
is raspberry pi.   However, I wonder it has such as mini-ITX
case and power?

How do you think about this?

Kenji




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

end of thread, other threads:[~2014-07-04  8:20 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-01  7:58 [9fans] Kabini or Raspberry Pi? Richard Miller
2014-07-01 12:52 ` hiro
2014-07-01 12:54   ` hiro
  -- strict thread matches above, loose matches on Subject: below --
2014-07-01 19:37 kokamoto
2014-07-03  6:15 ` Anant Narayanan
2014-07-03  6:17   ` erik quanstrom
2014-07-04  2:10     ` kokamoto
2014-07-03  6:16 ` erik quanstrom
2014-07-03  8:16   ` kokamoto
2014-07-03 19:31     ` erik quanstrom
2014-07-04  7:56     ` kokamoto
2014-07-04  8:20       ` fgergo
2014-07-01 19:37 Richard Miller
2014-07-01 19:52 ` Skip Tavakkolian
2014-07-01 20:07   ` sl
2014-07-01 20:26     ` Skip Tavakkolian
2014-07-01 21:39     ` Charles Forsyth
2014-07-01 21:46       ` sl
2014-07-01 22:03       ` Skip Tavakkolian
2014-07-01  0:28 kokamoto
2014-07-01  0:39 ` Shane Morris
2014-07-01  0:40   ` Shane Morris

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).