Analyze disk space consumption and identify space hogs:
Analyzes disk space consumption and identifies space hogs across filesystems, Docker, logs, and backups.
/plugin marketplace add danielrosehill/linux-desktop-plugin/plugin install lan-manager@danielrosehillAnalyze disk space consumption and identify space hogs:
df -hdu -h ~ --max-depth=2 | sort -hr | head -20docker system df -vfind / -type f -size +1G 2>/dev/null | xargs ls -lhdu -sh ~/backups/*du -sh ~/docker-network/deployments/*du -sh /var/log/*find /tmp -type f -mtime +7Provide Daniel with: