Lines Matching full:fuse
4 FUSE chapter
37 What is FUSE?
40 FUSE is a userspace filesystem framework. It consists of a kernel
41 module (fuse.ko), a userspace library (libfuse.*) and a mount utility
44 One of the most important features of FUSE is allowing secure,
50 `FUSE homepage: <https://github.com/libfuse/>`_
57 fuse
58 This is the usual way to mount a FUSE filesystem. The first
72 obtained by opening the FUSE device ('/dev/fuse').
84 By default FUSE doesn't check file access permissions, the
109 There's a control filesystem for FUSE, which can be mounted by::
111 mount -t fusectl none /sys/fs/fuse/connections
113 Mounting it under the '/sys/fs/fuse/connections' directory makes it
116 Under the fuse control filesystem each connection has a directory
137 If a process issuing a FUSE filesystem request is interrupted, the
201 - Abort filesystem through the FUSE control filesystem. Most
277 without using a FUSE mount, the same criteria as used in
319 example unlink) is performed in FUSE. ::
322 | "rm /mnt/fuse/file" | FUSE filesystem daemon
364 There are a couple of ways in which to deadlock a FUSE filesystem.
370 | "rm /mnt/fuse/file" | FUSE filesystem daemon
372 | >sys_unlink("/mnt/fuse/file") |
378 | | >sys_unlink("/mnt/fuse/file")
394 | [fd = open("/mnt/fuse/file")] | [request served normally]