我需要使用安装共享sshfs
。
当我直接使用安装它时sshfs
,即
# sshfs [email protected]:/home/data/ -o allow_other /mnt/data/
或者
# sshfs [email protected]:/home/data/ -o allow_other,default_permissions /mnt/data/
共享已安装,但仅处于“只读”模式。但是,当我将以下行添加到/etc/fstab
, 和 do中时mount /mnt/data
,共享将以读写方式安装。
# [email protected]:/home/data/ /mnt/data fuse.sshfs noauto,_netdev,allow_other,default_permissions 0 0
这两个命令都是在 root 下发出的。为什么sshfs
从命令行以只读方式挂载文件系统?
如何使用命令将其挂载为可读写sshfs
?
答案1
您应该附加未记录的变体, 罗到-o 允许其他参数
# sshfs[电子邮件受保护]:/home/data/ -o allowed_other,ro /mnt/data/