如何将远程linux文件系统或目录挂载到本地linux机器上。假设有一个远程目录,我想访问它的所有内容,就好像它在我的本地硬盘中一样。
答案 0 :(得分:2)
要将远程目录安装到本地计算机,请确保您具有对该计算机的ssh访问权限。然后尝试:
sudo sshfs -o allow_other <remote user>@<remote ip>:<remote directory> <local directory>
这是针对ubuntu的。对于fedora用yum替换sudo等等。