filesystems - Using FUSE With A Parititon -
i've implemented (very) basic filesystem using fuse. of right now, way fuse mounts system with:
./myfusesystem /path/to/mountpoint this , good, , creates proper layer on mountpoint. i'm not attempting build virtual filesystem; i'm working on on-disk filesystem data stored disk partition. thus, want use fuse filesystem actual device partition, like:
./myfusesystem /dev/sdd2 /path/to/mountpoint ...where data stored persistently on partition. can done fuse? if so, how? cannot find references in documentation or tutorials i've read.
fuse lets store data anywhere, if want use partition storage, it's job read/and write data from/to it.
Comments
Post a Comment