From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <6bd9d8ab7be366ce990e3d03e9eefeb9@swtch.com> To: fernanbolando@mailc.net, 9fans@cse.psu.edu Subject: Re: [9fans] v9fs and Russ tra From: "Russ Cox" Date: Sat, 1 Apr 2006 16:14:04 -0500 In-Reply-To: <1d5d51400604011135w53273453vd493784c2b61146d@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Cc: Topicbox-Message-UUID: 2bb23270-ead1-11e9-9d60-3106f5b1d025 > running listen tcp!*!564 and il!*!17008 did the trick with the > fossil not listening. Now I am getting "permission denied" so I guess > this is is what you meant by auth problems. If you have p9p installed, that's enough to mount with v9fs. You can use srv -a to get a preauthenticated Unix socket and then just mount it like any other Unix socket. For example, if I use: srv -a sources.cs.bell-labs.com sources sudo mount -t 9P -o user=$USER,uid=`id -u`,gid=`id -g`,proto=unix \ `namespace`/sources /n/sources then I can read and write files on sources. > [question about tra and plan 9] Tra doesn't run on Plan 9 just now. It is based on p9p, so it shouldn't be hard to get up and running. I reworked most of it recently so it is unproven. I'd only use it with regular backups for now. Russ