Skip to content

Instantly share code, notes, and snippets.

@sebastianwagner
Last active December 19, 2015 09:29
Show Gist options
  • Save sebastianwagner/5933273 to your computer and use it in GitHub Desktop.
Save sebastianwagner/5933273 to your computer and use it in GitHub Desktop.
Install Virtualbox Extension Pack
#!/bin/sh
# @see http://www.oracle.com/technetwork/server-storage/virtualbox/downloads/index.html#extpack for current version
EXTPACK='http://download.virtualbox.org/virtualbox/4.2.16/Oracle_VM_VirtualBox_Extension_Pack-4.2.16-86992.vbox-extpack'
cd $(mktemp -d) \
&& wget "$EXTPACK" \
&& sudo VBoxManage extpack install *.vbox-extpack --replace
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment