Live data from Hacker News

Whither Plan 9? History and motivation

pub.gajendra.net

11–19 of 19 posts

Re: Whither Plan 9? History and motivation

#11
post #5

Anyone had any experience running the RaspberryPi Plan9? It seems like the ideal way to set up a small cluster using some cheap RaspberryPi Zeros as compute, maybe one for file storage and another as a terminal.

The Plan9 raspberry pi is probably the easiest way to get Plan 9 up and running, but not very powerful. The default image only has a 2gb partition. If you're interested in venti, it's a difficult process that needs to be manually set up (vs the ISO installer where it just asks you if you want to install fossil or fossil+venti) It makes a great introduction to Plan 9, and would probably make a great terminal for an existing Plan 9 cluster, but I wouldn't try making a cluster of them.

I use mine as a login server (and something to drawterm into when I want to play around with Plan 9 without booting up a VM), which is a great use case for it. I initially wanted to use it for Go development, but:

1. I had to start by writing a git client, which I never finished enough to be useable.

2. plan9/arm is only in Go tip (and will be in 1.7)

Re: Whither Plan 9? History and motivation

#12
post #11
post #5

Anyone had any experience running the RaspberryPi Plan9? It seems like the ideal way to set up a small cluster using some cheap RaspberryPi Zeros as compute, maybe one for file storage and another as a terminal.

The Plan9 raspberry pi is probably the easiest way to get Plan 9 up and running, but not very powerful. The default image only has a 2gb partition. If you're interested in venti, it's a difficult process that needs to be manually set up (vs the ISO installer where it just asks you if you want to install fossil or fossil+venti) It makes a great introduction to Plan 9, and would probably make a great terminal for an ex…

Interesting stuff. I was always intrigued by Plan9 (via Go). The same thought had crossed my mind too, that Plan9 may be a great dev environment for Go; apparently the 9p package is excellent.

Re: Whither Plan 9? History and motivation

#13
post #4

Not knowing the details but reflecting on what the summary said and what I do know of Xwindows style systems... Plan 9 sure puts a lot of trust in the network. We have learned, since that time, that trusting the network isn't really a good idea. Even a local network might not really be trustworthy. The division of services that they describe sounds quite wonderful for normal office tasks; but doesn't work well for ne…

> Plan 9 sure puts a lot of trust in the network.

I don't know how true that really is. It certainly trusts that the network is there, and after authentication/authorisation it trusts that network devices are not malicious — but that's no different from anything else.

I do think that there's some excellent work yet to be done in authenticating local networks. How do I know that the DHCP server I'm talking to is the right DHCP server for my network? How do I know that the WiFi access point I'm talking to actually is who it says it is?

Really, that is a specific instance of the broader problem of naming. I don't have an answer, but I'd love to read some attempts to get at the answer.

Re: Whither Plan 9? History and motivation

#14
post #9
post #4

Not knowing the details but reflecting on what the summary said and what I do know of Xwindows style systems... Plan 9 sure puts a lot of trust in the network. We have learned, since that time, that trusting the network isn't really a good idea. Even a local network might not really be trustworthy. The division of services that they describe sounds quite wonderful for normal office tasks; but doesn't work well for ne…

Trust as in uptime or trust as in mitm etc? All 9p can be over Ssl, authorisation server is not the same machine as the file server / compute server. This is worse than ssh how?

I had no idea it supported SSL (I assume modern versions TLS?), that actually is more forward thinking then I had supposed was involved given it's age.

Re: Whither Plan 9? History and motivation

#15
post #13
post #4

Not knowing the details but reflecting on what the summary said and what I do know of Xwindows style systems... Plan 9 sure puts a lot of trust in the network. We have learned, since that time, that trusting the network isn't really a good idea. Even a local network might not really be trustworthy. The division of services that they describe sounds quite wonderful for normal office tasks; but doesn't work well for ne…

> Plan 9 sure puts a lot of trust in the network. I don't know how true that really is. It certainly trusts that the network is there , and after authentication/authorisation it trusts that network devices are not malicious — but that's no different from anything else. I do think that there's some excellent work yet to be done in authenticating local networks. How do I know that the DHCP server I'm talking to is the…

[deleted]

Re: Whither Plan 9? History and motivation

#16
post #14
post #9

Earlier quoted context omitted.

Trust as in uptime or trust as in mitm etc? All 9p can be over Ssl, authorisation server is not the same machine as the file server / compute server. This is worse than ssh how?

I had no idea it supported SSL (I assume modern versions TLS?), that actually is more forward thinking then I had supposed was involved given it's age.

You can wrap any connection in SSL, no extra code required. Single point of update / failure. Sigh Plan9 makes the impossible simple, every user I know laments going back to Unixes. "No problem, I'll just.... Oh, not plan9"

Re: Whither Plan 9? History and motivation

#17
post #14
post #9

Earlier quoted context omitted.

Trust as in uptime or trust as in mitm etc? All 9p can be over Ssl, authorisation server is not the same machine as the file server / compute server. This is worse than ssh how?

I had no idea it supported SSL (I assume modern versions TLS?), that actually is more forward thinking then I had supposed was involved given it's age.

Actually, the opposite is the case. SSL is not forward in any way. That's why in the post above you can find cinap hinting towards the much more clean alternative he implemented for the 9front specific protocols, without any need of horrible certificates.

Re: Whither Plan 9? History and motivation

#18
post #14

Earlier quoted context omitted.

I had no idea it supported SSL (I assume modern versions TLS?), that actually is more forward thinking then I had supposed was involved given it's age.

You can wrap any connection in SSL, no extra code required. Single point of update / failure. Sigh Plan9 makes the impossible simple, every user I know laments going back to Unixes. "No problem, I'll just.... Oh, not plan9"

This is not specific to plan9. SSL sucks on all systems.

Re: Whither Plan 9? History and motivation

#19
post #18

Earlier quoted context omitted.

You can wrap any connection in SSL, no extra code required. Single point of update / failure. Sigh Plan9 makes the impossible simple, every user I know laments going back to Unixes. "No problem, I'll just.... Oh, not plan9"

This is not specific to plan9. SSL sucks on all systems.

I think the parent comment was actually referring to the flexibility and ease of tunneling connections/services through SSL on Plan 9 versus on unices. It's the generality of the way Plan 9 handles it (everything is a file) that makes life easy.
Post reply on HN