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

203 questions
41
votes
2 answers

lsof: WARNING: can't stat() fuse.gvfsd-fuse file system

What exactly is happening here? root@bob-p7-1298c:/# ls -l /tmp/report.csv && lsof | grep "report.csv" -rw-r--r-- 1 mysql mysql 1430 Dec 4 12:34 /tmp/report.csv lsof: WARNING: can't stat() fuse.gvfsd-fuse file system /run/user/1000/gvfs …
jmunsch
  • 4,166
  • 3
  • 19
  • 29
35
votes
2 answers

Why does root get Permission denied when accessing FUSE directory?

I use a FUSE filesystem with no problems as my own user, but root can't access my FUSE mounts. Instead, any command gives Permission denied. How can I give root the permission to read these mounts? ~/top$ sudo ls -l total 12 drwxr-xr-x 2 yonran…
yonran
  • 453
  • 1
  • 4
  • 7
34
votes
3 answers

How can I transparently cache any directory or mounted file system for reads and write back?

Say I mount some cloud storage (Amazon Cloud Drive in my case) with a FUSE client at /mnt/cloud. But because reading and writing files directly to /mnt/cloud is slow because it has to go over the internet, I want to cache the files that I'm reading…
Flecto
  • 471
  • 1
  • 4
  • 7
27
votes
3 answers

What are the benefits and downsides to use FuseFS filesystems?

I know some filesystems present themselves through Fuse and I was wondering about the pros and cons to this approach.
geoffc
  • 668
  • 4
  • 13
  • 18
26
votes
2 answers

Unable to use -o allow_other with sshfs (option enabled in fuse.conf)

I have the following on my /etc/fuse.conf file: # Set the maximum number of FUSE mounts allowed to non-root users. # The default is 1000. # …
Amelio Vazquez-Reina
  • 40,169
  • 77
  • 197
  • 294
26
votes
5 answers

Mount with sshfs and write file permissions

I try to sshfs mount a remote dir, but the mounted files are not writable. I have run out of ideas or ways to debug this. Is there anything I should check on the remote server? I am on an Xubuntu 14.04. I mount remote dir of a 14.04 Ubuntu. local $…
vkats
  • 611
  • 1
  • 7
  • 11
25
votes
4 answers

How do I find out what filesystem FUSE is using?

when I run mount, I can see my hard drive mount as fuseblk. /dev/sdb1 on /media/ecarroll/hd type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2) However, fuseblk doesn't tell me…
Evan Carroll
  • 28,578
  • 45
  • 164
  • 290
13
votes
1 answer

On the Fly Compression for a Directory

I have a directory that is always going to be storing text files that are rarely (think weekly) used. Naturally this is a great place to use compression. However, rather than having to use tar ever time I want to access a file, I would love it if…
Daniel
  • 1,167
  • 4
  • 13
  • 17
12
votes
3 answers

mounting dropbox (for exploring the files)

I want to simply be able to explore a dropbox filesystem, without much additional load on CPU, memory, storage (i.e., without saving copies of the remote files locally). It seems that the official client consumes much reosurces (and would do…
imz -- Ivan Zakharyaschev
  • 15,113
  • 15
  • 61
  • 123
12
votes
5 answers

How does mounting on the GUI work "under the hood"

UPDATE Please correct me if I'm wrong: For working on my computer, with a GNU/Linux Distribution named Debian, I know two ways to enter a command, start an application, open a file, etc.: a Command Line Interface where I enter text a Graphical…
erch
  • 4,890
  • 17
  • 49
  • 81
11
votes
2 answers

restart fuse after editing fuse.conf

I'm setting up fuse so I can work with the mtp system on my galaxy nexus. And I'm going through a tutorial which tells me to restart my computer after editing fuse.conf user_allow_other. But I simply don't believe that I actually have to restart…
Falmarri
  • 12,897
  • 17
  • 58
  • 71
10
votes
1 answer

LoggedFS configuration file syntax

What is the syntax of the LoggedFS configuration file? The official documentation only had usage instructions for the loggedfs command and a configuration file example. Ok, it's XML, but what are all the possible tags and attributes and what do…
Gilles 'SO- stop being evil'
  • 807,993
  • 194
  • 1,674
  • 2,175
10
votes
2 answers

Having trouble exporting FUSE via NFS

I've got a self-written FUSE file system I mount on my NFS server on mountpoint /export/example/mount. Then I export a parent directory of the FUSE via NFS. The /etc/exports contains the options nohide,crossmnt,subtree_check,ro,no_root_squash and…
Alfe
  • 261
  • 1
  • 2
  • 9
9
votes
1 answer

Using ACLs over read only/remote filesystem

I would like to define local ACLs to be used over a remotely mounted filesystem. The filesystem is mounted via autofs and sshfs FUSE. The idea is that we could set up a jailed user on a jump server with access to read files on other servers in the…
9
votes
1 answer

fuse is installed but compiler is saying "no package 'fuse' found

I'm trying to compile a C program and it tells me user@cu-cs-vm:~/Downloads/pa5$ make gcc -c -g -Wall -Wextra `pkg-config fuse --cflags` fusehello.c Package fuse was not found in the pkg-config search path. Perhaps you should add the directory…
John Abel Doe
  • 93
  • 1
  • 1
  • 3
1
2 3
13 14