Answer the question
In order to leave comments, you need to log in
How to speed up sshfs?
I mount the FS of remote hosts via
ssh-fs () { sshfs $1:/ /ssh/$1 -C -o allow_other,reconnect,compression=yes,transform_symlinks,ServerAliveInterval=45 }
Answer the question
In order to leave comments, you need to log in
Because:
1) it will still be much slower than other options.
2) ssh encrypts the traffic, how the output depends a lot on the algorithm you choose. There used to be an arcfour algorithm, but it seems to have already been cut out everywhere, as an option to use "chacha"
3) you yourself indicated the use of compression in the options, which again will significantly affect performance.
4)*** You can still play around with the keys that include the cache.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question