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
|
|
|
|
|
|
|
`fusermount -u {{mountpoint}}`
|
|
|
|
|
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`
|