Skip to content

Instantly share code, notes, and snippets.

@stevewithington
Created December 18, 2012 13:49
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevewithington/4328120 to your computer and use it in GitHub Desktop.
Save stevewithington/4328120 to your computer and use it in GitHub Desktop.
Installing VirtualBox Guest Additions From Terminal
VBOX_VERSION=4.2.4
cd /tmp
wget http://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso
mount -o loop,ro VBoxGuestAdditions_$VBOX_VERSION.iso /mnt
sh /mnt/VBoxLinuxAdditions.run
umount /mnt
#rm VBoxGuestAdditions_$VBOX_VERSION.iso
unset VBOX_VERSION
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment