Re: [9fans] Can't start multiple copies of acme

2013-12-16 Thread dexen deVries
i'm using two Acmes all the time, with: <<<'EOF' #!/usr/bin/env rc flag e + NAMESPACE=`{namespace}^-2 mkdir -p `{namespace} plumber || true exec acme EOF; of course plumber sends to the first copy. -- dexen deVries [[[↓][→]]] Take care of the luxuries and the necessities will take care

Re: [9fans] Can't start multiple copies of acme

2013-12-15 Thread Blake McBride
As I am sure you would agree, a lot of real, interesting, important, and valuable work gets done on POSIX systems. I'm sure we'd all agree that Plan-9 adds important ideas to those already present in POSIX. While some of the implementation specifics of Plan-9 may be "hard to bold" onto a POSIX sy

Re: [9fans] Can't start multiple copies of acme

2013-12-15 Thread Bence Fábián
> On a semi-different note, I understand the great advancement Plan-9 > brings to the table with respect to making all operations part of > the file system. On the flip side, I do not understand the benefit > p9p brings to the table with bind and friends. It is too much of > a tack-on IMO. I dee

Re: [9fans] Can't start multiple copies of acme

2013-12-15 Thread Blake McBride
On Sun, Dec 15, 2013 at 10:00 AM, erik quanstrom wrote: > On Sun Dec 15 10:23:13 EST 2013, bl...@mcbride.name wrote: > > > I checked. The following shell script does the trick: > > > > > > # > > mkdir /tmp/acme-$$ > > NAMESPACE=/tmp/acme-$$ acme "$@" > > this is swimming up stream. acme's model

Re: [9fans] Can't start multiple copies of acme

2013-12-15 Thread Bence Fábián
I don't say it is very common, but I do run multiple acmes under Plan 9 sometimes. With vastly different name spaces. 2013/12/15 erik quanstrom > On Sun Dec 15 10:23:13 EST 2013, bl...@mcbride.name wrote: > > > I checked. The following shell script does the trick: > > > > > > # > > mkdir /tmp/

Re: [9fans] Can't start multiple copies of acme

2013-12-15 Thread erik quanstrom
On Sun Dec 15 10:23:13 EST 2013, bl...@mcbride.name wrote: > I checked. The following shell script does the trick: > > > # > mkdir /tmp/acme-$$ > NAMESPACE=/tmp/acme-$$ acme "$@" this is swimming up stream. acme's model is to run 1 copy of acme, and edit all files in it. many things, such as

Re: [9fans] Can't start multiple copies of acme

2013-12-15 Thread Blake McBride
I checked. The following shell script does the trick: # mkdir /tmp/acme-$$ NAMESPACE=/tmp/acme-$$ acme "$@" On Fri, Dec 13, 2013 at 11:31 AM, User & wrote: > you may change $NAMESPACE, cf. intro(4) > > % mkdir /tmp/foo; NAMESPACE=/tmp/foo acme > >

Re: [9fans] Can't start multiple copies of acme

2013-12-15 Thread
you may change $NAMESPACE, cf. intro(4) % mkdir /tmp/foo; NAMESPACE=/tmp/foo acme

Re: [9fans] Can't start multiple copies of acme

2013-12-14 Thread Uvelichitel
Neither canonical, nor idiomatic solution but quick and dirty would be just "sudo acme" in acme Win. That way I usually get acme with full permission in second window. Surely, what Aram say is the correct way to do things. Ilya.

Re: [9fans] Can't start multiple copies of acme

2013-12-13 Thread Aram Hăvărneanu
See Plumber.app too. -- Aram Hăvărneanu

Re: [9fans] Can't start multiple copies of acme

2013-12-13 Thread Bence Fábián
Hi! Thanks for the interest in plan 9. Three things: If you have a question try searching http://9fans.net/archives/ To open files with p9p applications use the plumber (acme is much better when the plumber is running too). Read the manpage and the paper. There are some pretty cool examples on th