|
Actually to delete a file, you need write permission to the directory. rm gives you an error if you try to delete a file that can't write. But "rm -f" forces the issue.
But if you can't write to the directory, there is no way. The kernel enforces that.
|