aboutsummaryrefslogtreecommitdiffstats
path: root/doc/mount.fuse.8
AgeCommit message (Collapse)AuthorLines
2017-03-16Document that -o auto_unmount implies -o nodev,nosuidNikolaus Rath-0/+4
See also issue #148.
2016-11-28Rename more things from fuse to fuse3Przemysław Pawełczyk-8/+9
2016-11-22Document that FUSE_CAP_POSIX_ACL turns on -o default_permissionsNikolaus Rath-3/+6
2016-11-17Distinguish between mount options and libfuse optionsNikolaus Rath-14/+18
2016-11-17Fixed manpage formatting.Nikolaus Rath-2/+1
2016-10-27Add max_read to fuse_conn_infoNikolaus Rath-1/+7
Eventually, this setting should be negotiated in the filesystem's init() handler (like e.g. max_write). However, this requires corresponding changes in the FUSE kernel module. In preparation for this (and to allow a transition period) we already allow (and require) filesystems to set the value in the init() handler in addition to the mount option. The end-goal is tracked in issue #91.
2016-10-27Recommend when to use -o default_permissions automaticallyNikolaus Rath-0/+3
2016-10-27Describe all mount options in mount.fuse(8).Nikolaus Rath-34/+98
Also improved manpage in several ways.
2016-10-27Improve documentation of -o default_permissionsNikolaus Rath-1/+9
2016-10-27Improve man page titleNikolaus Rath-1/+1
2016-10-25Clarify which mount options are intended for file-system internal use.Nikolaus Rath-7/+9
2016-10-20fuse_new(): don't accept options that don't make sense for end-usersNikolaus Rath-28/+4
Several options (use_ino, etc) depend on the file system implementation. Allowing them to be set from the command line makes no sense.
2016-10-20Document -o remember= mount option.Nikolaus Rath-3/+6
2016-10-20mount.fuse(8): remove max_readahead, max_write, [a]sync_readNikolaus Rath-12/+0
These are not mount options for FUSE file systems, but capabilites that are worked out between libfuse and the fuse kernel module. For that reason, they are also not accepted by fuse_session_new().
2016-10-16Updated man-pages.Nikolaus Rath-31/+58
* Removed -o nonempty * Added -o noforget * Split into high-level / low-level * Added warning that most options should be chosen by file system internally. * Updated maintainer.
2016-10-15Fix documentation of -o max_write=Nikolaus Rath-1/+1
big_writes has been available for some time, and is the default in FUSE 3. So max_write now actually takes effect. (This really should have gone into commit 97f4a9cb4fc69)
2016-10-15Drop -o large_read mount optionNikolaus Rath-2/+0
This was only relevant for 2.4 kernels. Fixes #92.
2012-01-26clean up man pageMiklos Szeredi-1/+0
2012-01-26Add man pages for fusermount, mount.fuse and ulockmgr_serverMiklos Szeredi-0/+162
Lifted from the Debian package. The man pages were written by Daniel Baumann and Bastien Roucaries