Removing stubborn files from the trash
Sometimes we are forced to delete files as a superuser which places them in the trash but doesn't purge them from the system. Then when we try and empty trash as our lowly normal user we get a whole bunch of errors thrown up at us. In this situation it's handy to know that the trash folder is located at $HOME/.local/share/Trash
Now we can use this command :
rm -rf ~/.local/share/Trash/*
The rm command removes (delete) files or directories.
- Read more about Removing stubborn files from the trash
- Log in to post comments