Merge pull request #757 from al-cheb/al-cheb/clean_cache_packages

Clean up apt package cache
This commit is contained in:
Maxim Lobanov
2020-04-22 12:59:46 +03:00
committed by GitHub
3 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/bash
# before cleanup
before=$(df / -Pm | awk 'NR==2{print $4}')
# clears out the local repository of retrieved package files
# It removes everything but the lock file from /var/cache/apt/archives/ and /var/cache/apt/archives/partial
apt-get clean
# after cleanup
after=$(df / -Pm | awk 'NR==2{print $4}')
# display size
echo "Before: $before MB"
echo "After : $after MB"
echo "Delta : $(($after-$before)) MB"