Ivan Asked: 2010-11-05 22:18:18 +0800 CST2010-11-05 22:18:18 +0800 CST 2010-11-05 22:18:18 +0800 CST 如何挂载远程(通过 SSH)目录,使其像本地目录一样可用(包括在 shell 中,而不仅仅是在 Gnome 中)?[复制] 772 我在远程服务器上的一个目录中保存了我的文件(主要是文本/代码,没有像视频这样的重物),我只能通过 SSH 访问该目录。我可以将它安装在我的笔记本电脑上以从所有应用程序(包括命令行应用程序)无缝使用它吗? filesystem ssh mount remote-access file-sharing 1 个回答 Voted Best Answer Nick Pascucci 2010-11-05T22:29:47+08:002010-11-05T22:29:47+08:00 是的,你可以!它被称为 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.
是的,你可以!它被称为 sshfs。这是一个小教程。
基本思想是:
安装
sshfs
挂载远程目录
您现在
/path/to/remote
可以在/path/to/local/mount/point
.