You are not logged in.
I have a sshfs share and can read files, write files and change files, but I cannot delete files.
In a terminal, I get the error message:
rm: cannot remove `file': Operation not permitted
The user i am logging in as (to the server) has full access.
Offline
Default mount options for sshfs include noexec, so you'll need to specify exec in your mount command or fstab entry.
Offline
Default mount options for sshfs include noexec, so you'll need to specify exec in your mount command or fstab entry.
I am just manually mounting. How do I add the exec option to the mount command?
Offline
The default set up of fuse is
-rwsr-xr– root fusetherefore only root or members of the fuse group have write access.
Solution: add yourself to the fuse group
adduser user groupand you should have full access to files.
Hope this helps.
R
Offline
The default set up of fuse is
-rwsr-xr– root fusetherefore only root or members of the fuse group have write access.
Solution: add yourself to the fuse groupadduser user groupand you should have full access to files.
Hope this helps.
R
My user is already in the fuse group, and I am mounting the sshfs as my user, not root.
I DO have write access, and can overwrite files on the share, but I can't delete files. I can do everything else.
Offline