Quelqu'un a fait quelque chose comme chmod 444 *
, maintenant, il y a des répertoires que je ne peux pas enlever ...
ls -al
spectacles:
4.0K drwxrwxrwx 6 root root 4.0K Apr 7 10:06 .
4.0K drwxr-xr-x 4 root root 4.0K Apr 14 19:51 ..
4.0K dr--r--r-- 4 root root 4.0K Feb 11 08:42 beta
4.0K dr--r--r-- 2 root root 4.0K Apr 2 23:39 download
# rm beta/ -rf
rm: cannot remove directory `beta//xxx': Permission denied
rm: cannot remove `beta//yyy.xml': Permission denied
J'ai fait tout ce que je sais comme chmod +x
ou cd dans le répertoire pour supprimer les fichiers mais j'ai échoué.
Edit: je me suis connecté en tant que root. J'ai essayé chmod +x beta
.
# ls -al
total 24
drwxrwxrwx 6 root root 4096 Apr 14 22:20 .
drwxr-xr-x 4 root root 4096 Apr 14 19:51 ..
dr--r--r-- 4 root root 4096 Feb 11 08:42 beta
dr--r--r-- 2 root root 4096 Apr 2 23:39 download
# chmod +x beta
chmod: changing permissions of `beta': Operation not permitted
rm beta/ -rf
BSD.