aboutsummaryrefslogtreecommitdiff
path: root/doc/kernel.txt
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-27 13:42:08 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-27 13:42:08 -0700
commit11f07d10339500044718f6cea9f1fa1bc6428051 (patch)
treecf9c0d94ec2a0068b7af4cc794c1b3a0cc926725 /doc/kernel.txt
parentba653b1c24f1a16be1d5d1269c2a091fd5718b6d (diff)
Describe all mount options in mount.fuse(8).
Also improved manpage in several ways.
Diffstat (limited to 'doc/kernel.txt')
-rw-r--r--doc/kernel.txt45
1 files changed, 1 insertions, 44 deletions
diff --git a/doc/kernel.txt b/doc/kernel.txt
index fd3f174..7938aab 100644
--- a/doc/kernel.txt
+++ b/doc/kernel.txt
@@ -70,50 +70,7 @@ The filesystem type given to mount(2) can be one of the following:
Mount options
~~~~~~~~~~~~~
-'fd=N'
-
- The file descriptor to use for communication between the userspace
- filesystem and the kernel. The file descriptor must have been
- obtained by opening the FUSE device ('/dev/fuse').
-
-'rootmode=M'
-
- The file mode of the filesystem's root in octal representation.
-
-'user_id=N'
-
- The numeric user id of the mount owner.
-
-'group_id=N'
-
- The numeric group id of the mount owner.
-
-'default_permissions'
-
- By default FUSE doesn't check file access permissions, the
- filesystem is free to implement it's access policy or leave it to
- the underlying file access mechanism (e.g. in case of network
- filesystems). This option enables permission checking, restricting
- access based on file mode. It is usually useful together with the
- 'allow_other' mount option.
-
-'allow_other'
-
- This option overrides the security measure restricting file access
- to the user mounting the filesystem. This option is by default only
- allowed to root, but this restriction can be removed with a
- (userspace) configuration option.
-
-'max_read=N'
-
- With this option the maximum size of read operations can be set.
- The default is infinite. Note that the size of read requests is
- limited anyway to 32 pages (which is 128kbyte on i386).
-
-'blksize=N'
-
- Set the block size for the filesystem. The default is 512. This
- option is only valid for 'fuseblk' type mounts.
+See mount.fuse(8).
Control filesystem
~~~~~~~~~~~~~~~~~~