[9fans] FUSE on Plan9

2014-12-12 Thread Jens Staal
This might not be popular among most Plan9 users, but I started thinking about the possibility of FUSE on Plan9 after seeing the FUSE on WebDAV [1] project. At least on 9front, WebDAV should be integrated in webfs. Would this theoretically work? The advantage of FUSE is access to a number of

Re: [9fans] FUSE on Plan9

2014-12-12 Thread Anthony Sorace
On Dec 12, 2014, at 05:49, Jens Staal staal1...@gmail.com wrote: Would this theoretically work? The advantage of FUSE is access to a number of popular file systems (most notably ext4, NTFS, ZFS) and also many special- purpose file systems. It's been a few years since I really looked at

Re: [9fans] FUSE on Plan9

2014-12-12 Thread Anthony Sorace
What might be more interesting is a 9pfuse, analogous to davfuse (thus the opposite of the thing in p9p now), running on Unix. That way you have a high probability of working with the existing fuse plugs, without having to do any porting work there, and plan 9 systems can still get at them.

Re: [9fans] FUSE on Plan9

2014-12-12 Thread Skip Tavakkolian
Drawterm exports local fs (ntfs, ext, etc.) to plan 9; you could make an exportfs only version. Russ did 9pfuse several years ago; allows fuse fs access to Plan 9 file server. iirc worked with Linux and Mac OS X. On Dec 12, 2014, at 2:49 AM, Jens Staal staal1...@gmail.com wrote: This

Re: [9fans] FUSE on Plan9

2014-12-12 Thread cinap_lenrek
steve quintile wrote a webdav filesystem (that uses webfs). see /n/sources/contrib/steve/wdfs.tbz i dont see why webdav should be integrated in webfs. webfs is plan9's low-level http library. -- cinap

Re: [9fans] FUSE on Plan9

2014-12-12 Thread Jens Staal
On Friday 12 December 2014 17:36:52 cinap_len...@felloff.net wrote: steve quintile wrote a webdav filesystem (that uses webfs). see /n/sources/contrib/steve/wdfs.tbz i dont see why webdav should be integrated in webfs. webfs is plan9's low-level http library. OK then I just mis-understood

Re: [9fans] FUSE on Plan9

2014-12-12 Thread cinap_lenrek
why do you insist on fuse? it looks really complicated and linux specific to me. the work of reimplementing linux in plan9 with symlinks, ioctls, select might be far more complicated than just porting ntfs driver to a lib9p fileserver without reimplementing a linux emulation environment to run

Re: [9fans] FUSE on Plan9

2014-12-12 Thread Quintile
there is a WebDAV client in my contribution adds, which sits on top of webfs. steve On 12 Dec 2014, at 10:49, Jens Staal staal1...@gmail.com wrote: This might not be popular among most Plan9 users, but I started thinking about the possibility of FUSE on Plan9 after seeing the FUSE on