을 사용하여 공유를 마운트해야 합니다 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
두 명령 모두 루트에서 실행됩니다. sshfs
명령줄에서 파일 시스템을 읽기 전용으로 마운트하는 이유는 무엇입니까 ?
명령 을 사용하여 읽기-쓰기로 마운트하려면 어떻게 해야 합니까 sshfs
?
답변1
문서화되지 않은 변형을 추가해야 합니다.,로에게-o 허용_기타매개변수
# sshfs[이메일 보호됨]:/홈/데이터/ -o 허용_기타,ro /mnt/데이터/