sshfs远程目录
此链接为sshfs的rpm包下载路径
Centos1、安装:
rz-------上传rpm脚本
yum install -u fuse-sshfs-2.5-1.el6.rf.x86_64.rpm
2、挂载:(把215中/home/eyou目录挂载到当前系统217的/home/eyou上)
sudo sshfs -o nonempty,allow_other,exec root@192.168.214.215:/home/eyou /home/eyou
nonempty 允许安装在非空文件/DIR上
allow_other 允许访问其他用户
3、重新加载挂载信息
mount -a
4、查看当前系统挂载:
5、添加到开机自动挂载:
vi /etc/fstab
root@192.168.214.215:/home/eyou /home/data fuse.sshfs rw,nosuid,nodev,allow_other 0 0
6、卸载命令
fusermount -u /home/data(本地目录)
来源:CSDN
作者:憨夫刘罗锅
链接:https://blog.csdn.net/qq_43032492/article/details/103715261