"zsh compinit: 안전하지 않은 디렉터리 및 파일"이지만 경로를 쓸 수 없습니다.

"zsh compinit: 안전하지 않은 디렉터리 및 파일"이지만 경로를 쓸 수 없습니다.

zsh compinit: insecure directories and files달리는 중에 봤어요 compinit. 응 나도 봤어이 게시물그리고이 U&L 게시물, 및 다양한 관련 게시물. 이러한 모든 예에서 해결 방법은 그룹 및 월드에서 쓰기 권한을 제거하는 것입니다. 그러나 나의 경우 해당 디렉토리는 그룹이나 세계가 쓸 수 없는 디렉토리이다.

$ compaudit
There are insecure directories and files:
/path/to/modules/init/zsh-functions
/path/to/modules/init
/path/to/modules/init/zsh-functions/_module
$ ll /path/to/modules
...
drwxr-sr-x 4 theuser thegroup 4.0K Feb  6  2020 init/
...
$ ll /path/to/modules/init
...
drwxr-sr-x 2 theuser thegroup 4.0K Feb  6  2020 zsh-functions/
...
$ ll /path/to/modules/init/zsh-functions
...
-rw-r--r-- 1 theuser thegroup 12K Feb  6  2020 _module
...

두 개의 디렉토리하다SGID 비트가 설정되었지만 이 경고를 유발하는 SGID 비트가 표시되지 않습니다. 또한 최종 경로는 SGID 비트가 설정되지 않은 파일입니다.

이 경로는 내가 소유한 것이 아니지만 해당 경로는 내가 속한 그룹에 속해 있습니다.

중요한 경우 이 디렉토리는환경 모듈.

안전하지 않은 검사를 비활성화하지 않고 이 문제를 해결하는 방법에 대한 조언을 얻을 수 있습니까?

관련 정보