@@ -40,17 +40,16 @@ By default, only the mounting user will be able to access the filesystem. Access
4040users can be enabled by passing ``-o allow_other ``. In this case you most likely also
4141want to use ``-o default_permissions ``.
4242
43- It is recommended to run SSHFS as regular user (not as root). For this to work the
44- mountpoint must be owned by the user. If username is omitted SSHFS will use the local
45- username. If the directory is omitted, SSHFS will mount the (remote) home directory. If
43+ It is recommended to run SSHFS as regular user (not as root). For this to work the
44+ mountpoint must be owned by the user. If username is omitted SSHFS will use the local
45+ username. If the directory is omitted, SSHFS will mount the (remote) home directory. If
4646you need to enter a password SSHFS will ask for it (actually it just runs ssh which ask
4747for the password if needed).
4848
4949
5050Options
5151=======
5252
53-
5453-o opt,[opt...]
5554 mount options, see below for details. A a variety of SSH options can
5655 be given here as well, see the manual pages for *sftp(1) * and
@@ -158,7 +157,7 @@ Options
158157
159158-o passive
160159 communicate over stdin and stdout bypassing network. Useful for
161- mounting local filesystem on the remote side. An example using
160+ mounting local filesystem on the remote side. An example using
162161 dpipe command would be ``dpipe /usr/lib/openssh/sftp-server = ssh
163162 RemoteHostname sshfs :/directory/to/be/shared ~/mnt/src -o passive ``
164163
@@ -186,7 +185,7 @@ Options
186185 read password from stdin (only for pam_mount!)
187186
188187-o dir_cache=BOOL
189- Enables (*yes *) or disables (*no *) the SSHFS directory cache. The
188+ Enables (*yes *) or disables (*no *) the SSHFS directory cache. The
190189 directory cache holds the names of directory entries. Enabling it
191190 allows `readdir(3) ` system calls to be processed without network
192191 access.
@@ -198,7 +197,7 @@ Options
198197 sets timeout for directory cache in seconds.
199198
200199-o dcache_{stat,link,dir}_timeout=N
201- sets separate timeout for {attributes, symlinks, names} in the
200+ sets separate timeout for {attributes, symlinks, names} in the
202201 directory cache.
203202
204203-o dcache_clean_interval=N
@@ -263,8 +262,8 @@ Permission denied when moving files across remote filesystems
263262~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
264263
265264Most SFTP servers return only a generic "failure" when failing to rename
266- across filesystem boundaries (EXDEV). SSHFS normally converts this generic
267- failure to a permission denied error (EPERM). If the option ``-o
265+ across filesystem boundaries (EXDEV). SSHFS normally converts this generic
266+ failure to a permission denied error (EPERM). If the option ``-o
268267workaround=renamexdev `` is given, generic failures will be considered EXDEV
269268errors which will make programs like `mv(1) ` attempt to actually move the
270269file after the failed rename.
0 commit comments