Unable to delete folder located in "Trash" in Ubuntu 18.04.4 LTS
I am trying to delete a folder that I imported from a MacOS device using SMB, but I have not yet found a way to delete it. I tried using the Nautilus utility to gain permissions to delete the folder, but it did not work. I also obtain the same results when trying to restore the folder. The error occurs even when elevating the account, The folder is quite small in size, 1 GB approximately.
Any ideas?
Error message:
You always have the permission to do anything on Linux (Ubuntu in this case). Whenever you are prompted with
You don't have sufficient permission
always use sudo. Except when you are not a sudo user, in which case you can't do anything.
Use the terminal to gain sudo access.
- Open trash by typing
cd .local/share/Trash
in terminal. - Type
sudo rm -rf *
sudo gives you the permission, rm is the command to remove and -rf is the force remove flag, and * means everything. i.e., it will empty you trash. - If you want to delete a particular file then instead of step 2 type
sudo rm -rf FileName
which in your case FileName is 'Videos Edit'.