Files
cheatsheet-tldr/tldr/sshfs
2025-12-01 00:25:28 +00:00

30 lines
699 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# sshfs
> Filesystem client based on SSH.
> More information: <https://github.com/libfuse/sshfs/blob/master/sshfs.rst>.
- Mount remote directory:
`sshfs {{username}}@{{remote_host}}:{{remote_directory}} {{mountpoint}}`
- Unmount remote directory:
`umount {{mountpoint}}`
- Mount remote directory from server with specific port:
`sshfs {{username}}@{{remote_host}}:{{remote_directory}} -p {{2222}}`
- Use compression:
`sshfs {{username}}@{{remote_host}}:{{remote_directory}} -C`
- Follow symbolic links:
`sshfs -o follow_symlinks {{username}}@{{remote_host}}:{{remote_directory}} {{mountpoint}}`