Tagged Questions

0
votes
1answer
16 views

Apache Camel 2.x and Servicemix 3.x/4

I'm trying to run Camel 2.1 SU with Servicemix. As i understand there are no way to run Camel 2 with Servicemix 3, and i'm try to run it with FUSE Servicemix 4.0.0.1 When i starting my project with …
0
votes
3answers
107 views

Reading Superblock into a C Structure

I have a disk image which contains a standard image using fuse. The Superblock contains the following, and I have a function read_superblock(*buf) that returns the following raw data: Bytes 0-3: …
1
vote
2answers
38 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 …
0
votes
1answer
50 views

Ideas for implementing a VFS

Hi all, I have multimedia files and its metadata stored in a RDBMS (actually, the actual media files are stored in the FS, but let's not dwell on that). I would like to present a filesystem view of …
5
votes
3answers
107 views

Linux block device simulation & Fuse

Hello everyone 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 …
1
vote
1answer
128 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 …
2
votes
1answer
89 views

Fuse Filesystem Problem

Hi, 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 …
0
votes
1answer
160 views

Servicemix 4, DOSGi, and Zookeeper

This is cross posted from the fusesource forum and the servicemmix forum. I can't get DOSGi working in FUSE. I'm trying to get CXF's DOSGi 1.1-SNAPSHOT with Zookeeper discovery onto FUSE 4.1.0.2. …
0
votes
2answers
224 views

Mount a remote file system using SSHFS

Ok, the setup is a bit convoluted. Don't blame me, I'm not the sysadmin. Here's the situation. There is one machine that I can SSH into from outside the network. I can only remote in as root (yes, …
0
votes
1answer
132 views

How do I uncompress a file compressed with fusecompress/lzo?

I had mounted a fusecompress of directory compressed/ at fusecompress/ I copied a large file (several GB) to the fusecompress directory (ok, I mv'd it). The compressed file in the directory …
0
votes
2answers
210 views

sshfs EBCDIC to ASCII

Hi all, 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 …
0
votes
1answer
192 views

Read header data from files on remote server

Hi! I'm working on a project right now where I need to read header data from files on remote servers. I'm talking about many and large files so I cant read whole files, but just the header data I …
1
vote
1answer
153 views

Why is fuse not using the class supplied in file_class

I have a python fuse project based on the Xmp example in the fuse documentation. I have included a small piece of the code to show how this works. For some reason get_file does get called and the …
2
votes
2answers
121 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, …