“Sshfs”的版本间差异

来自Shiyin's note
跳到导航 跳到搜索
无编辑摘要
无编辑摘要
 
(未显示同一用户的1个中间版本)
第4行: 第4行:
*mount -o follow_symlinks user@host:direct localdirect ;挂载
*mount -o follow_symlinks user@host:direct localdirect ;挂载
*fusermount -u 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

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