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

107 questions
85
votes
6 answers

SSHFS mount that survives disconnect

I'm using SSHFS mounts from my laptop to a central server. Obviously, the SSHFS mount is broken after a longer disconnect (eg. during suspend), cause the underlying SSH connection timed out. Is there a way to get SSHFS mounts surviving long lasting…
bene
  • 2,144
  • 2
  • 18
  • 14
41
votes
2 answers

How to delete .fuse_hidden* files?

I have small Linux server (Debian Squeeze) which runs a Samba server which is configured to share some folders with some windows machines. While trying to delete one of the directories from windows I received the "Cannot delete folder" error. I…
Lando
  • 565
  • 2
  • 5
  • 9
36
votes
1 answer

Why doesn't SSHFS let me look into a mounted directory?

I use SSHFS to mount a directory on a remote server. There is a user xxx on client and server. UID and GID are identical on both boxes. I use sshfs -o kernel_cache -o auto_cache -o reconnect -o compression=no \ -o cache_timeout=600 -o…
Jan Deinhard
  • 2,313
  • 5
  • 26
  • 33
19
votes
1 answer

Mount a SSHFS volume into a Docker instance

I use SSHFS to mount a remote filesystem on my host and I want to be able to access it from inside a Docker container. I mount the remote filesystem sshfs -o idmap=user,uid=$(id -u),gid=$(id -g) user@remote:directory /path/to/sshfs And, using…
Ralph
  • 293
  • 1
  • 2
  • 5
11
votes
2 answers

What is the potential for a FUSE mount to destabilize a Linux server?

I'm a sysadmin for a multi-user server, where students in our department have shell accounts. One of our users has requested that we install sshfs on it. I'm debating whether it would be wise to install sshfs as suggested. My main concern is…
200_success
  • 4,681
  • 1
  • 23
  • 42
10
votes
2 answers

permission errors using gcsfuse as nonroot user on google compute instance

We are currently trying to demo the google cloud platform for some workloads that require lots of storage. We are trying to use google cloud storage but are having problems mounting the buckets using gcsfuse. I am currently able to mount my test…
echdee
  • 203
  • 1
  • 2
  • 6
7
votes
1 answer

How to force s3fs mount on boot

I'm using s3fs 1.33 on Ubuntu 9.10 x86. I mount it manually with this command: sudo /usr/bin/s3fs mybucket /mnt/s3/mybucket -ouse_cache=/tmp How can I force the mount on boot? I guess that I have to write something to /etc/fstab. But what? And how…
Alexander Gladysh
  • 2,293
  • 7
  • 30
  • 46
6
votes
3 answers

SSHFS over a jumphost

I have 3 computers. A, B, and C. A is the one I'm on now. B is a jumphost that I can SSH through from A to get to computer C using ssh -t B_host ssh C_host. What I'd like to do is mount C's file system to A through an SSHFS command but a brief look…
m4p85r
  • 285
  • 2
  • 7
6
votes
1 answer

Google Cloud Storage Fuse vs GlusterFS, pros, cons and costs

I'm setting up some web servers on Google Cloud Compute and I need a directory synced between all the servers to keep the web sites in sync. I'd also like to use the autoscaling feature to provision new servers when needed. I realise GlusterFS…
6
votes
3 answers

mounting webdav as user (no sudo)

With FUSE it is possible to mount many things purely as a non privileged user. However, it seems that for webdav davfs2 is the preferred project, which appears to be a filesystem driver and uses the standard mount/umount which requires privileges.…
Michael Neale
  • 3,624
  • 5
  • 26
  • 26
6
votes
6 answers

How stable is zfs-fuse 0.6.9 on Linux?

I'm thinking of using ZFS for my home-made NAS array. I would have 4 HDDs in raidz on a Ubuntu Server 10.04 machine. I'd like to use the snapshot capability and dedup when storing data. I'm not so much concerned about the speed, since the machine is…
Mavrik
  • 161
  • 1
  • 6
5
votes
0 answers

How does S3FS (or any other S3 FUSE filsystem) compare to AWS FSx for Lustre + S3

I remember trying s3fs a year back, trying to use some S3 bucket as a FUSE filesystem. I remember it being quite laggy, especially when coupled with git operations on it (an oblivious system architect had a weird requirement like this). Fast forward…
5
votes
1 answer

GlusterFS Transport endpoint not connected from time to time

I'm using GlusterFS 3.7.9, currently on a single server with 4 bricks. Each brick has 4TB and the volume is set up as distribute only. The volume is mounted on a secondary server and I use it for backup purposes. The problem is that once every…
Alex Dumitru
  • 285
  • 2
  • 3
  • 8
5
votes
2 answers

Should I mount GlusterFS as NFS or FUSE?

I'm using GlusterFS for a file storage cluster and my web apps. I have two volumes, the storage and the web ones. Currently I have the web one mounted as NFS, because FUSE was way too slow. Now I was wondering if there's any big disadvantage and…
Alex Dumitru
  • 285
  • 2
  • 3
  • 8
5
votes
3 answers

Can I simulate an S3 bucket going down when it is accessible to root user?

I'm trying to test new network monitoring code for an application that runs on a Debian appliance. I am currently tasked with ensuring that an SNMP trap is thrown when external network shares (such as S3 buckets) are mounted with FUSE and the…
jajavoli
  • 53
  • 3
1
2 3 4 5 6 7 8