> For what you say I think that your plumber might not be configured or
> that something happen with the configuration file after view tried to plumb
> it.
>
> In the worst case I can just send you my configuration files :)
It's not configuration problem, but, maybe, different version of
inferno. I versioned up my inferno to run it on my Ubuntu 11.10.
In the funtion of viewcmd() of /usr/octopus/port/lib/view.b, the line
r := os->filename(file);
gives the r="/usr/octopus/tmp/view.2.DSCN1549.jpg",
even the file="/tmp/view.2.DSCN1549.jpg is given".
Then, I changed the lines:
"Plan9" or "PlanB" =>
cmd=sprint("plumb %s", r);
to
"Plan9" or "PlanB" =>
cmd=sprint("plumb %s", file);
That's all.
Now I'm viewing the jpg image by !cp DSCN1549.jpg /mnt/view
Kenji