挂载远程目录到本地
挂载远程目录到本地
SSHFS(Secure SHell FileSystem)是一个客户端,可以让我们通过 SSH 文件传输协议(SFTP)挂载远程的文件系统并且在本地机器上和远程的目录和文件进行交互。
安装 apt-get install sshfs
远程 192.168.1.5 /opt/share
本地192.168.1.4 /home/remote
demo 将远程(192.168.1.5)的/opt/share 挂载到本地(192.168.1.4)的/home/remote目录
sudo sshfs -o nonempty,allow_other,exec root@192.168.1.5:/opt/share /home/remote
nonempty 允许安装在非空文件/DIR上
allow_other 允许访问其他用户
查看当前系统挂载: cat /etc/mtab
卸载:umount -
f /home/remote