ls -al
total 12
dr-xr-xr-x 3 rayell pg1083760 4096 2010-10-10 10:00 .
drwxr-xr-x 3 rayell pg1083760 4096 2011-09-02 04:33 ..
-rwxrwxrwx 1 rayell pg1083760 0 2011-09-02 06:38 default.settings.php
drwxrwxrwx 2 rayell pg1083760 4096 2011-09-02 04:33 files
-rwxrwxrwx 1 rayell pg1083760 0 2011-09-02 06:38 settings.php
rm -Rf *
rm: cannot remove `default.settings.php': Permission denied
rm: cannot remove directory `files': Permission denied
rm: cannot remove `settings.php': Permission denied
The reason is that the parent directory has
chmod 705or something like that. You canchmodthe parent directory by the following command:chmod -R 777 directory_nameAfter this, you can remove that directory and the files it contains.
本文介绍了一种常见的情况,即当尝试使用rm命令删除文件时遇到权限拒绝的问题,并提供了解决方案。通过调整目录的权限设置(如使用chmod -R 777 directory_name),可以成功删除之前无法移除的文件。
888

被折叠的 条评论
为什么被折叠?



