Skip to content

Instantly share code, notes, and snippets.

@ziadoz
Last active January 12, 2024 11:20
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ziadoz/6c339f8a22f22043b1ecf173832460eb to your computer and use it in GitHub Desktop.
Save ziadoz/6c339f8a22f22043b1ecf173832460eb to your computer and use it in GitHub Desktop.
Extract VMDK Disk Image on macOS
#!/usr/bin/env bash
# Unzip Vagrant .box file:
tar -xf <box> -C <destination>
# Install 7 Zip:
brew install p7zip
# Extract VMDK:
7z x -y -o<destination> <vmdk>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment