I've got my files (mostly text/code, nothing of heavy like videos etc.) in a directory on a remote server which I can only access by means of SSH. Can I mount it on my laptop to use it seamlessly from all the applications (incl command-line ones)?
Asked
Active
Viewed 1.1k times
1 Answers
14
Yes indeed, you can! It's called sshfs. Here's a little tutorial.
The basic idea is:
Install
sshfssudo apt install sshfsMount the remote directory
sshfs user@host:/path/to/remote /path/to/local/mount/point
You now have the remote directory /path/to/remote available at /path/to/local/mount/point.
terdon
- 104,119
Nick Pascucci
- 1,930