sshfs 通过ssh 挂载远程目录

安装:
yum -y install sshfs
挂载远程 ssh 文件系统:

sshfs -p 1234 root@192.168.1.218:/home/ /mnt/
sshfs -p SSH端口 用户名@远程主机IP:远程主机路径 本地挂载点
sshfs -o transform_symlinks -o follow_symlinks user@hostname: /home/username/sshfs
-o transform_symlinks 表示转换绝对链接符号为相对链接符号 
-o follow_symlinks 沿用服务器上的链接符号
原文地址:https://www.cnblogs.com/storymedia/p/4586179.html