sshfs,就是可以把ssh连接到的主机资源,映射到本机的文件系统当中,然后用户可以像操作本地文件一样操作,而实际的文件改动将通过ssh传输到远程主机当中。以下就是详细步骤:
1、本地安装sshfs:
yum install fuse sshfs
2、挂载远程文件夹
sshfs zjc@10.156.12.7:/home/zjc /media/vdb1/remote_test -o allow_other
PS:
若提示以下错误:
fusermount: option allow_other only allowed if 'user_allow_other' is set in/etc/fuse.conf
在文件 /etc/fuse.conf 中添加一行
user_allow_other
即可