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
fuse
|virtualfilesystem
Concept:
nc -lp 1234 -e fusexmp_server
nc 127.0.0.1 1234 -c "fusestream /mnt/tmp"
Advantages are:
- Easy implementation of servers in high level language (without need of any arch-dependent things like JNI or whatever)
- Simple ad-hoc networking filesystem out of the box.
- 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