Skip to content

Instantly share code, notes, and snippets.

View tutte2k's full-sized avatar
🏠
Working from home

Tom Johansson tutte2k

🏠
Working from home
View GitHub Profile
@tutte2k
tutte2k / clean.sh
Created May 7, 2025 10:50 — forked from Iman/clean.sh
Free up disk space on Ubuntu - clean log, cache, archive packages/apt archives, orphaned packages, old kernel and remove the trash
#!/bin/sh
#Check the Drive Space Used by Cached Files
du -sh /var/cache/apt/archives
#Clean all the log file
#for logs in `find /var/log -type f`; do > $logs; done
logs=`find /var/log -type f`
for i in $logs