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. ...
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 ...
1
vote
1
answer
104
views
Mounting a directory of zipped files for direct unzipped access
I have a directory tree with LOTS of .gz files. I once saw a way to mount it (via FUSE I think) so that I could see all the files directly (i.e. unzipped) under another directory.
I've been searching ...
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="/...
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 ...
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 ...
0
votes
2
answers
1k
views
How can I hash/checksum any sequential download, without having to store the whole file locally?
How can I hash/checksum any sequential download, without having to store the whole file locally? It needs to work with any kind of sequential download, so "basic HTTP download" specific ...
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-----...
2
votes
0
answers
194
views
Rotate files in filesystem when full or send to /dev/null
I'm looking for a solution to this problem:
A remote job (CI job) is creating a lot of DEBUG files (logs) I would like to keep, but after some time the disk space is totally filled up before the end ...
0
votes
0
answers
215
views
How to determine in code if installed libfuse supports async io
on my application when I detect open file is fuse type I want to be able to determine if the underlying libfuse supports async io. If it is not supported then I would fall back to sync io. Is there ...
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 ...
9
votes
0
answers
2k
views
FUSE fs without root privileges (e.g. a LD_PRELOAD gateway or a proot plugin)
On a system where I don't have root access and FUSE isn't installed (or I don't have sufficient privileges to create new mounts), how can I start a fuse filesytem (like sshfs or some FUSE-based ...