fuse Questions

3

Solved

So I have this remote folder /mnt/shared mounted with fuse. It is mostly available, except there shall be some disconnections from time to time. The actual mounted folder /mnt/shared becomes avail...
Trifurcate asked 5/5, 2020 at 11:40

4

Solved

Generally, in order to initialize a struct in c, we could only specify part of the fields. Like below: static struct fuse_operations hello_oper = { .getattr = hello_getattr, .readdir = hello_rea...
Mouflon asked 25/8, 2012 at 13:7

4

I thought extended file attributes existed in NTFS which Windows supports. I cannot find a cmd for accessing/updating attributes. Is there a flavor of Windows (and its file system) that supports t...
Christner asked 27/9, 2017 at 22:48

2

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 .: Input/...
Humiliation asked 14/7, 2011 at 11:43

3

Solved

Unable to remove .git I have a git repository, Rift, that I am trying to remove. On attempting to run rm -rf, I get the error: rm: cannot remove 'Rift/.git/objects/pack': Directory not empty. When ...
Dipetalous asked 16/11, 2020 at 3:40

6

I'm trying to implement the FUSE filesystem. I am receiving this error: cannot access MountDir: Transport endpoint is not connected This the relevant parts of the program. There are two direct...
Jennefer asked 14/4, 2013 at 18:10

5

After I used apt-get upgrade earlier today, my Raspberry Pi (Raspbian Jessie) stopped being able to automount my external harddrives anymore. Automounting worked perfectly fine before apt-get upgra...
Zennie asked 29/10, 2017 at 16:59

3

This issue is driving me crazy. I keep getting an error: "macFUSE giving mount_macfuse: mount point ... is itself on a macFUSE volume " where ... is my mount point when i run sshfs ...
Undeniable asked 18/3, 2022 at 4:27

3

I want to mount s3fs inside of docker container. I made docker image with s3fs, and did like this: host$ docker run -it --rm docker/s3fs bash [ root@container:~ ]$ s3fs s3bucket /mnt/s3bucket -o ...
Plerre asked 26/7, 2014 at 0:30

1

Solved

I have mounted a storage bucket on a VM using the command: gcsfuse my-bucket /path/to/mount After this I'm able to read files from the bucket in Python using Pandas, but I'm not able to write file...
Momently asked 14/9, 2022 at 20:0

3

Solved

I want to know which fuse version do I have, when attempting to execute: locate -i -r /fuse I get: /lib/modules/3.0.0-12-generic/kernel/fs/fuse /lib/modules/3.0.0-12-generic/kernel/fs/fuse/cus...
Lalo asked 7/6, 2013 at 19:17

8

Solved

FUSE is constantly(every 2 - 3 days) giving me this Transport endpoint is not connected error on my mount point and the only thing that seems to fix it is rebooting. I currently have my mount poi...
Colucci asked 26/7, 2014 at 1:37

6

I am new to fuse. When I try to run a FUSE client program I get this error: fuse: mountpoint is not empty fuse: if you are sure this is safe, use the 'nonempty' mount option I understand that a ...
Rowell asked 28/11, 2013 at 16:41

2

Solved

I want to access GCP bucket data on windows 10 as file system. GCP provide FUSE for mac and Linux, Is there any way to mount GCP bucket with Windows.
Bs asked 30/4, 2021 at 11:16

4

Solved

I am just starting to install these binaries to access my iPhone and running into an error when trying to install ifuse. I installed osxfuse v 3.11.2 using Homebrew first. I have two versions loade...
Sharie asked 19/4, 2021 at 2:43

2

Solved

Following this guide,I am trying to run gcsfuse inside a pod in GKE. Below is the deployment manifest that I am using: apiVersion: extensions/v1beta1 kind: Deployment metadata: name: gcsfuse-test ...
Doodlebug asked 16/8, 2019 at 13:7

0

Problem For a docker image (alpine based) that is supposed to run as non-root I have two requirements: I have to mount a FUSE filesystem inside the docker container The users of the docker image a...
Cure asked 31/12, 2020 at 2:22

1

I use afuse to automount other hosts to my local file system with sshfs. Like so: afuse -o timeout=30 -o mount_template=sshfs -C %r:/ %m -o unmount_template=fusermount -u -z %m ~/remote/ This wo...
Implicatory asked 31/8, 2012 at 12:23

2

I am trying to run my spark job on Amazon EKS cluster. My spark job required some static data (reference data) at each data nodes/worker/executor and this reference data is available at S3. Can so...
Hypervitaminosis asked 3/8, 2018 at 12:46

5

Solved

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 /s...
Tripartition asked 12/10, 2009 at 12:3

2

I'm implementing a FUSE file system for a remote service. When the user opens a file I do a network call to get the file's contents. It appears that the file's size must be reported through GetAttr...
Colwin asked 17/9, 2017 at 19:20

2

Solved

I am implementing a virtual filesystem using the fuse, and need some understanding regarding the offset parameter in readdir. Earlier we were ignoring the offset and passing 0 in the filler functi...
Sextet asked 9/5, 2014 at 12:52

4

Solved

I have a running a fuse fs with options allow_other and umask 0. This gives me a set of files with permissions set to 777. Though when I try to ls -l in the directory containing the files I get the...
Monosepalous asked 8/9, 2014 at 4:33

1

Solved

I am running into issues with security teams because engineering teams want to FUSE mount a filesystem in Docker, however, to do that, the "--cap-add SYS_ADMIN" flag must be set. Security is not al...
Ambrosio asked 18/11, 2019 at 23:36

3

Solved

I have one object that one of the properties is an array of objects, the idea is to move objects from that array to no new one if one condition is true. public $onInit(): void { this.getTicket(); ...
Rhaetia asked 28/8, 2017 at 13:7

© 2022 - 2024 — McMap. All rights reserved.