The following error is given when trying to connect to a remote host using sshfs on Ubuntu (16.04 LTS):
fuse: unknown option `defer_permissions'
after using the command:
sshfs -o allow_other,defer_permissions username@remotehost.com:/ /mnt/connected/
which is provided in this Digital Ocean tutorial.
Removing the option "defer_permissions" allows the command to successfully execute, and the remote host folder is mounted to the local /mnt/connected/; however, the permissions appear incorrect.
If "defer_permissions" is an unknown option, what option should be used to get the correct permissions when mounting a folder with sshfs?