Re: [9fans] Dvd-rw

2016-11-24 Thread Prof Brucee
Fixed. I used bundle to make a file that was copied to the dvd-rw, strings and grep to find the bundle and dd to get the contents. As insane as the udf format is now I have a 64 bit arm compiĺer suite. Brucee On 18/10/2016 4:12 PM, "Graham Gallagher" wrote: > If 9660srv doesn't work then I'm no

Re: [9fans] raspberry pi root over tcp

2016-11-24 Thread Richard Miller
> panic: boot process died: undefined instruction: pc 0x605c I bet that's a SWPW instruction - valid for armv5, deprecated for armv6, and illegal for armv7. You probably want to apply patch/armv7-atomic on your server and rebuild the arm binaries. If you're booting any old armv5 machines from th

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 wrote: > > Hi folks, > >

[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 th

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 Mon, Nov 21, 2016 at 5:2

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