Is there already FUSE filesystem that serialise each request to stream?

Posted by Vi on Stack Overflow See other posts from Stack Overflow or by Vi
Published on 2011-01-02T04:51:02Z Indexed on 2011/01/02 4:53 UTC
Read the original article Hit count: 208

Filed under:
|

Concept:

nc -lp 1234 -e fusexmp_server
nc 127.0.0.1 1234 -c "fusestream /mnt/tmp"

Advantages are:

  1. Easy implementation of servers in high level language (without need of any arch-dependent things like JNI or whatever)
  2. Simple ad-hoc networking filesystem out of the box.
  3. Accessibility without actual FUSE (when it is inaccessible):
nc -lp 1234 -e fusexmp_server&
fakefusestream 127.0.0.1 1234
% ls
bin lib usr proc etc
% get /etc/hosts
% exit

Is there already such thing or I should implement it?

© Stack Overflow or respective owner

Related posts about fuse

Related posts about virtualfilesystem