can't empty the trash on headless pi?

November 19, 2023, 14:39

purpledalek

i have no folder called Trash inside ~/.local/share. is the trash automatically deleted on Raspbian OS Lite, or is the trash folder located somewhere else?

null

There is no recycle bin or trash directory in headless. Everything is deleted directly.

null

If you want to "delete" something but don't want it to be completely gone, add a suffix to its name. For example
mv /home/username/textdocument.txt /home/username/textdocument.txt.old
Or create a directory called "old" and move what you want to delete there.

purpledalek

ah, okay, cheers