Last active
December 19, 2015 09:29
-
-
Save sebastianwagner/5933273 to your computer and use it in GitHub Desktop.
Install Virtualbox Extension Pack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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