fuse Questions

3

I am trying to mount a google cloud bucket from within a docker container and get the following error: [root@cdbdc9ccee5b workdir]# gcsfuse -o allow_other --debug_gcs --key-file=/src/gcloud_servi...
Illailladvised asked 13/1, 2016 at 3:49

1

Solved

I created a docker container where I mount a fuse S3QL FS. And this is working. Now I'd like to be able to share this mount point with the host or with other containers but it does not work. To m...
Walke asked 5/12, 2018 at 11:45

1

I'm just starting to learn FUSE and I'm going to use it with Python 3 under FreeBSD and MacOS. First of all, I'm a bit confused which module is the actual interface to FUSE from Python 3 side: ht...
Swick asked 22/10, 2018 at 8:54

1

FUSE = Filesystem in user space recommends that distros package both a fuse2 and a fuse3 (see here) and indeed they do. What exactly is the reason for this? Is it just that the init code in fuse3 ...
Directed asked 9/4, 2018 at 18:24

1

Solved

The FUSE API doesn't expose a file-system level sync call, just fsync and fsyncdir. Does it mean that when sync is called (or syncfs inside a FUSE mountpoint), the kernel invokes fsync on all open ...
Perversion asked 31/8, 2015 at 13:16

4

Solved

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 fuse...
Placate asked 18/1, 2012 at 0:6

2

Solved

I'm trying to install and use FUSE inside a Docker container. My Dockerfile is the following: FROM golang:1.8 WORKDIR /go/src/app COPY . . RUN apt-get update && apt-get install -y fuse &...
Millian asked 23/1, 2018 at 12:50

1

Solved

Following on from here, when using OpenSUSE Tumbleweed I cannot get flatpak-builder to compile submodule dependencies. I first noticed this issue when developing a console application within Gnome ...
Arst asked 23/2, 2018 at 10:48

6

Solved

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 (g...
Romantic asked 24/7, 2010 at 16:11

2

Solved

I am implementing a python script to do fuse mount programatically. I have written an equivalent in C, by making use of socketpair and recvmsg api's. But in python recvmsg is not implemented, so I ...
Merari asked 11/6, 2011 at 8:40

1

Solved

Anybody help me make a virtual file system in Perl. Very simple, 2 depth level, as /subdir subdir-l2 file2.txt /file1.txt I try use Fuse.pm, but not understand how create subdir level. I crea...
Merras asked 27/3, 2017 at 11:45

3

I mount remote filesystem with sshfs. If the ssh connection times out it can cause other applications to hang (e.g. vim session with only local file open). It takes ~10 minutes for the system to re...
Gustafson asked 16/7, 2013 at 21:5

3

Solved

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 b...
Dylane asked 17/4, 2013 at 20:35

2

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 a...
Daladier asked 25/1, 2012 at 13:16

2

i'm compiling a jni project.here is detail of the problem i encountering: r oot@kaiwiiho:/home/kaiwii/svn# make gcc -shared build/utimebufClass.o build/contextClass.o build/fsClass.o build/javafus...
Importunacy asked 31/3, 2012 at 3:53

5

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. Sinc...
Soft asked 9/12, 2009 at 5:46

1

Solved

I am trying to use sshfs to mount a remote file system. All the guides I can find online say I need to add myself to the fuse group but when I run sudo gpasswd -a $USER fuse I get gpasswd: group...
Ruhr asked 25/2, 2016 at 18:42

3

Solved

I'm trying to provide my docker container a volume of encrypted file system for internal use. The idea is that the container will write to the volume as usual, but in fact the host will be encrypti...
Salaam asked 4/3, 2015 at 21:31

0

How has the it's performance and stability been for you? I'm looking to maybe implement this on a cluster to avoid a network or clustered file system and it should fit well with auto scaling...

1

I am using gcsfuse within a docker container (base image centos7) and am not able to read or write to the mounted directory. I am mounting the directory with gcsfuse like this: [root@6c24c3a6cc28...
Donetsk asked 14/1, 2016 at 0:58

1

I'm looking for a way to present a userspace filesystem to a specific Linux process but I don't have root access. The obvious answer is FUSE but without root access I cannot load the kernel module...
Nicky asked 6/8, 2015 at 21:22

1

I've found that the FUSE userspace library and kernel interface has been ported, since its inception on Linux, to many other systems, and presents a relatively stable API with a supposedly small su...
Geniegenii asked 24/7, 2015 at 2:33

2

Solved

Hopefully a very simple question. I have a read-only mount, and a encfs FUSE mount reads over that to decrypt the files. How do I know which encrypted file each decrypted file relates to? For ex...
Branton asked 8/7, 2015 at 20:13

1

Solved

I am trying to build a java project http://sourceforge.net/projects/fuse-j/?source=typ_redirect on fedora machine. The compilation fails while compiling JNI bindings. MakeFile include ../build.co...
Communicable asked 26/5, 2015 at 14:27

2

Solved

I took fuse hello.c and modified the bottom to show what I am talking about. In my app I need to do things after my fuse FS is available. I also need another thread for IPC and keeping certain thin...
Houseyhousey asked 21/5, 2015 at 17:44

© 2022 - 2024 — McMap. All rights reserved.