R(다른 사람)에게만 액세스 권한을 부여하려면 어떻게 해야 합니까?
예를 들어, 사용자가 실행하면 ls
파일 목록은 볼 수 없지만 파일을 읽을 수는 있습니다.cat file26.txt
답변1
포함된 디렉터리에 대해 다른 사람에게만 실행(x) 권한을 부여하면 다음과 같습니다.
$ mkdir dir
$ chmod 0711 dir
$ echo yes > dir/file
$ su other_user -c 'ls dir'
Password:
ls: cannot open directory 'dir': Permission denied
$ su other_user -c 'cat dir/file'
Password:
yes