How to delete locked folders/files? When I try to delete them an error occurs: "Error removing file: Permission denied" I am root. See the image below to know what kind of folders/files.
thanks
55 Answers
Launch your file explorer as root using:
gksudo nautilusThis will open your file explorer, and grant it root, so it should be able to view/delete the directory/file.
If you are like me, and don't care about the warnings in this question you can use this instead:
sudo nautilus 7 Try the following: launch Terminal and enter
sudo rm -rf '/path/to/locked/folder'And be VERY careful with the path to folder!
Steps:
- Open Terminal.
Run command:
sudo su- Command above would ask for your password.
Once the correct password is given, you would give following command.
chmod a+rwx folder/fileand go to home and just delete the folder/file.
Exit for root user type
exit.
The lock symbol means your user currently have no write permission on the file/folder. To change this:
- Check the current owner/group/permissions status by right clicking the file/folder, clicking
Propertiesand then switching to thePermissionstab. - Open a
Terminalby hitting Ctrl+Alt+t.- If you are the
Ownerof the file (i.e. theOwnerfield shows your username): add write permission to the owner by running this command:chmod u+w <path_to_file_folder> - If you are not the
Ownerof the file, but you are in theGroupgroup (i.e. theGroupfield shows your username or a name of a group to which you belong, e.g.sudo): add write permission to the group by running this command:sudo chmod g+w <path_to_file_folder> - If you are not the
Ownerof the file and you are not in theGroupgroup: add write permission to the others by running this command:sudo chmod o+w <path_to_file_folder>
- If you are the
- Run
exit
And then just delete the file/folder from Nautilus.
Alternatively:
- Open a
Terminalby hitting Ctrl+Alt+t.- Remove the file/folder as
rootby running this command:sudo rm -rf <path_to_file_folder>
- Remove the file/folder as
Here is something , that I found was easier to do instead of opening terminal. Right-Click the file and open properties. Then switch to the permissions tab. Then wherever it says Access: change it from whatever it is to Create And Delete Files. This should remove the lock and then you can delete the file normally.