2016-09-22 08:03:38 +01:00
|
|
|
# sshfs
|
2014-09-11 12:28:06 +01:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Filesystem client based on ssh.
|
2014-09-11 12:28:06 +01:00
|
|
|
|
2016-01-16 14:12:05 +00:00
|
|
|
- Mount remote directory:
|
2014-09-11 12:28:06 +01:00
|
|
|
|
|
|
|
`sshfs {{username}}@{{remote_host}}:{{remote_directory}} {{mountpoint}}`
|
|
|
|
|
2016-01-16 14:12:05 +00:00
|
|
|
- Unmount remote directory:
|
2014-09-11 12:28:06 +01:00
|
|
|
|
2018-07-29 16:53:47 +01:00
|
|
|
`umount {{mountpoint}}`
|
2014-09-11 12:28:06 +01:00
|
|
|
|
2016-01-16 14:12:05 +00:00
|
|
|
- Mount remote directory from server with specific port:
|
2014-09-11 12:28:06 +01:00
|
|
|
|
|
|
|
`sshfs {{username}}@{{remote_host}}:{{remote_directory}} -p {{2222}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Use compression:
|
2014-09-11 12:28:06 +01:00
|
|
|
|
|
|
|
`sshfs {{username}}@{{remote_host}}:{{remote_directory}} -C`
|
2018-07-09 23:23:01 +01:00
|
|
|
|
|
|
|
- Follow symbolic links:
|
|
|
|
|
|
|
|
`sshfs -o follow_symlinks {{username}}@{{remote_host}}:{{remote_directory}} {{mountpoint}}`
|