In Linux, let us assume we have a directory with the following properties:
drwx---r-x 29 user1 group1 4096 Jun 22 14:11 dir1
can I, as user2
having group group1
, navigate into dir1
?
Since other
has r
and x
permissions, I was thinking I could, but I could not navigate into the directory and got the following error:
-bash: cd: dir1/: Permission denied
What am I missing?
user2
? – Batuhan Tasdoven Jun 22 '15 at 07:10