SSHFS의 경우 디렉터리와 파일이 상위 디렉터리와 동일한 권한을 상속받을 수 있나요?

SSHFS의 경우 디렉터리와 파일이 상위 디렉터리와 동일한 권한을 상속받을 수 있나요?

한 단계 더 나아가우편 엽서, 권한이 other있어야만 ---다음을 사용할 수 있다는 것을 알았습니다(작동하는 것 같습니다).

setfacl -R -m d:o::0 test

그러나 SSHFS를 사용하면 권한이 유지되지 않습니다. UID와 GID가 모두 보존됩니다. SSHFS 상황을 처리할 솔루션이 필요합니다.

답변1

sshfs를 호출할 때 options: -o umask=0007:을 사용하여 다른 옵션의 "rwx" 비트가 모두 설정 해제되었는지 확인할 수 있습니다.

The defaults rights (not mask!) are: 

octal:       0755 for a directory
             0644 for files
   
binary:      000 111 101 101 for a directory
             000 110 100 100 for a file
          
ie:          --- rwx r-x r-x for a directory
             --- rw- r-- r-- for a file

   (note: the first octal digit is for: 'setuid', 'setgid', and 'sticky' bits)

The umask will MASK some of those bits. 
umask 0007: 000 000 000 111 

the original bits are ANDed one by one with the corresponding bit in the mask:
    |  bitA  |  bitB  |  bitA AND bitB  |
    |  0     |  0     |   0             |
    |  0     |  1     |   0             |
    |  1     |  0     |   0             |
    |  1     |  1     |   1             |

So with umask 0027, the defaults rights shown above will result in:
binary:      000 111 101 000 for a directory
             000 110 100 000 for a file
          
ie:          --- rwx r-x --- for a directory
             --- rw- r-- --- for a file

관련 정보