SSH: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Copying Files Using SSH == === SSHFS === sshfs -o allow_other,default_permissions,IdentityFile=~/.ssh/id_rsa user@host:/remotedir /localdir [https://www.digitalocean.co...") |
m (Added installation note) |
||
Line 6: | Line 6: | ||
[https://www.digitalocean.com/community/tutorials/how-to-use-sshfs-to-mount-remote-file-systems-over-ssh Credits] | [https://www.digitalocean.com/community/tutorials/how-to-use-sshfs-to-mount-remote-file-systems-over-ssh Credits] | ||
In Debian and its derivatives, sshfs can be installed using | |||
apt install sshfs | |||
[[Category:Linux]] | [[Category:Linux]] |
Latest revision as of 08:53, 8 January 2021
Copying Files Using SSH
SSHFS
sshfs -o allow_other,default_permissions,IdentityFile=~/.ssh/id_rsa user@host:/remotedir /localdir
In Debian and its derivatives, sshfs can be installed using
apt install sshfs