如果某个组的成员只有执行权限能否进入该组的目录?

如果某个组的成员只有执行权限能否进入该组的目录?
# 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目录,但是为什么权限被拒绝呢?

相关内容