sshfs
sshfs copied to clipboard
A network filesystem client to connect to SSH servers
In my local network, I am running the following command (user and remote name anonymised): ``` sshfs myself@remote:/home.net/myself ~/remote myself@remote's password: ``` When using CTRL+C while entering the password, the...
We should take a look at the following patch, it may be worth merging: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=720455
I'm wondering if the following could be done. If I understand correctly sshfs/fuse seems to assign its own inode numbers to files and hard links are not assigned the SAME...
As said in issue #72, it seems that sshfs fails to notice problems when reading from a file that was opened write-only. According to https://lists.mindrot.org/pipermail/openssh-unix-dev/2017-August/036171.html, the OpenSSH server seems to...
SFTP does provide link counts, so we should use these numbers for st_nlink.
SFTP transfers file attributes on readdir(), so we should really pass this information on to FUSE. Don't forget to also add this in the caching layer!
I know that sshfs is not currently actively developed, but writing this down here because so many people have had problems with this topic and it is not properly documented...
I often use sshfs on livecd (that I build), or to many other computers, and often need a bunch of parameters (caching, reconnects, keep alive, other_allow, max_conns, etc), every time....
I've added a `CMakeLists.txt` file (and `config.h.in`) to build `sshfs` on our server without `meson` and `ninja`. The `test` is not implemented.
I can't think of any workaround to allow idmap=user to work in these contexts, so I'm planning to add a new option: idmap=takeall . This will map all uids and...