# 安装 ``` [yz@yz ~]$ sudo yum install -y fuse-sshfs ``` help信息: ``` [yz@yz ~]$ sshfs --help usage: sshfs [user@]host:[dir] mountpoint [options] general options: …… ``` # 挂载 ``` [yz@yz ~]$ mkdir /home/yz/peda [yz@yz ~]$ sshfs yz@192.168.0.5:/opt/yz/peda /home/yz/peda ``` # 权限问题 默认挂载进来的目录权限可能无法满足需要,多数情况下,我们需要将挂载目录用户指定为当前用户,则可以这样: ``` [yz@yz ~]$ sudo sshfs -o uid=1000,gid=1000,allow_other yz@192.168.0.5:/opt/yz/peda /home/yz/peda ``` 注:uid和gid需要替换成实际的当前用户UID和GID。 # 卸载 ``` [yz@yz ~]$ fusermount -u /home/yz/peda ``` # 参考 - [使用 SSHFS 挂载远程的 Linux 文件系统及目录](https://www.linuxprobe.com/sshfs-linux-fires.html) - [Linux命令---sshfs 挂载以及取消挂载](https://blog.csdn.net/manjianchao/article/details/53112592)