Can someone tell me what the .Trash-1000 folder is and how can I remove/delete it?
It taking up 275 gigs of disk space.
Can someone tell me what the .Trash-1000 folder is and how can I remove/delete it?
It taking up 275 gigs of disk space.
This is the folder of you paperbin.
If you delete something it will not be deleted from disk. It will be moved to this folder instead.
Try to empty the paperbin or delete the folder with the terminal-command as root:
sudo rm -rf /path/to/folder/.Trash-1000
GNOMEish file managers need a place to put the trashed files.
/home/username/.local/share/TrashSo it tries to put them in the /.Trash-$UID folder. Without rw access to that folder, no trash.
Run this bash in the partition root as the user who needs a trash.
sudo mkdir .Trash-$UID && sudo chown $USER:$USER .Trash-$UID
You can delete this folder and secure the partition / to disable that feature.
sudo rm -rf .Trash-xxxx
sodo chown root:root /thepartition
Answers here provide ways to remove the .Trash-1000 folder itself, but an easier way to make it stop using up space is simply right-clicking on your Trash can and clicking "Empty trash", as the folder simply stores deleted files.
If you cannot empty your trash, then use this command:
sudo rm -r ~/.local/share/Trash/files/
It will remove trash files recursively.