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.
7
votes
3answers
815 views
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.
6
votes
2answers
596 views
autofs with sshfs not working anymore
I just upgraded from Ubuntu 12.04 to 12.10. Before that I backed up my autofs config which worked fine. I appended the line from my old /etc/auto.master to the new one:
+dir:/etc/auto.master.d
...
5
votes
1answer
175 views
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 ...
5
votes
2answers
2k views
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 ...
5
votes
1answer
261 views
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 ...
4
votes
1answer
2k views
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?
...
4
votes
1answer
412 views
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 ...
4
votes
1answer
225 views
Using ACL's over read only/remote filesystem
I would like to define local ACL's to be used over a remotely mounted filesystem.
The filesystem is mounted via autofs and sshfs FUSE.
The idea is that we could setup a jailed user on a jump server ...
3
votes
2answers
2k views
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. ...
3
votes
4answers
1k views
How can I mount partitons in a full disk image (i.e. image with partition table) with fuse?
It's a bit indirect, but it's possible mount a partition with a disk image using mount or losetup's "offset" parameter.
I'm looking to be able to use fuse to do the same thing in user space
Use ...
3
votes
1answer
162 views
Virtual file made out of smaller ones (for mac-like sparse bundle solution)
I'd like to recreate a feature of Mac OS X called sparse bundles (disk images made out of smaller files, making them easy to backup after a small change). For that I'm looking for a way to ...
3
votes
2answers
81 views
Creating a local workspace for development/testing
I want to be able to mount, say /home/$USER/workspace to /usr/local/workspace.
Right now I'm using the python package pyfilesystem which uses fuse to do that. My problem is, that inside that mount I ...
3
votes
1answer
421 views
FUSE : Allow any user in the fuse group to unmount
I'm currently trying to write a couple of systemd/udev configuration files that will allow me to automount/unmount MTP Android devices on my Archlinux laptop. It took me some time, but so far it works ...
2
votes
2answers
541 views
How to understand the filesystem concepts used by encfs?
I do not hold a deep understanding of computer science concepts but would like to learn more about how the utility encfs works. I have a few question regarding the concept of filesystem in regards to ...
2
votes
1answer
105 views
UID/GID with sshfs of Linux FUSE
mkdir ~/mnt/2letter
echo PASSWORD | sshfs -o password_stdin www-data@localhost:/var/www/sites/2letter ~/mnt/2letter -o sshfs_sync,cache=no,password_stdin
After this:
$ ls -ld ~/mnt/2letter/
...
2
votes
1answer
60 views
Is there a FUSE which permits transparently accessing incremental backups?
While creating incremental backups is relatively simple (and can be automated, e.g. via rdiff-backup), in order to access a specific state of a file one first has to manually restore the backup, which ...
1
vote
1answer
2k views
How can I create a unionfs-fuse mount that is readable by all?
I'd previously used aufs2 in aufs-tools with some luck, but apparently this package has been "superseded" (this is strange term to use for a package which seems to have been removed only because it no ...
1
vote
0answers
118 views
Can't mount remote file system with sshfs [duplicate]
Possible Duplicate:
How to apply changes of newly added user groups without needing to reboot?
I have posted this question in linux mint users forum about some hours ago.
I'm trying to ...