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
3
votes
1 answer

ntfs-3g Ignore case

I am mounting an ntfs filesystem on a Linux box using the fuse filesystem driver ntfs-3g. I am then doing some operations on the filesystem (git clone to be precise) unmounting and attaching the filesystem to a Windows machine. Here's the fun part.…
John Oxley
  • 278
  • 1
  • 6
  • 19
3
votes
0 answers

centos: fusermount: fuse device not found, try 'modprobe fuse' first

while trying to mount google bucket or set sshfs up I am getting following error: fusermount: fuse device not found, try 'modprobe fuse' first modprobe fuse command does not show anything: [user@drive ~]# modprobe fuse [user@drive ~]# fuse is…
m1k3y02
  • 216
  • 4
  • 11
3
votes
0 answers

Unison sync of sshfs mount - what can go wrong if the connection breaks?

I am syncing a local directory (say "/local") with a cloud storage server using Unison. The cloud storage is mounted to, say, "/mnt" via sshfs (with no-cache option), and I sync the two directories /local and /mnt with Unison locally. [I don't have…
André
  • 131
  • 2
3
votes
2 answers

Umount stale glusterfs partition

I am using glusterfs on several Ubuntu servers: two of them are running glusterfs servers in replication mode. Without any clear error, the glusterfs partition became stale and the system shows this error when I try to access the stale…
Khaled
  • 36,533
  • 8
  • 72
  • 99
3
votes
1 answer

Any tricks for making sshfs authenticate only on write?

There is seemingly a trick for creating read-only sshfs logins with the read only attribute is enforced by the remote's ~/.ssh/authorized_keys file. You first create a program ~/.ssh/ro-sftp-server that runs sftp-server -R, which whatever other…
Jeff Burdges
  • 156
  • 2
  • 7
3
votes
1 answer

Why is mount -a not mounting fuse drive properly when executed remotely (via Fabric)?

This is a weird bug and I'm not sure where it's coming from. Here's a quick run down of what I'm doing. I'm trying to mount a FUSE drive to an Amazon EC2 instance running Ubuntu 10.10 using s3fs (FUSE over Amazon). s3fs is compiled from source…
Jim D
  • 501
  • 1
  • 5
  • 12
3
votes
3 answers

s3fs: how to force remount on errors?

I use s3fs 1.33 on Ubuntu 9.10. Regularily it gives me errors like this: rsync: writefd_unbuffered failed to write 4 bytes to socket [sender]: Broken pipe (32) rsync: close failed on "/mnt/s3/mybucket/filename": Software caused connection abort…
Alexander Gladysh
  • 2,423
  • 8
  • 31
  • 49
2
votes
1 answer

GCSFuse - Fusermount: mountpoint is not empty

Using gcsfuse to mount a point locally on a server within a script. Running on an Ubuntu 14 LTS server. I have two fuse mount points and the script transfers data from other mount points into them. This script is working for one of the mountpoints,…
Cam
  • 55
  • 3
  • 10
2
votes
1 answer

Why doesn't gcsfuse return to the command prompt after mounting?

I've successfully installed gcsfuse. When I run it, it prints File system has been successfully mounted but I don't get back to the shell prompt. (See the transcript below.) What am I doing wrong? Confirming that the bucket…
2
votes
2 answers

How do I mount rbd devices with the fuse driver?

This is a follow-up question from: How do I mount an rbd device from fstab Which I asked some time back. How do I mount rbd devices with the fuse driver? (I can't use the kernel driver from docker without opening up lots of privileges) As far as I…
hookenz
  • 14,472
  • 23
  • 88
  • 143
2
votes
1 answer

Mounting compressed filesystem using FUSE

I'd like to move some folders on my computer to a compressed read/write images, so I could get it to take less disk space on my machine (the folders contain some Mercurial and Git repositories). Because I am not using these repositories daily, I'd…
Tomer Cohen
  • 121
  • 1
  • 4
2
votes
1 answer

How to use Google Drive as secure storage on a linux server

since google dropped the price for storage recently I thought about using it at my storage servers too add storage capacity easily. What I found so far is the ability to mount the google drive into a fuse file system using google-drive-ocamlfuse.…
W0bble
  • 245
  • 4
  • 14
2
votes
1 answer

FUSE mounted Google Drive (via google-drive-ocamlfuse) for Wordpress and permission issues

My objective is to use Google Drive to store media files for a Wordpress multisite using Fuse, and so far I am able to mount Google Drive with google-drive-ocamlfuse as root. I can mount the Google Drive as /mnt/google-drive and do cp, rm, mkdir,…
user193267
  • 29
  • 1
2
votes
2 answers

Is there an async FUSE filesystem for replication?

I have a low-power VIA x86 PC with one SATA port. I want to backup special files (ie: /var) from the SATA drive on this port onto a USB flash disk, but I don't want a RAID1 or fully-synchronous solution for performance reasons. It is acceptable that…
2
votes
0 answers

s3fs-mounted S3 bucket shows bad filesizes

Background: I have an Amazon S3 bucket with data uploaded using the AWS web interface. Now I need to give permissions-based access to paths within my buckets to FTP users. To do this, I'm running vsftpd and s3fs on a fresh Amazon EC2 instance.…
jonaz
  • 131
  • 2