Identify and safely clean up old/leftover files on the filesystem:
Identifies and analyzes old files for cleanup, providing space estimates and safe removal commands for review.
/plugin marketplace add danielrosehill/linux-server-plugin/plugin install linux-desktop-mgmt@danielrosehillfilesystem/Identify and safely clean up old/leftover files on the filesystem:
find /var/log -type f -mtime +30 -size +100Mfind /tmp -type f -mtime +30find ~/backups -type f -mtime +90find / -name "core.*" 2>/dev/nullfind ~ -type f -size +500M -mtime +60du -sh /var/lib/docker/containers/*/*-json.logdu -sh /var/cache/apt/archivesfind ~/Downloads -type f -mtime +90 2>/dev/nullIMPORTANT: DO NOT delete anything automatically. Only identify candidates.
Provide Daniel with:
Require explicit approval before any deletions