Tagged Questions

Fuse stands for Filesystem in Userspace. It can be used to create filesystem backends without writing all the code as a kernel module.

learn more… | top users | synonyms

18
votes
3answers
641 views

Defining PATH_MAX for a filesystem?

I'm presently writing a filesystem. The statvfs (and even the statfs) structs contain a field specifying the maximum length of a name in that path. As PATH_MAX is defined in the pathconf manpage ...
7
votes
2answers
139 views

What does (void) 'variable name' do at the beginning of a C function?

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(const ...
6
votes
3answers
836 views

Linux block device simulation & Fuse

My project involves simulating a block device by remote host. For testing I am using FUSE, my file system is a simple change of the "hello" example app, where instead of returning a constant string I ...
5
votes
2answers
144 views

Using FUSE library with Java; trying to replicate hello.c example

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 ...
4
votes
1answer
311 views

Implementing asynchronous file system with FUSE on Linux

I tried to ask on FUSE's mailing list but I haven't receive any response so far... I have a couple of questions. I'm going to implement a lowlevel FUSE file system and watch over fuse_chan's ...
4
votes
2answers
890 views

Any Windows User-space Filesystem (Linux FUSE for Windows)?

I'm looking to create a virtual file system (network file system, not that it matters) and would like to have it appear as a new drive on Windows. I'm aware of Dokan due to a related question and am ...
4
votes
2answers
2k views

How to register FUSE filesystem type with mount(8) and fstab?

I've written a small FUSE-based filesystem and now the only part's missing is that I want to register it with fstab(5) to auto-mount it on system startup and/or manually mount it with just mount ...
3
votes
1answer
82 views

In Memory FUSE filesystem

Write a simple FUSE filesystem that is stored in memory. The filesystem has to support the following commands: ls, mkdir, cp This question was recently asked in an interview, I wasn't able ...
3
votes
5answers
47 views

How to interpret structure without definition?

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 followed ...
3
votes
1answer
41 views

Why does nautilus read directories in advance?

I'm creating a tool base on FUSE that populates a directory (~/sites) with fuse filesystems. When you read a subdir (for example ~/sites/stackoverflow.com) a sftp/ftp/webdav/s3 connection is made to ...
3
votes
2answers
128 views

Windows 2008: Virtual file system(like FUSE)

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 very ...
3
votes
1answer
254 views

Wrapping FUSE from Go

I'm playing around with wrapping FUSE with Go. However I've come stuck with how to deal with struct fuse_operations. I can't seem to expose the operations struct by declaring type Operations ...
3
votes
1answer
150 views

Is it possible to create a virtual file in Windows? (i.e. FUSE interface)

How hard is it to create a virtual file of sorts on Windows that can add functionality to read/write calls? For instance, ideally I'd want to create a file then attach an event handler so whenever ...
3
votes
2answers
402 views

Working with block special files/devices to implement a filesystem

I've implemented a basic filesystem using FUSE, with all foreseeable POSIX functionality implemented [naturally I haven't even profiled yet ;)]. Currently I'm able to run the filesystem on a regular ...
3
votes
2answers
222 views

Python Fuse calling 'readlink' 6 times in a row

I am implementing a filesystem using Python Fuse. A directory contains only symlinks and as such I return S_IFLNK | 0777 on the getattr method. Now, when I do an ls on the directory, I notice that ...
2
votes
2answers
30 views

libfuse: exiting fuse_session_loop

Context: Ubuntu 11.10 and libfuse 2.8.4-1.4ubuntu1 Linux 3.0.0-14-generic #23-Ubuntu SMP Mon Nov 21 20:28:43 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux I'm trying to use libfuse. I want to cause ...
2
votes
2answers
134 views

Possible to run multiple main loops?

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 ...
2
votes
1answer
28 views

why shift 12 bit for d_type in fusexmp

In fusexmp.c http://www.gtoal.com/fusestuff/fuse-2.7.0/example/fusexmp.c.html there is a line <<12 st.st_mode = de->d_type << 12; Please kindly instruct me why left shift 12 bit ...
2
votes
3answers
60 views

How do I mount a directory in a remote machine using fuse?

I am wondering how to use FUSE to mount a directory from a remote machin . The tutorial given in this link mounts a local directory on to another local one. This essentially happens in the fuse_main ...
2
votes
0answers
60 views

Callback File System: eldos.cbfs.ECBFSError: Access is denied

I've requested trial license for Callback File System and tried to write simple application using java! So, I've written next few lines and run it and received exception eldos.cbfs.ECBFSError: Access ...
2
votes
2answers
182 views

FUSE filesystem manipulation

How do I loop over the inodes in the superblock of a FUSE filesystem? The documentation specifies nothing about this.
2
votes
1answer
185 views

creating a temporary file in python with FUSE

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) ...
2
votes
1answer
193 views

mounting fuse gives invalid argument error in python

I have written python code to a mount fuse on a point mount. It always gives invalid argument error. I have tried the same program in C and it works fine. Can any of python Guru's help me out in ...
2
votes
3answers
102 views

Can anyone point me to some linux file system unit testing libraries?

I'm not sure how to look for these. I am trying to find general unit testing libraries for linux file systems (FS structure is treated as anon). Thanks!
2
votes
1answer
176 views

fuse action on umount

I've written some simple filesystems with Python-fuse, but now I'm wanting to do something that I can't find in the pydoc nor in the sample scripts I've found: when the filesystem is unmounted with ...
2
votes
1answer
349 views

profiling fuse-python

I am currently writing a fuse using fuse-python. It's already doing what it should. However, after it's mounted for a few weeks, it's becoming noticeably slow. So I wanted to profile it. I know about ...
2
votes
0answers
445 views

Building a virtual filesystem (Dokan.net)

I'm building a filesystem using Dokan.net, however I'm having big problems trying to find any documentation for the interface I'm expected to implement! The documentation says: The semantics of ...
2
votes
1answer
384 views

Is it possible to have a Linux VFS cache with a fuse filesystem?

It seems that the Linux VFS cache does not work by default with a FUSE filesystem. For example, the "read" call seems to be systematically forwarded to the FUSE filesystem. I work on a FUSE specific ...
2
votes
2answers
267 views

FUSE (Filesystem in Userspace) with Qt Programming

I'm trying to use FUSE with Qt, but fuse_main() and app.exec() has their own event loop. This mean that if I start one the other will not start, since the first that starts prevents the other to start ...
2
votes
1answer
115 views

Any library providing common used structures and algorithms for FUSE

I am going to write a file system prototype by using FUSE. Are there any (additional) well implemented libraries besides FUSE that can provide some common file system optimizing functions like dir ...
2
votes
4answers
307 views

Prototyping a filesystem

What are some best practises for prototyping a filesystem? I've had an attempt in Python using fusepy, and now I'm curious: In the long run, should any respectable filesystem implementation be in ...
2
votes
1answer
382 views

Tips on improving performance of fuse based file system

I am comparing fusepy , Java based NFS server and native. I see that native file system is 4 times faster and surprisingly Java based NFS server is twice faster compared fusepy based loopback system. ...
2
votes
5answers
268 views

interesting project that I can implement with fuse-python

I was thinking of improving my python and just recently read an article about the python-fuse library. I'm always interested about filesystem stuff so I thought this would be a good library to hack ...
2
votes
2answers
912 views

How to debug FUSE filesystem crash in Linux

Currently I am developing an application using FUSE filesystem module in Linux (2.6 Kernel) in C language. Due to some programming error, the application crashes after mounting the filesystem. Since I ...
2
votes
1answer
494 views

Fuse Filesystem Problem

i'm developing a fuse filesystem that stores data in the RAM, but i'm having problems when i write something to a file. The file turns into a blank file. Here's the code: #define FUSE_USE_VERSION 26 ...
2
votes
2answers
608 views

sshfs EBCDIC to ASCII

what I want to do is to be able to mount via sshfs some files on the mainframe via USS on my local PC. I can do that but sshfs doesnt do straight off the conversion from EBCDIC to ascii/unicode. Is ...
2
votes
3answers
641 views

Fuse bindings for php

I am writing an application that thus far has been written in PHP, from the interface to the daemons. I have a need to use fuse and would like to continue to use PHP just for consistency. However, ...
1
vote
1answer
53 views

fuse filesystem can not change the value of struct stat *stbuf in getattr function?

Question Solved! Thanks to @basile-starynkevitch , I find out that the struct stat is not at the same size in different files! In <sys/stat.h>, sizeof(struct stat) is 88bytes, but with fuse's ...
1
vote
0answers
41 views

Error running Samba share of fuse mount [closed]

I have created a fuse directory, and start it like this: ./myfuse /home/shared -o allow_other -o umask=022 -o nonempty -d I can access it like this: ls -la /home/shared and it works fine. Ok, turn ...
1
vote
0answers
25 views

Spring MVC application under Fuse ESB

i've created simple Spring MVC application from SpringSource Tool template. It works greate on Tomcat, but i wanted to move this application to Fuse ESB. I copied my war file do deploy folder. I've ...
1
vote
1answer
26 views

How should I run Fuse ESB along side a Tomcat server?

An odd question here. I work as an intern prototyping SOA. Getting a virtual server is a big hassle, so my boss asked if I could run the Fuse ESB on the same server that I already have a Tomcat server ...
1
vote
1answer
109 views

fuse changes chown to?

i m trying to modify fuse example to mount any directory. I want to mount /home/nikhil in tmp. i ran it as, $ ./ni /home/nikhil tmp It mounts tmp folder, but cannot access it. $ls -ltr tmp ls: ...
1
vote
1answer
91 views

Mounting with bindfs without nautilus noticing

I want to user-mount a directory to some other directory without the need for superuser rights. I found the fuse tool bindfs does exactly that BUT nautilus will show every mount in its sidebar. The ...
1
vote
0answers
154 views

Trying to use Fuse to mount HDFS. Can't compile libhdfs

I'm attempting to compile libhdfs (a native shared library that allows external apps to interface with hdfs). It's one of the few steps I have to take to mount Hadoop's hdfs using Fuse. The ...
1
vote
0answers
216 views

fuse readdir returns Input/output error

I am seeing a strange issue while implementing the readdir() functionality in fuse. Basically when I do 'ls' on any directory in fuse, I get an error such as: ls ls: reading directory .: ...
1
vote
0answers
47 views

FuseFS for ruby gives me the wrong gid and uid

I am using the FuseFS ruby gem to create a custom filesystem in ruby 1.8. the only problem is, that while I am in the write_to method of my custom filesystem class the FuseFS.uid method only gives me ...
1
vote
2answers
367 views

Transaction not rolling back

I have mybatis 3.0.4 with mybatis-spring integration 1.0.1 deployed within Fuse (OSGi). I've created a basic database within SQLServer 2008. In Spring I've configured a TransactionAwareDataSourceProxy ...
1
vote
1answer
244 views

Does FUSE ESB support RabbitMQ?

I am making one rails application which is integreted with RabbiMQ. I want to integrate Fuse ESB in my application, but still after google I am not confirmed that RabbitMQ supports to Fuse ESB or not. ...
1
vote
2answers
100 views

How to make symbolic links in FUSE?

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 | ...
1
vote
0answers
222 views

Implementing a FUSE Filesystem: iostream, FILE* or plain file descriptors?

I implemented a small read-only FUSE filesystem in C++ that reads the data from a certain multi-file archive. I used iostreams (actually boost::filesystem::ifstream) in order to read the files. Now I ...

1 2 3