Questions tagged [fuse]

Filesystem in Userspace (FUSE) is a loadable kernel module for Unix-like operating systems to make it possible to create userland filesystems, e.g. ntfs-3g.

Filesystem in Userspace (FUSE) is a loadable kernel module for Unix-like operating systems to make it possible to create userland filesystems, e.g. . FUSE is available for , , (as puffs), , , and .

Website: http://fuse.sourceforge.net

Wikipedia: http://en.wikipedia.org/wiki/Filesystem_in_Userspace

110 questions
1
vote
2 answers

Read only filesystem populated on demand

Basically I have a file system that is accessible both by NFS and ssh. I need a copy of this on my local. But I want to pull only those files that I need (basically cache them on demand). Since I'll be using this as a read-only fs the cache is…
Samarth S
  • 111
  • 1
0
votes
1 answer

How to Change Cloud API access scopes on GCP Compute Engine with out stopping the Instance

I'm using gcsfuse inside Google Compute Engine. I mounted a folder with cloud storage bucket but, unable to create any file inside of it: touch t1 with an error: touch: cannot touch 't1': Input/output error Solution for the issue is to give Cloud…
0
votes
1 answer

How can I limit the bandwidth over an SSHFS mount?

I am transfering large media files to my local machine over an SSHFS mount. I am not too concerned about speed and want to provide a better QOS to other network services and so want to limit the bandwidth for these transfers. I can't seem to find an…
dippynark
  • 233
  • 3
  • 13
0
votes
1 answer

ls and find hangs on a folder. What to do?

I have a proxmox cluster with two nodes (s1 and s2). On s2 listing a certain directory hangs forever (like in this question): $> strace -vf ls -l /etc/pve/nodes/s2 [...] open("/etc/pve/nodes/s2", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) =…
Nicu Tofan
  • 101
  • 4
0
votes
1 answer

s3fs does not parse NO_PROXY / no_proxy env variables

I am running s3fs on a node in corporate network which is behind proxy. I am trying to mount S3 bucket on another node next to it. Both nodes are in 10.88.97.65/27 network and should be able to communicate directly. On both nodes I have set…
0
votes
1 answer

Does GLusterFS / Fuse properly support mmap()?

Background I've been having some file locking issues with running Dovecot IMAP storage on a triple-replicated Gluster Volume. The volume is mounted with the glusterfs type using defaults. This implies a FUSE mount. The OS is Fedora 28, kernel…
Tim
  • 123
  • 1
  • 6
0
votes
2 answers

Mount a bucket to an instance running Windows Server

I have to share out ~2TB of files over VPN to endpoints that need SMB access. Rather than creating a ~2TB persistent disk, How could I mount a google cloud storage bucket and share it from my windows server instance? I know in Linux I use FUSE and…
0
votes
1 answer

CentOS 7: sshfs can't find fuse, even though fuse is loaded

When I try to run sshfs, I get the error fuse: device not found, try 'modprobe fuse' first. I already ran sudo modprobe fuse, but it just returns immediately without any output and the error persists: [root@localhost main]# modprobe…
0
votes
1 answer

Can I mount google cloud storage bucket as disk to linux instance with custom size?

We can mount Google Cloud Storage Bucket as a disk to an instance using Cloud FUSE. By doing so, we are getting 1 PiB as disk size(bucket). Can anybody help me understand why we are getting 1 PiB specifically? Can we modify this size while mounting?…
0
votes
1 answer

Mount on the fly compressed filesystem

I'm looking for solution for not enough disk space on our server to store backups. We have virtual server. When we dump data from database to disk it consumes lot of space. But it could be easily compressed by 30-50% using zip. We then move this…
0
votes
1 answer

Is performance of FUSE based applications effected with Kaiser patch in Redhat?

Let's say we have a FUSE filesystem. Will it have a drastic performance impact with the Kaiser patch? According to my understanding as FUSE filesystem runs completely in userspace and hence are less impacted when compared to Kernel File systems? It…
GP92
  • 681
  • 2
  • 9
  • 27
0
votes
1 answer

Can not change SELinux security context on Gluster FS folder

I can not change the security context of a folder which is created inside a Gluster-FS volume. Following is the error I keep getting. chcon: failed to change context of ‘test’ to ‘system_u:object_r:httpd_sys_rw_content_t:s0’: Operation not…
0
votes
2 answers

Linux Debian Google cloud VM instance

I have been trying to mount a google storage bucket on one of my instances. I followed the directions here. This is the error I get. E: Unable to locate package gcsfuse E: Unable to locate package What am I doing wrong ? It's a debian set up 32 GB…
0
votes
1 answer

How to set up automatic atomic transfers over SFTP

I'm working on a personal project. Since I don't have to worry about working with others or deploying from a development environment to a production environment, I am simply modifying files on the server where I am serving my application. To do…
0
votes
0 answers

S3FS and Fuse, scale out or scale up

I have an infra where I have multiple machines (eg FTP servers, get/put and Samba/NFS servers) that need to share out the same (HA) storage. So I figured to use s3fs and fuse. I got this all setup and this works fine, I have two servers each…
user292026
  • 133
  • 4