如果某個群組的成員只有執行權限能否進入該群組的目錄?

如果某個群組的成員只有執行權限能否進入該群組的目錄?
# mkdir -p /test/music # created this dir as a root
# chmod g=x,o= /test   # rwx--x---
# gpasswd -a x1 root   # adding x1 user into the root group

# su - x1              # login as x1
$ cd /test
         permission denied 

x1屬於root群組,而群組有執行權限,x1應該可以進入該/test目錄,但是為什麼權限被拒絕呢?

相關內容