Implemenation of a pass through file system
Posted
by
user3491505
on Stack Overflow
See other posts from Stack Overflow
or by user3491505
Published on 2014-06-13T15:21:49Z
Indexed on
2014/06/13
15:24 UTC
Read the original article
Hit count: 150
Can anyone give me inputs on how to implement a pass through filesystem using fuse?? What I mean by this is that you mount your FUSE file system somewhere (say in /mnt) such that the FUSE file system passes all filesystem calls to some other place (say /home/user). For example, when you go into the /mnt directory and run "ls", this would pass the file system calls to execute ls through and run them on /home/user, such that the directory contents of /home/userwould be listed
© Stack Overflow or respective owner