Mon utilisateur, bob, ne peut pas accéder aux fichiers qu'il possède (théoriquement). J'utilise Fedora Core 8. Il est probablement plus facile de montrer que de dire:
> ls -al .
total 32
drwxrwxr-x 7 bob bob 4096 May 18 14:33 .
drwxrwxr-x 4 bob bob 4096 May 12 15:44 ..
drwxr-xr-x 2 bob bob 4096 June 1 14:22 log
> cd ./log
-bash: cd: log/: Permission denied
> ls -al ./log
ls: cannot access log/..: Permission denied
ls: cannot access log/the.log: Permission denied
ls: cannot access log/.: Permission denied
total 0
d????????? ? ? ? ? ? .
d????????? ? ? ? ? ? ..
-????????? ? ? ? ? ? the.log
> sudo ls -al ./log
drw-rw-r-- 3 bob bob 4096 Jun 2 04:11 .
drwxrwxr-x 7 bob bob 4096 May 18 14:33 ..
-rw-rw-r-- 1 bob bob 0 Jun 1 04:12 the.log
Le ls -al
se distingue comme très étrange. Il listera les fichiers que je n'ai pas les autorisations pour voir, mais ne me montrera pas les autorisations?
Donc, les questions sont, qu'est-ce qui provoquerait cela? Et que puis-je faire pour le réparer?