我的文件(大部分是文本/代码,没有视频等大型文件)位于远程服务器的一个目录中,我只能通过 SSH 访问该目录。我可以将其安装到我的笔记本电脑上,以便从所有应用程序(包括命令行应用程序)无缝使用它吗?
答案1
是的,你可以!它被称为 sshfs。以下是一个小教程。
基本思想是:
安装
sshfs
sudo apt install sshfs
挂载远程目录
sshfs user@host:/path/to/remote /path/to/local/mount/point
/path/to/remote
您现在已可以在 处使用远程目录/path/to/local/mount/point
。