aboutsummaryrefslogtreecommitdiff
path: root/sshfs.rst
AgeCommit message (Collapse)Author
2020-11-02Rename option to 'passive' and add some example in manual. (#232)Junichi Uekawa
2020-09-04Update sshfs.rst (#220)Junichi Uekawa
This / is probably meant to be a .
2020-05-17Fix typo in docs (#213)bjoe2k4
2019-11-24Add support for using multiple connectionsTimo Savola
The -o max_conns=N option causes multiple SSH processes and response processing threads to be created. This means that e.g. reading a large file no longer blocks all access to the filesystem. The connection is chosen by checking the per-connection statistics: 1. Choose connection with least outstanding requests; if it's a tie, 2. choose connection with least directory handles; if it's a tie, 3. choose connection with least file handles; if it's a tie, 4. choose connection which has already been established. The implementation assumes that the max_conns values will be small; it uses linear search. Example benchmark: With single connection: $ sshfs -o max_conns=1,workaround=nobuflimit ebox: mnt $ cat mnt/tmp/bigfile > /dev/null & $ time find mnt > /dev/null real 1m50.432s user 0m0.133s sys 0m0.467s With multiple connections: $ ~/in-progress/sshfs/build/sshfs -o max_conns=5,workaround=nobuflimit ebox: mnt $ cat mnt/tmp/bigfile > /dev/null & $ time find mnt > /dev/null real 1m15.338s user 0m0.142s sys 0m0.491s This feature was implemented to large extend by Timo Savola <timo.savola@iki.fi>. Thanks to CEA.fr for sponsoring the remaining work to complete this feature and integrate it into SSHFS!
2019-11-03Add documentation of permission handling to manpage.Nikolaus Rath
Fixes: #182
2019-11-03Fix markup.Nikolaus Rath
2019-10-19Added direct_io option (#173)sunwire
2018-12-22Docs: add section on interrupted connectionssmheidrich
Also rename "SSHFS hangs" section to something more specific to differentiate it from this new section. Cf. issues #77 and #3.
2018-06-09Add workaround to always pass a 0 mode when creating a file (#128)Josh Triplett
Add workaround to always pass a 0 mode when creating a file This works around servers that produce an error for any non-zero mode.
2018-03-28New workaround renamexdev to enable moving files across remote filesystemsG.raud Meyer
sshfs.rst: update the documentation.
2017-09-20Dropped support for writeback cachingNikolaus Rath
As of kernel 4.14, the FUSE module's + writeback implementation is not compatible with network filesystems, and there are no imminent plans to change that. For more details, see https://marc.info/?l=fuse-devel&m=150592103107662&w=2 or As a consequence, the -o unreliable_append option has become obsolete as well. Fixes: #93 Fixes: #88 Fixes: #81
2017-09-20Add support for mounting from /etc/fstabNikolaus Rath
Fixes: #92.
2017-09-20Dropped FAQ fileNikolaus Rath
Most entries were obsolete. Useful content has been moved to the man page.
2017-09-20Updated manual page with missing options.Nikolaus Rath
Fixes: #82.
2017-09-19Improve documentation for symlink handling options.Nikolaus Rath
Fixes: #51.
2017-08-18Converted manpage to Restructured TextNikolaus Rath