“Sshfs”的版本间差异
跳到导航
跳到搜索
(以“远程文件系统 *yum install fuse-sshfs *mount ser@host:direct localdirect ;挂载 *fusermount -u localdirect ;卸载”为内容创建页面) |
无编辑摘要 |
||
(未显示2个用户的2个中间版本) | |||
第2行: | 第2行: | ||
*yum install fuse-sshfs |
*yum install fuse-sshfs |
||
*mount |
*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