[9fans] mounting inferno-exported, Linux filesystem under plan9

2011-05-12 Thread Derek Carter
here's a puzzler. Using hosted Inferno, I've exported a portion of my Linux host's filesystem using this syntax: ; styxlisten -A tcp!*!564 export '#U*'/tftpboot I can successfully mount the exported filesystem from the hosted Linux box using v9fs using this syntax on the Linux box.

Re: [9fans] mounting inferno-exported, Linux filesystem under plan9

2011-05-12 Thread Steve Simon
import(1) uses a cpu(1) channel for its comms, it starts export(1) at the remote end. What you want to use is srv(1). -Steve

Re: [9fans] mounting inferno-exported, Linux filesystem under plan9

2011-05-12 Thread Derek Carter
On 5/12/11 5:41 PM, Steve Simon wrote: import(1) uses a cpu(1) channel for its comms, it starts export(1) at the remote end. What you want to use is srv(1). -Steve Thanks, that did it. This is what I ended up using. 9fs tcp!10.XXX.XX.X!564 linux-mount -- Derek