Using a fresh install of FreeBSD 13.0. I'm trying to mount a remote directory on a linux server via sshfs with the following command:
The command fails with the following statement:
mount_fusefs: /dev/fuse on /usr/home/anotheruser/DestinationDir: Operation not permitted
user_allow_other is in fuse.conf
When using:
the remote directory will mount.
I know I must be missing something, but I don't know what.
Does anybody know what is needed to be able to use sshfs without doas?
sshfs user@x.x.x.x:/home/user/Dir/dir/ /usr/home/anotheruser/DestinationDir/ -p1234 -v -o idmap=user,uid=X,guid=Y,allow_other,follow_symlinks,reconnect
The command fails with the following statement:
mount_fusefs: /dev/fuse on /usr/home/anotheruser/DestinationDir: Operation not permitted
user_allow_other is in fuse.conf
When using:
doas sshfs user@x.x.x.x:/home/user/Dir/dir/ /usr/home/anotheruser/DestinationDir/ -p1234 -v -o idmap=user,uid=X,guid=Y,allow_other,follow_symlinks,reconnect
the remote directory will mount.
I know I must be missing something, but I don't know what.
Does anybody know what is needed to be able to use sshfs without doas?