Sshfs

来自Shiyin's note
Shen讨论 | 贡献2022年3月9日 (三) 04:41的版本
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳到导航 跳到搜索

远程文件系统

  • yum install fuse-sshfs
  • mount -o follow_symlinks user@host:direct localdirect ;挂载
  • fusermount -u localdirect ;卸载
  • 卸载出错的时候 sudo umount -l localdir

自动挂载

修改/etc/fstab

sshfs#root@192.168.2.4:/ /media/MountedDir fuse.sshfs defaults,transform_symlinks,users,exec,auto,allow_other,_netdev,delay_connect,default_permissions	0	0
  • allow_other其他人可用
  • users 普通用户可挂载
  • 可以增加debug和sshfs_debug进行debug