Possible Duplicate:
How to avoid using sudo when working in /var/www?
I am trying to use sshfs
to mount an remote directory so that I can change the files like local. My problem is that i only can read the files.
what I've done:
Added my local user
michael
to the fuse groupAdded my local user
root
to the fuse groupMounted the directory:
sshfs -o idmap=user michael.t@server:/var/www/ www
I can read the files but not write.
I cant logon with root directly, so I have always to logon with my user and then make sudo su
. Maybe thats the problem?