mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
699 B
Plaintext
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}}`
|