1. 什么是SSHFS
2. 客户端环境
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/epel.repo https://mirrors.aliyun.com/repo/epel-7.repo
3. 安装SSHFS
yum install sshfs -y
4. 挂载服务器端文件系统
4.1 在服务器端创建测试文件
echo one > /data/one.txt
echo two > /data/two.txt
4.2 客户端挂载操作
sshfs [user@]host:[dir] mountpoint [options]
sshfs root@192.168.2.3:/data /mnt
fusermount -u /mnt
#在文档后面添加:
root@192.168.2.3:/data /mnt fuse.sshfs defaults 0 0
5. 总结
原创文章,作者:速盾高防cdn,如若转载,请注明出处:https://www.sudun.com/ask/31989.html