Tag Archives: delete

Securely delete files/folders in Ubuntu

In brief, you should NEVER trust your HDD before handing it over to someone else! The solution to this would be either wipe the whole HDD or at least wipe the files/folders that you need to keep out of reach. … Continue reading

Posted in Linux, Uncategorized | Tagged , , , , , , , | Leave a comment

Delete files older than X days

find /path/to/folder -mtime +14 -exec rm {} \; This finds all files within that folder that are older than 14 days, then executes rm on them

Posted in Uncategorized | Tagged , , , , | Leave a comment

Delete Fonts from Ubuntu

I installed many fonts and many web pages were looking very bad with these fonts, so I decided to remove them Navigate to the “.fonts” folder Delete the font That’s it 🙂 Note: This only applies to user fonts, i.e. … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment