fuse Questions

2

Solved

I'm working on a project that is being hosted on Amazon Web Services. The server setup consists of two EC2 instances, one Elastic Load Balancer and an extra Elastic Block Store on which the web app...
Petard asked 7/5, 2013 at 21:7

1

trying to get my own filesystem working using fuse (filesystem in user space, linux) im really curious on where to get detailed up to date documentation of the operations used? most time i s...
Agraffe asked 24/3, 2013 at 21:24

2

(bash) For a particular directory, I need to discover the maximum file size supported by that filesystem. The filesystem in question is probably mounted from external USB media, and might be FAT32,...
Vladikavkaz asked 21/2, 2014 at 6:17

1

I mount an sshfs file system with % sshfs remote.host.org:/home/jrm /home/mnt/remote.host then edit a file under this file system with % emacsclient -n /home/mnt/remote.host/some_file.c. When...
Aristotelianism asked 21/2, 2012 at 23:57

2

When I try to umount the FUSE file system, I get an error: root@ubuntu:/home/fufs/src# fusermount -u /tmp/kpfss fusermount: failed to unmount /tmp/kpfss: Invalid argument root@ubuntu:/home/fufs/sr...
Bunk asked 7/8, 2012 at 10:48

2

Solved

Using S3FS and FUSE to mount a S3 bucket to an AWS EC2 instance, I encountered a problem whereby my S3 files are being updated, but the new files doesn't adopt the proper permission. The ACL right...
Furtherance asked 7/8, 2013 at 4:12

1

Solved

I'm implementing a FUSE filesystem intended to provide access via familiar POSIX calls to files which are actually stored behind a RESTful API. The filesystem caches files once they've been retriev...
Aniakudo asked 27/8, 2013 at 16:46

2

I'm using sshfs on macosx 10.7 in my every day job. To install sshfs I have used macport: "port install fuse4x sshfs". The todays error: $ sshfs [email protected]:/path myfolder fuse4x clie...
Salicylate asked 16/10, 2012 at 8:39

3

I'm developing a FUSE app that takes a directory with mp3's and mounts a filesystem in another directory with the following structure (according to their tag's): Artist1 | -----> Album11 | ...
Haruspex asked 23/5, 2011 at 10:50

1

Solved

I'm making a project and I have to use FUSE. I have to install libfuse2 and libfuse-dev (for ubuntu) but I'm not founding this libraries for fedora, could you tell me what are the equivalent libs f...
Halothane asked 19/11, 2012 at 15:52

2

I am trying to implement a basic file system using Fuse Low level API. for basic read/write/mknod operations. Will be grateful if any one can point to some examples, there is no documentation on fu...
Kumasi asked 14/3, 2011 at 11:9

3

Solved

Can I write a custom userspace file system that can be run on non-rooted factory devices through the standard available utilities? I am aware of the existence of fuse-android, however as far as I ...
Miceli asked 11/2, 2012 at 16:4

1

Solved

I'm planning to implement a FUSE filesystem using low-level API and currently trying to understand the fuse_entry_param structure. I wonder what unsigned long fuse_entry_param::generation actually ...
Egoism asked 17/6, 2012 at 14:22

1

Solved

For the purpose that i should port the fuse into other embedded linux platforms,like android,i sucessfully cross-compile the fuse project.And as i know,the fuse can only work when there is a fuse m...
Semantics asked 7/5, 2012 at 5:55

2

Solved

Would be possible to use Google Drive with FUSE for to build filesystem in unix systems?
Damn asked 24/4, 2012 at 21:27

2

Solved

I am trying to create bindings to the FUSE library using JNA, but I have hit a snag along the road. I have minimized the code as much as possible to make it digestible here. The FUSE library comes...
Witte asked 15/1, 2012 at 19:53

5

Solved

Today I started working on FUSE opensource code, there i found few lines like this: struct fuse_session; struct fuse_chan; I don't know how to interpret it , as far as i knew 'struct' is followe...
Pecker asked 26/12, 2011 at 6:23

2

Solved

I'm working with both libfuse and the glib event interface and I've run into an issue where I need to run multiple main loops concurrently (glib's g_main_loop_run and fuse_loop_mt). I've already a...
Seasonseasonable asked 16/12, 2011 at 3:37

2

Solved

I'm looking for virtual file system for Windows like FUSE for Unix, Are there any suggestions for it? I've looked at dokan , old port fifs and also Callback File System but price of CFS is v...
Fillister asked 7/10, 2011 at 14:58

2

Solved

I am reading this sample code from FUSE: http://fuse.sourceforge.net/helloworld.html And I am having trouble understanding what the following snippet of code does: static int hello_readdir...
Oldest asked 8/9, 2011 at 21:34

1

Solved

I tried to ask on FUSE's mailing list but I haven't received any response so far... I have a couple of questions. I'm going to implement a low-level FUSE file system and watch over fuse_chan's desc...
Desperate asked 25/1, 2011 at 13:52

1

Solved

I am trying to write a program using python-fuse, but I can't get file writing down. my file_class looks like this class FuseFile(object): def __init__(self, path, flags, *mode): debug(path) #d...
Indivisible asked 27/6, 2011 at 11:40

1

Solved

I'd like my application to be able to show a directory listing from a remote FTP (or SFTP etc) location. When a file/directory changes in the remote directory tree, the application should update it...
Michael asked 1/12, 2010 at 3:52

2

Solved

I just came across a VFS and a filesystem in userspace like FUSE. Now, as far as I understand, it simulates a file system, so that an application can have a standard file system hierarchy. But I d...
Hermetic asked 26/5, 2010 at 5:20

1

Solved

I've been toying with the idea of representing RESTful web APIs (e.g. CouchDB, Twitter) as a file system - just for fun and as a learning experience. However, I have no idea whether that's feasible...
Citrange asked 6/8, 2010 at 8:54

© 2022 - 2024 — McMap. All rights reserved.