“Sshfs”的版本间差异

来自Shiyin's note
跳到导航 跳到搜索
无编辑摘要
无编辑摘要
第4行: 第4行:
*mount -o follow_symlinks user@host:direct localdirect ;挂载
*mount -o follow_symlinks user@host:direct localdirect ;挂载
*fusermount -u localdirect ;卸载
*fusermount -u localdirect ;卸载

==自动挂载==
修改/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

2018年7月1日 (日) 12:16的版本

远程文件系统

  • yum install fuse-sshfs
  • mount -o follow_symlinks user@host:direct localdirect ;挂载
  • fusermount -u localdirect ;卸载

自动挂载

修改/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