Re: [9fans] raspberry pi root over tcp

2016-11-24 Thread Steve Simon
hi, i haven't tried using a pi as an authority server, i have run one as a disk less terminal booting off my file server. i will try this again tonight as i have been meaning to do so, i will report back later... -Steve > On 24 Nov 2016, at 17:48, James A. Robinson

[9fans] raspberry pi root over tcp

2016-11-24 Thread James A. Robinson
Hi folks, I can boot a raspberry pi using its local fossil, and I can mount a remote fileserver using 9fs once it is booted. Next, I wanted to try and mount the filesystem as the pi's root. Based on this http://man.cat-v.org/plan_9/8/plan9.ini http://man.cat-v.org/plan_9/8/boot I tried using

Re: [9fans] Partition problems

2016-11-24 Thread Iruatã Souza
I forgot only mac os should be mentioned, sorry. Em 23/11/2016 4:00 PM, "Sigrid Haflinadóttir" < sigrid.haflinadot...@gmail.com> escreveu: > He didn't ask about 9front. > > On Wed, Nov 23, 2016 at 4:13 PM, Iruatã Souza wrote: > >> 9front solved that 5 years ago. >> >> On

Re: [9fans] How to take a portion of a screenshot

2016-11-24 Thread cinap_lenrek
rc variables are lists, and $#var evalulates to the length of the list... you can use that to make counters by concatenating elements to a list: term% a=() while(! ~ $#a 13){echo $#a $a; a=(1 $a);} 0 1 1 2 1 1 3 1 1 1 4 1 1 1 1 5 1 1 1 1 1 6 1 1 1 1 1 1 7 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 9 1 1 1 1