Questions tagged [fuse]
Filesystem in Userspace (FUSE)
105 questions
1
vote
1
answer
93
views
How can I properly unmount a FUSE filesystem in a Docker container?
I have a Docker container that mounts a Google Drive shared folder using FUSE (google-drive-ocamlfuse).
The compose file maps the drive onto the host system (the capabilities and /dev/fuse are ...
13
votes
1
answer
2k
views
Is there any scenario where using cat speeds things up?
In Useless use of cat? it is established that, generally speaking, using cat in a shell pipeline with a single argument at the beginning of a pipeline reduces its performance.
Does there exist a ...
0
votes
1
answer
399
views
Updating Fuse when current version has dependancies
I am trying to install the ifuse package from the libimobiledevice project and its failing because it requires fuse3. My system is not allowing me to install fuse3 because of dependencies on fuse2. ...
27
votes
3
answers
31k
views
Getting `sshfs` working on WSL or finding an alternative
My university's CS department has its own server used for development (from here on out, dev.univ.edu). I have SSH and SFTP access to this server, and I was hoping to do some heavy work on my Windows ...
8
votes
3
answers
4k
views
What is the difference from exfat-fuse and exfat-nofuse?
Until now I have never dwelled on the word fuse but then I saw that there is nofuse.
Based on searches I have done in the the internet they don't clearly explain the difference. What is the difference ...
1
vote
1
answer
5k
views
How to mount FUSE (e.g. unionfs) so that all users will have access to it?
I am trying to use unionfs to create multiple (100+) instances of a few development tools for our development server. Here is the script I am using:
PROJECT=$1
DEPLOYMENT=$2
TOOL=$3
DIR_TOOL="/...
30
votes
6
answers
76k
views
Automount sshfs using fstab without mount -a
Please consider following fstab line (line breaks for readability):
sshfs#[email protected]:/home/user/
/home/user/Server/
fuse
auto,user,_netdev,reconnect,uid=1000,gid=1000,IdentityFile=/home/...
0
votes
1
answer
92
views
Cannot open files with Emacs after mounting Google Drive on Ubuntu using ocamlfuse
I have installed a FUSE filesystem for Google Drive so that I can mount my Drive on Ubuntu. It's something I have done before on other machines with no problem.
Everything is installed and mounted ...
3
votes
0
answers
2k
views
I's it possible to mount a remote filesystem in non-rooted Android (like an SD card)? [closed]
I have a DIY NAS and would like to stream files/media from it to various Android powered devices (like a phone or Android TV) such that apps like VLC can browse/stream the remote contents like they ...
56
votes
8
answers
60k
views
Is it possible to use FUSE with Windows?
(FUSE). Preferably without admin rights. An example would be sshfs, maybe via MSYS?
5
votes
1
answer
610
views
FUSE for root filesystem in Linux?
Is it even possible to use a FUSE (non-networked) filesystem as root in Linux? I assume the program has to be present in the initrd, but I'm not sure about specifics. For instance does the FUSE ...
0
votes
1
answer
538
views
how do i use fuse to mount a file in a compressed file as a symlink
i have a directory full of .xz files, each containing a single file (not tar).
uncompressed, the directory is 23GiB. (*.xml)
compressed, the directory is 1GiB. (*.xml.xz)
how do i fool the filesystem ...
54
votes
3
answers
46k
views
Is it possible to mount a .tar file?
The only result of any import when I searched for this was from 2001.
In the intervening decade, have any tools/methods for mounting a tar file as a filesystem (perhaps utilizing fuse) been created?
...
2
votes
2
answers
9k
views
Fuse file system with “default permission” option
I am new to fuse. I have mounted fuse by the following command.
/home/bin/fusexmp /mnt/fuse -o default_permissions -o allow_other -o nonempty -o hard_remove -d
Now If I login as "test" user and tried ...
1
vote
1
answer
666
views
Why do sshfs and fuse create thousands of file descriptors (unbounded growth) for a Java process?
I'm trying to understand why I see thousands and thousands of new file descriptors such as the following in /proc/PID/fd directory of a java process:
$ sudo ls -lt /proc/585/fd | head
total 0
lr-x-----...