通过SSH将“挂载”网络共享作为卷?


8

我只能通过SSH连接一台远程服务器,并且在该服务器中已为我分配了存储空间。

是否有可以让我通过SSH“挂载”网络共享以便我可以像使用本地文件夹一样使用的软件?

我非常喜欢跨平台的和Free(与Freedom一样)的解决方案,但是您可以想到的任何事情我都想知道。

谢谢!

Answers:


8

使用HomeBrew安装fuse4x和sshfs

要安装的命令是:

brew install sshfs

当您运行它时,它提供了我需要运行的另外两个命令,以安装fuse4x内核扩展。运行它们。

然后,挂载ssh文件系统

mkdir ~/mymountdir
sshfs username@hostname:/home/thedir ~/mymountdir

它将要求您输入密码。


感谢您的回答!由于我已经安装了MacPorts,因此我发现它也具有sshfs。
hpy 2012年

实际上,您根本不需要MacPorts或HomeBrew。
l'l'l

1

我没有尝试过,但是对于它的价值,manUnix mount命令页面列出了可以连接到远程系统的页面:

The mount command calls the mount(2) system call to prepare and graft a
special device or the remote node (rhost:path) on to the file system tree
at the point node.  If either special or node are not provided, the
appropriate information is obtained via the getfsent(3) library routines.
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.