Je ne peux pas ouvrir un répertoire avec username
même après en avoir pris possession et lui avoir donné toutes les autorisations:
Sudo mkdir /path/to/the/directory/
Sudo chown -R username:username /path/to/the/directory/
Sudo chmod -R 777 /path/to/the/directory/
Je reçois:
$Sudo ls -al /path/to/the/directory/
total 0
drwxrwxrwx 1 username username 0 nov 16 15:13 .
drwx------ 1 root root 208 nov 16 15:13 ..
$ ls -al /path/to/the/directory/
ls: cannot access '/path/to/the/directory/': Permission denied
Que pourrait-il se passer?
Vous n'avez aucun droit sur le répertoire parent
drwx------ 1 root root 208 nov 16 15:13 ..
Vous devez disposer des droits x sur le répertoire parent pour pouvoir passer par ce répertoire.
drwx--x--x 1 root root 208 nov 16 15:13 ..
pour faire ça :
Sudo chmod go+x /path/to/the