Document sshfs rename workaround (fixes #3315)

This commit is contained in:
Milkey Mouse 2017-11-17 19:09:58 -08:00
parent ab104d2ce7
commit 838ef1b53a
No known key found for this signature in database
GPG Key ID: C6EF5A02F5647987
1 changed files with 12 additions and 0 deletions

View File

@ -529,6 +529,18 @@ rather not implement progress / ETA display than doing futile attempts.
See also: https://xkcd.com/612/
Why am I getting 'Operation not permitted' errors when backing up on sshfs?
---------------------------------------------------------------------------
By default, ``sshfs`` is not entirely POSIX-compliant when renaming files due to
a technicality in the SFTP protocol. Fortunately, it also provides a workaround_
to make it behave correctly::
sshfs -o workaround=rename user@host:dir /mnt/dir
.. _workaround: https://unix.stackexchange.com/a/123236
Requirements for the borg single-file binary, esp. (g)libc?
-----------------------------------------------------------