Skip to content

Instantly share code, notes, and snippets.

@zsim0n
Created August 18, 2015 08:54
Show Gist options
  • Save zsim0n/fcbd3c3766c30a93cb4f to your computer and use it in GitHub Desktop.
Save zsim0n/fcbd3c3766c30a93cb4f to your computer and use it in GitHub Desktop.
Free up space on Ubuntu
# https://wiki.ubuntu.com/ReducingDiskFootprint#Documentation
sudo bash
# Purge documentations
# http://askubuntu.com/questions/129566/remove-documentation-to-save-hard-drive-space
find /usr/share/doc -depth -type f ! -name copyright|xargs rm || true
find /usr/share/doc -empty|xargs rmdir || true
rm -rf /usr/share/man/* /usr/share/groff/* /usr/share/info/*
rm -rf /usr/share/lintian/* /usr/share/linda/* /var/cache/man/*
# Purge unused linux headers
# https://ubuntugenius.wordpress.com/2011/01/08/ubuntu-cleanup-how-to-remove-all-unused-linux-kernel-headers-images-and-modules/
dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d' | xargs sudo apt-get -y purge
# Purge ruby gem docs
sudo rm -r `gem env gemdir`/doc
# Clean up tmp
cd /tmp
# rm * -Rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment