[9fans] plan9port fossil

2020-03-09 Thread kim . lassila
Does anyone run fossil from plan9port? Is it stable? I am thinking of setting up a fossil + venti fileserver on Linux that Plan 9 terminals and cpu servers can connect to. Any recommendations for/against this? -- 9fans: 9fans Permalink: https://9fans.topi

Re: [9fans] plan9port fossil

2020-03-19 Thread Kim Lassila
> On Mar 18, 2020, at 5:37 PM, Steven Stallion wrote: > > http://9p.io/sources/contrib/stallion/venti/. > > I've been using this configuration since 2013 without any data > loss/corruption that I'm aware of. Thank you Steve. Your mkventi script and the attached notes are very helpful, an

[9fans] changing the mac address of an ethernet device

2020-03-21 Thread kim . lassila
How can I change the MAC address of an ethernet device? For example e1000 or virtio driver. -- 9fans: 9fans Permalink: https://9fans.topicbox.com/groups/9fans/T6406761c5c309c4b-Mf5f5affd575997599ee76d8a Delivery options: https://9fans.topicbox.com/groups/9f

Re: [9fans] Plan9 on virtual machine in Mac os

2020-03-25 Thread Kim Lassila
On Mar 25, 2020, at 3:32 AM, Mark Everett wrote: > > Does anyone know of a virtual machine running on current Mac OS that hosts > plan9? Preferably one that isn’t too difficult to set up…. Hi Mark, I run both 9front and 9legacy on macOS with Qemu. The installation of qemu 4.2.0 was a breeze

Re: [9fans] iOS drawterm

2020-03-25 Thread Kim Lassila
> On Mar 25, 2020, at 8:19 AM, Anthony Sorace wrote: > > With iOS getting first-class mouse pointer support, I’m looking at the iOS > drawterm port again. Has anyone touched this since the old GSoC project bit > rotted out? Drawterm is quite slow at reading and writing pixels on the screen.

Re: [9fans] iOS drawterm

2020-03-25 Thread Kim Lassila
On Mar 25, 2020, at 14:42, Jeremy O'Brien wrote: > > http://man.9front.org/1/vnc ? > > Unless you're talking about legacy Plan 9? Yes, I have tested vncs and vncv in 9front. They were written for the old protocol version 3.3 which does not support local mouse cursor or resizing the screen. It

Re: [9fans] plan9port fossil

2020-04-04 Thread Kim Lassila
On Apr 2, 2020, at 4:23 AM, Jeremy Jackins wrote: > > I hacked it a bit to make it work for me. I don't remember if there > was a problem with the normal setup or if I just wanted different > ergonomics. Thanks to your words of encouragement I have been successfully running both venti and fossi

[9fans] a simple graphical application in Go?

2020-04-04 Thread Kim Lassila
Has anyone written a graphical application in Go on Plan 9? How would the Go equivalent of black.c (thank you fgb) look like? - - - clip - - - #include #include #include void main(int, char *argv[]) { Rectangle rect; Image *black; fmtinstall('R', Rfmt);

Re: [9fans] a simple graphical application in Go?

2020-04-04 Thread Kim Lassila
On Apr 5, 2020, at 12:37 AM, Chris McGee wrote: > > You can try this Go library by mischief and some examples in the cmd package: > https://bitbucket.org/mischief/draw9/src/default/ > Thank you, thank you! Here is the Go version of black.c: pa