Re: [9fans] 9 Games of Go

2009-08-31 Thread Fazlul Shahriar
It might be worth the effort to implement Go Text Protocol (http://www.lysator.liu.se/~gunnar/gtp/), just in case you're having trouble finding people to play with. Anyway, nice work. fhs 2009/8/31 Akshat Kumar : > With the hopes of playing Go amongst > fellow Plan 9 users, I've written a little

Re: [9fans] Someone made a Wayland compositor based on Rio, Wio

2019-05-02 Thread Fazlul Shahriar
I just gave it a try. Yes, wio can run inside wio. This is what I had to do to build it: git clone https://git.sr.ht/~sircmpwn/wio cd wio git clone https://github.com/swaywm/wlroots.git subprojects/wlroots meson build cd build ninja ./wio # pops up a window with wio fhs On Thu, May 2, 2019 at

Re: [9fans] I/O load crashes Qemu

2008-06-13 Thread Fazlul Shahriar
On Thu, Jun 12, 2008 at 9:54 PM, Venkatesh Srinivas <[EMAIL PROTECTED]> wrote: > Hi, > > I currently use Plan 9 in qemu 0.9.1; whenever I try to do anything I/O > demanding such as unpacking a ~100MB tarball, qemu locks up and refuses > further connections (via vnc, or gdb for example). I am using

[9fans] wiki sandbox

2008-06-26 Thread Fazlul Shahriar
Hello, I'm getting this error when trying to edit the wiki sandbox: Wiki commit 1018330739 12 -1: '/sys/lib/wiki/d/2.hist' permission denied I don't have sources account, so I'm 'none' fhs

Re: [9fans] 9vx os x

2008-06-29 Thread Fazlul Shahriar
> Does anyone else get errors about missing files when pulling? Many > other files are copied successfully before this: > > error: copying /n/boot/sys/src/games/mp3dec/COPYING: > '/n/boot/sys/src/games' does not exist > > error: copying /n/boot/sys/src/games/mp3dec/COPYRIGHT: > '/n/boot/sys/src/g

Re: [9fans] rc bug

2008-07-01 Thread Fazlul Shahriar
I saw something similar before, but unfortunately, the patch below doesn't fix it. cpu% fn 'file?' { test -f $* } cpu% 'file?' /LICENSE cpu% echo $status cpu% 'file?' /foo cpu% echo $status test 145387: false cpu% rc cpu% 'file?' /LICENSE rc: can't open /env/fn#file?: bad character in file name

[9fans] sftpfs

2008-07-02 Thread Fazlul Shahriar
Hello, I wrote a file server for the SSH File Transfer Protocol (SFTP). You can find it here: http://www.tip9ug.jp/who/fhs/sftpfs.tgz It implements version 3 of the protocol because that's the version most widely use. At least OpenSSH uses version 3. Also, it requires that you have th

Re: [9fans] sftpfs

2008-07-02 Thread Fazlul Shahriar
> Please could you put it in sources/contrib rather than in an external host? I will once I get my contrib directory. fhs

Re: [9fans] pull in 9vx

2008-07-02 Thread Fazlul Shahriar
Try the plan9port tar: $ 9 bunzip2 < plan9.tar.bz2 | 9 tar x $ > I got crazy permissions here?! > > $ tar jxf plan9.tar.bz2 > tar: plan9/mnt/exportfs/16: Cannot mkdir: Permission denied > tar: plan9/mnt/exportfs/1: Cannot mkdir: Permission denied > tar: plan9/mnt/exportfs/10: Cann

Re: [9fans] Running 9vx.OSX on full plan 9 distribution

2008-09-23 Thread Fazlul Shahriar
On Tue, Sep 23, 2008 at 7:34 PM, <[EMAIL PROTECTED]> wrote: > // 9vx hangs at the upas/fs invocation in /usr/glenda/lib/profile. > > This is a known bug, although last i heard the cause was still a bit > of a mystery. Locally, I run upas/fs -n in my termrc, and then open > mailboxes I want explici

Re: [9fans] mkindex of dict(7)

2009-01-06 Thread Fazlul Shahriar
Hi, You need to sort your index file. Looks like dict(7) is doing binary search on it. After sorted, it works fine. fhs On Tue, Jan 6, 2009 at 12:34 AM, Akshat Kumar wrote: > Regarding the dict index files, what I understand is that dict(7) > receives a pattern (may also be a byte offset or wha

Re: [9fans] Desktop File for Acme [plan9port]

2019-09-11 Thread Fazlul Shahriar
This works for me: $ cat ~/.local/share/applications/acme.desktop [Desktop Entry] Version=1.0 Type=Application Categories=Development Name=Acme Comment= Exec=/home/fhs/bin/sh/acmestart Icon=/usr/local/plan9/mac/spaceglenda.png Path=/home/fhs Terminal=false StartupNotify=false On Wed, Sep 11, 2019

Re: [9fans] moving 9fans to new server, but still 9fans@9fans.net

2019-10-24 Thread Fazlul Shahriar
Does 9fans-requ...@9fans.net still work for subscription? Can someone update https://9p.io/wiki/plan9/mailing_lists/ since that's the first result of a web search. On Fri, Oct 11, 2019 at 12:58 PM Russ Cox wrote: > As you may know from the thread back in August, we've been running 9fans > on a s

Re: [9fans] Is the vanilla Plan 9 still alive?

2019-11-21 Thread Fazlul Shahriar
9legacy might interest you: http://www.9legacy.org/intro.html On Fri, Nov 22, 2019 at 1:29 AM wrote: > The site hasn't been updated since 2014-2015. If it's dead, is there any > chance of it coming back into development? > *9fans * / 9fans / see discussions >

Re: [9fans] Is the vanilla Plan 9 still alive?

2019-11-24 Thread Fazlul Shahriar
On Sun, Nov 24, 2019 at 12:32 PM wrote: > > This is a good idea. Let me know how do you want to proceed. > > I will be busy working on other systems until December, > but when I get back, I'll just make the chages to the > wiki. If it's not editable, I'll email a patch to the > 9fans list. The

Re: [9fans] git9 on 9legacy

2019-12-05 Thread Fazlul Shahriar
Very cool. I just tried and it seems to work. patch/apply rc-line-split This patch does not apply cleanly on 9legacy because of conflict with rc-badrunes patch (see http://www.9legacy.org/patch.html) which is included in 9legacy CD image. I've installed the commands in a "git9" directory

Re: [9fans] go on plan9 - what doesn’t work?, ports list?

2019-12-28 Thread Fazlul Shahriar
Hi, I believe Multicast works. There are some basic tests at https://golang.org/src/net/udpsock_plan9_test.go. It should work on all three architectures. I don't know of any ports list. In general everything should work unless it's doing something non-portable. I recently played around with go-gi

Re: [9fans] Software preservation in the post-hg era

2020-03-30 Thread Fazlul Shahriar
> > As a footnote, there's a decent git client written in Go that works > alright on plan9 [4], but it's slow and memory intensive at the > moment. go-git also works well. I recently wrote a wrapper around it for plan9: https://github.com/fhs/gig -- 9fans

Re: [9fans] Software preservation in the post-hg era

2020-03-31 Thread Fazlul Shahriar
It's worth highlighting the fact that Bitbucket will be deleting *all* hg repositories on May 30, 2020. Thankfully, the Software Heritage ( https://www.softwareheritage.org/) seems to be doing a great job of archiving all open source work. For example: https://archive.softwareheritage.org/browse/or

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

2020-04-04 Thread Fazlul Shahriar
There is a PR open with Plan 9 devdraw support to 9fans.net/go/draw: https://github.com/9fans/go/pull/28 It at least works with the Go acme port Edwood last I tested. On Sat, Apr 4, 2020 at 4:33 PM Jeremy Jackins wrote: > Well, you need a Go draw package in place of the C library. There is a > d

Re: [9fans] various problems with installing go lang

2020-10-24 Thread Fazlul Shahriar
You don't need git. Try this: % GO111MODULE=on go get github.com/henesy/disco On Sat, Oct 24, 2020 at 1:32 AM wrote: > > Since having the git rc script in either /bin/amd64, $home/bin or > $home/bin/rc didnt work > i just had it put it in the same directory that i was running go get from > it re

Re: [9fans] authoritative source for u9fs?

2021-01-22 Thread Fazlul Shahriar
Actually, I only know of one u9fs that is being maintained: https://bitbucket.org/plan9-from-bell-labs/u9fs/src/master/ I think most of the others you may find on github are (outdated) mirror of this one. On Fri, Jan 22, 2021 at 3:02 AM Dworkin Muller wrote: > > My initial installation/playing w

Re: [9fans] sshnet and the go dns resolver

2021-02-23 Thread Fazlul Shahriar
The Go net package uses /net/cs and /net/dns. I see sshnet doesn't create /net/dns. That could be the issue. fhs On Tue, Feb 23, 2021 at 4:35 PM Steve Simon wrote: > hi, > > the senerio - i have a plan9 terminal, a mac laptop. the laptop connects > to a vpn. > > i write in go, and thus far i

Re: [9fans] Connecting to the wiki from linux with plan9port

2021-11-13 Thread Fazlul Shahriar
srv 'net!9p.io!wiki' wiki 9p read wiki/Acme_wiki_instructions/current I'm not aware of a port of the acme client. On Fri, Nov 12, 2021 at 2:21 PM Cam wrote: > > I'm assuming it's possible to mount the wiki using plan9port however I > haven't been able to find documentation on it. If it is indee

Re: [9fans] Plan 9 Go (Was: GNU/Linux/Plan 9 disto)

2011-07-14 Thread Fazlul Shahriar
On Thu, Jul 14, 2011 at 4:21 PM, Lucio De Re wrote: > It is possible to cross-compile Go on Linux for Plan 9, the details are > a bit vague and I, for one, would not mind somebody rehashing them here > or providing a pointer to them. I have a script shown below that I source. Then, running ./make

Re: [9fans] mail client; general question web vs command

2011-08-11 Thread Fazlul Shahriar
I just tried -- it works fine with gmail. mailfs -t imap.gmail.com# -t enable TLS It'll ask your for your username/password. Then start Mail in acme. mailfs will look for stunnel in your system. In my system, it found stunnel 4, which it doesn't know how to use. So, I had to point it to stunn

Re: [9fans] simple venti demo:

2011-08-11 Thread Fazlul Shahriar
> Is it goinstallable?  If so, I'm not sure what I'm doing wrong.  I very > rarely use any 3rd party Go code but my own :-). goinstall govt.googlecode.com/hg/vt/vtclnt goinstall govt.googlecode.com/hg/vt/vtsrv Works for me. fhs

Re: [9fans] simple venti demo:

2011-08-11 Thread Fazlul Shahriar
On Thu, Aug 11, 2011 at 5:42 PM, David Leimbach wrote: > > > On Thu, Aug 11, 2011 at 2:19 PM, Fazlul Shahriar > wrote: >> >> > Is it goinstallable?  If so, I'm not sure what I'm doing wrong.  I very >> > rarely use any 3rd party Go code but my own

Re: [9fans] mail client; general question web vs command

2011-08-13 Thread Fazlul Shahriar
> % mailfs -t imap.gmail.com > /sbin/stunnel exec failed at /usr/sbin/stunnel3 line 39. > mailfs: imapconnect: no greeting I think your stunnel3 is broken. stunnel3 is actually a perl script that runs stunnel 4. In your case, it thinks stunnel 4 is at /sbin/stunnel, but it's not. fhs

Re: [9fans] searching in email using imap

2011-08-27 Thread Fazlul Shahriar
If you're using the p9p mailfs, you can do this: echo keyword | 9p rdwr mail/mbox/search and it'll print the ids of the matched messages. I don't think an interface for this exists in acme Mail. fhs On Sat, Aug 27, 2011 at 2:55 PM, Rudolf Sykora wrote: > Hello, > > when using gmail via web