Skip to content

Instantly share code, notes, and snippets.

@jacricelli
Created December 5, 2016 03:13
Show Gist options
  • Save jacricelli/b1756b170e62f19d27acfe8d78fe3132 to your computer and use it in GitHub Desktop.
Save jacricelli/b1756b170e62f19d27acfe8d78fe3132 to your computer and use it in GitHub Desktop.
Using ZeroFree to shrink a VirtualBox Linux Image.
#!/usr/bin/env bash
set -e
sudo apt-get install -y zerofree
sudo mount -r /dev/sda1 /mnt
sudo zerofree -v /dev/sda1
sudo umount /dev/sda1
sudo poweroff
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment