我正在尝试访问文件夹,但不被允许。
文件夹 ( folderA
) 权限:
$ ls -l
drwxrwx--- 6 someuser groupA 4096 jul 24 21:26 folderA
( ) 组中的用户groupA
:
$ grep 'groupA' /etc/group
groupA:x:1003:pi
尝试访问folderA
:
$ cd folderA
-bash: cd: folderA: Access denied
如您所见,我无权访问该文件夹,并郑重声明:我是pi
该系统的用户。
现在,当我sudo chmod -R 777 folderA
这样做时,我被允许,但我不喜欢这个设置,因为我想被允许作为小组成员,并且我不想允许其他人。设置中可能存在什么问题?