我需要使用安裝共用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/