Fuse stands for Filesystem in Userspace. It can be used to create filesystem backends without writing all the code as a kernel module.
0
votes
1answer
41 views
What does struct { .attr = value } syntax mean? [duplicate]
From fuse/examples/fsel.c
static struct fuse_operations fsel_oper = {
.getattr = fsel_getattr,
.readdir = fsel_readdir,
.open = fsel_open,
.release = fsel_release,
...
0
votes
1answer
28 views
Clarification for Implementing a FUSE Filesystem in c++
I am trying to implement a FUSE filesystem, and after reading around. I think I have found out how to implement it. I would state out what my idea is of the implementation. Please let me know if it is ...
0
votes
0answers
10 views
capturing copy operation via FTP client
I attempt to copy a file from a cloud machine to my local machine via
ftp. I'm using a client sftp-server (like FileZilla or WinSCP).
I want to know how can I intercept that copy operation? ...
0
votes
0answers
19 views
Implementing a file system using FUSE - inodes?
I have an assignment which involves implementing a file system on linux using FUSE and the last 2 days not much progress has been made. As far as I understand it is important to have a way of keeping ...
-1
votes
0answers
22 views
Size the fuses in a non-closed circuit [closed]
Sum of all power consuming componentens in the non-closed circuit decide maximal current thru fuses
I [max thru fuse VAC] = 1.00 [inp A] + ( 3,2 [max W] / 24 VDC ) = 1.134 A
I [max thru fuse GND] = ...
0
votes
0answers
26 views
Including OSXFUSE framework in XCode project
I have build a App based on OS X FUSE (ie I have my own file system based on OS X FUSE).
When OSXFUSE is installed I can of course include the OSXFUSE.framework from /Library/Frameworks.
However when ...
3
votes
1answer
98 views
How can I mount an S3 bucket to an EC2 instance and write to it with PHP?
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 ...
-2
votes
0answers
41 views
How can you mount an S3 bucket and use PHP to write a file to it? [duplicate]
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 ...
0
votes
0answers
30 views
How to build javafuse on Ubuntu?
I'm trying to implement the JavaFuse project but when I execute the make command I'm getting this error:
gcc -shared build/contextClass.o build/conninfoClass.o build/javafuse_jni.o ...
-1
votes
0answers
29 views
Installing FUSE + SSHFS on Heroku; Module not found [closed]
I am trying to set up FUSE + SSHFS on Heroku. I compiled fuse-2.9 and sshfs-fuse-2.4 with vulcan and now I am ready to mount my file system. I log into my heroku shell with heroku run bash and perform ...
0
votes
0answers
29 views
Fuse ESB and web services - how to expose routes as web services or wrap existing services as web services
I am really getting stuck on how to integrate my business applications to Fuse ESB. In particular - web services functionality. I have a couple of questions -
1) Can I 'wrap' a blueprint.xml in Fuse ...
0
votes
0answers
9 views
Dealing with synchronicity when using camel routes/ESB
An event in a business system (i.e. button pressed) results in a route being activated in a blueprint.xml (OSGI bundle) within an ESB. The route does a variety of steps, integrates to a number of ...
1
vote
0answers
35 views
FUSE network file system and samba
I'm trying to develop something, for learning purposes, that allows me to mount any kind of network resource (so an HTTP/FTP directory and stuff like that) as a local folder.
I'm using FUSE + JAVA ...
1
vote
1answer
44 views
Network i/o in parallel for a FUSE file system
My motivation
I'd love to write a distributed file system using FUSE. I'm still designing the code before I jump in. It'll be possibly written in C or Go, the question is, how do I deal with network ...
0
votes
1answer
18 views
What is the correct URL to make available the FAB feature in karafe?
At http://fuse.fusesource.org/bundle/faq.html#How_do_I_enable_FAB_support_in_my_OSGi_container_, we are instructed to do:
features:addUrl mvn:org.fusesource.fuse/fuse-fuse/7.0.1.fuse-084/xml/features
...
0
votes
0answers
20 views
Fuse IDE graphical edition
I have a simple issue with the Fuse IDE graphical design tool.
I have a Camel / Spring route defined that goes from a servlet to a url call and returns a short message.
I want to be able to add and ...
0
votes
0answers
6 views
Mount without the need to display thumbnails
I have a file-system that I am trying to mount (based on fuse). My need dictates that no thumbnails be displayed for files and directories (when viewed by a file-browser sych as Nautilus etc.,) due to ...
0
votes
1answer
38 views
Casting to a File Pointer
I'm setting up the FUSE filesystem, and I need to get a file pointer to any open files so that I can encrypt them as they get written. The FUSE system uses a special struct. One of the components of ...
0
votes
1answer
25 views
Unknown error 524 with fuse
I tried to make an "ls -l" command on a mounted directory with fuse, but I get this error message:
Unknown error 524
What does it mean?
0
votes
1answer
63 views
malloc'd memory overlaps object created by std::make_shared
A call to malloc is returning a pointer to a block of memory that overlaps memory already allocated by make_shared. I'm building a FUSE client, and the malloc call is in the FUSE library, but I'm not ...
2
votes
2answers
127 views
How can I mount an S3 volume with proper permissions using FUSE
I have an Amazon S3 bucket (let's call it static.example.com) that I need to mount on an EC2 instance (Ubuntu 12.04.2). I've installed s3fs. I'm able to mount the volume, but I can't write to the ...
0
votes
1answer
30 views
FUSE Extended Attributes
I'm trying to implement a FUSE file system including the ability to set/get extended file attributes. In this case, the attribute that I am interested in is one to create a boolean condition to mark a ...
2
votes
2answers
114 views
C++ strncpy parameters “optimized out”; overwrites random memory
First of all, I want to apologize for not being able to narrow down the problem enough to be able to share a short program that reproduces the bug.
An external library (FUSE) call to strncpy ...
0
votes
0answers
183 views
FUSE error: Transport endpoint is not connected
I'm working on a homework assignment trying to implement the FUSE filesystem. No matter what I do, I wind up back at this error:
cannot access MountDir: Transport endpoint is not connected
This ...
0
votes
0answers
11 views
FUSE Error Message
Trying to get FUSE set up. I'm getting the following error when I run this command:
./myencfs -o nonempty /home/user/myMirror /tmp/myfolder/myMount
fusermount: failed to access mountpoint ...
2
votes
0answers
39 views
Fuse sshfs and java file Write fails
I have two VPS on a farm and I whant to connect them with sshfs, to share some directories on a java application.
Source Destination
-------------------------------------------
...
0
votes
2answers
158 views
Getting all of it to work: War, OSGI, Spring Beans, Maven
Trying to deploy a war with a bean file in a Fuse Servicemix (version 4.3.1). I'm using maven to build my war. I can't seem to get this to work. Can anyone provide a website that can tell me how to do ...
0
votes
1answer
13 views
equivalent of ZipEntry in directory use context
What's the equivalent of a ZipEntry in a directory use context ?
I'm trying to replace a code written for zipfiles to convert it into a code written for directories instead.
-1
votes
1answer
120 views
camel jpa waiting for namespace handlers
I'm trying to write a RouteTest class for my camel jpa example and it does not work as expected because of the following line :
Bundle RouteTest is waiting for namespace handlers ...
1
vote
0answers
57 views
Mount point permission change HDFS
How can I change the ownership of a mount point (mounting is done using HDFS-FUSE)?
chown -R user:user mount-point doesn't work (I mean it doesn't change the ownership).
My attempt:
[hduser@ocs /]$ ...
0
votes
1answer
30 views
Read a directory content instead of a zip file content
I have this code which enables me to read a zip file content, but I want instead to read a directory content instead of a zip file (the zip file must be seen as a directory). What should I do ?
...
0
votes
1answer
36 views
fuse: How do I get the size of the file that is going to be written before it's written?
When a file is written, the write function corresponding with .write in fuse_operations is called for each file segment.
This means that for a larger file (e.g. 12720 bytes), the write function ...
0
votes
0answers
30 views
Excessive Calls made to FUSE FS when accesing through Windows client
I'm going through FUSE example "hello_ll.c" ,whenever i try to access mounted FS the number of calls made are perfectly fine through linux terminal. For example :
...
0
votes
0answers
36 views
FUSE - detailed documentation
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 search for ...
0
votes
0answers
46 views
FUSE ESB 1.7.0 - failed to access BrokerFacade: reason: Authentication failed
I am trying to access the activemq web console on fuse fabric.
On accessing the active MQ web console (http://localhost:8181/activemqweb/) it is failing with error in log - failed to access ...
1
vote
1answer
39 views
Invoke fuse esb automatically
I need to write an automated script which will call fuse esb and then it should call osgi:install command to deploy a bundle.. what is the best possible way? Any input/pointers highly appreciated. ...
0
votes
1answer
43 views
how to use FUSE ESB glue multiple applications
i have two applications, one deployed on server 1. the other deployed on server 2. application one want to post some date to application two, when application two process complete. it will send a ...
0
votes
1answer
54 views
Fuse ESB - ODE installation
In the FUSE ESB, I tried to install the ODE feature using the command (install ode), but got an error as below. Any help is appreciated
FuseESB:karaf@root> features:install ode
Error executing ...
0
votes
1answer
84 views
libCurl SSL error after fork()
I'm developing a FUSE driver and when I run it as a daemon (without the -f or -d flags) all https request made through libcurl fail. I was able to reproduce the error by making an https request, ...
0
votes
3answers
78 views
FUSE implementation with C and JAVA
I'm trying to make a fuse file system on top of an Mysql database, and use this from a windows client and this client request is passed on to Java Server on linux side over SAMBA!!
I need to know how ...
1
vote
1answer
109 views
Fuse: Passing a stat struct from readdir() to getattr()
I am trying to populate a stat struct for each record in readdir() and pass that corresponding stat to getattr via filler(). I read somewhere that FUSE only recognizes certain fields of the stat ...
0
votes
0answers
35 views
how file managers implement or execute cp operations
I am creating a fuse file system, and I am trying to implement the cp operation. The assumption is that a file name called with mknod is the file to be created. However, file managers (I'm using nemo ...
-1
votes
1answer
60 views
Camel XSLT2.0 Support
I tried to integerate Camel to use XSLT2.0 but getting an exception as Could not "compile style sheet"
My camel config route is below
Also placed the xalan.jar and saxon9he.jar at ...
0
votes
1answer
89 views
Automatic features provision on Fuse ESB/Servicemix with Maven
Is there any way to provision/deploy features to Fuse ESB/Servicemix automaticaly though Maven, like cargo for Tomcat? Using ant+ssh is not an option.
1
vote
0answers
28 views
How to profile fusepy operations
I am writing a FUSE file system using the fusepy ctypes library (https://github.com/terencehonles/fusepy) for Python. Is there a way to profile the fuse operations? When I try to run the ...
0
votes
0answers
31 views
fuse - distinguish between cp and mv call
as far as I know, fuse maps the cp and mv call to this:
$cp path1 path2
getattr(path1)
getattr(path2)
open(path1)
if(path2) exists then
open(path2)
truncate(path2)
else
mknod(path2)
do:
...
0
votes
1answer
111 views
OSGi uses constraint violation
I try to start my bundle created by Maven in FUSE ESB OSGi container. But I got error with its three dependencies:
1. libthrift-0.7.0.jar
2. httpclient-4.0.1.jar
3. httpcore-4.0.1.jar
Error ...
0
votes
1answer
726 views
How to extract sms.db from non-jailbroken iphone on linux
Objective: Extract the sms.db sms text message database from an Iphone 4S.
I have installed ifuse on ubuntu 12.04 and am able to browse certain folders. None seem to contain the 'sms.db' file.
It ...
0
votes
0answers
71 views
OSGi not able to resolve dependency with maven bundle
I am trying to deploy a maven bundle to Fuse osgi container. But I got error:
Unable to resolve 262.1: missing requirement [262.1] osgi.wiring.package;
(osgi.wiring.package=org.apache.thrift)
...
0
votes
0answers
249 views
how to insert fuse module into linux kernel
my os is centos
kernel is 2.6.18-92.1.17.el5xen.
fuse version is fuse-2.7.4
I compiled it like this:
./configure --enable-kernel-module --with-kernel=/usr/src/linux
make && make ...