I’ve been using sshfs to do remote editing on my web server. I create a directory with the server name as a mount point, owned by me in my home directory. I then mount with
$ sshfs -p <portnumber> <servername>: <mountpoint>
I also have the keys set up so it does so without a password prompt. It seems to work, but I only have read-only access — when I try to write a file it tells me that I don’t have permission. Also, I notice that when the file system is mounted, I get an owner and group of “1009” for the mount point. Is this normal? Does anyone have any idea what’s going on?
[Tuesday morning update]
D’oh! I just noticed that my line command wasn’t displaying properly before. It’s fixed now.