Skip to content

Instantly share code, notes, and snippets.

@weaponsforge
Last active March 10, 2023 06:29
Show Gist options
  • Save weaponsforge/b81846a9f77bda3405b4ce824244814c to your computer and use it in GitHub Desktop.
Save weaponsforge/b81846a9f77bda3405b4ce824244814c to your computer and use it in GitHub Desktop.
Compact/compress the size of an Ubuntu VDI file on VirtualBox
# Compact/compress the size of an Ubuntu VDI file on VirtualBox (v7.0)
# Run this script in the Ubuntu VM running in VirtualBox
# Shut down the VM after then run "compact.bat" on the Windows host
df -h
echo "Nullifying free space..."
sudo dd if=/dev/zero of=/var/tmp/bigemptyfile bs=4096k status=progress ; sudo rm -f /var/tmp/bigemptyfile
@weaponsforge
Copy link
Author

weaponsforge commented Mar 10, 2023

compact.bat is available here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment